Skip to content

Commit ecfaffc

Browse files
committed
Merge branch 'master' of https://github.com/IgniteUI/igniteui-angular into fflate-dynamic-import
2 parents 01c1ebe + dd3a11c commit ecfaffc

File tree

320 files changed

+6646
-5368
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

320 files changed

+6646
-5368
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,11 @@ All notable changes for each version of this project will be documented in this
6363
6464
### Breaking Changes
6565

66+
#### Dependency Injection Refactor
67+
- All internal DI now uses the `inject()` API across `igniteui-angular` (no more constructor DI in library code).
68+
- If you extend our components/services or call their constructors directly, remove DI params and switch to `inject()` (e.g., `protected foo = inject(FooService);`).
69+
- App usage via templates remains the same; no action needed unless you subclass/override our types.
70+
6671
#### Multiple Entry Points Support
6772

6873
The library now supports multiple entry points for better tree-shaking and code splitting. While the main entry point (`igniteui-angular`) remains fully backwards compatible by re-exporting all granular entry points, we recommend migrating to the new entry points for optimal bundle sizes.

angular.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,8 @@
311311
{
312312
"type": "bundle",
313313
"name": "styles",
314-
"maximumWarning": "500kb",
315-
"maximumError": "550kb"
314+
"maximumWarning": "600kb",
315+
"maximumError": "600kb"
316316
},
317317
{
318318
"type": "anyComponentStyle",

0 commit comments

Comments
 (0)