igniteui-angular 19.0.0-beta.0 → 19.0.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/fesm2022/igniteui-angular.mjs +1710 -1623
  2. package/fesm2022/igniteui-angular.mjs.map +1 -1
  3. package/lib/avatar/avatar.component.d.ts +3 -1
  4. package/lib/checkbox/checkbox.component.d.ts +42 -2
  5. package/lib/core/styles/components/action-strip/_action-strip-component.scss +1 -1
  6. package/lib/core/styles/components/checkbox/_checkbox-component.scss +76 -14
  7. package/lib/core/styles/components/checkbox/_checkbox-theme.scss +97 -109
  8. package/lib/core/styles/components/grid/_grid-component.scss +1 -0
  9. package/lib/core/styles/components/paginator/_paginator-component.scss +1 -1
  10. package/lib/core/styles/components/query-builder/_query-builder-component.scss +9 -1
  11. package/lib/core/utils.d.ts +5 -0
  12. package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
  13. package/lib/grids/filtering/grid-filtering.service.d.ts +1 -0
  14. package/lib/grids/grid-base.directive.d.ts +1 -0
  15. package/package.json +3 -4
  16. package/schematics/tsconfig.tsbuildinfo +1 -1
  17. package/schematics/utils/dependency-handler.js +0 -1
  18. package/styles/igniteui-angular-dark.css +1 -1
  19. package/styles/igniteui-angular.css +1 -1
  20. package/styles/igniteui-bootstrap-dark.css +1 -1
  21. package/styles/igniteui-bootstrap-light.css +1 -1
  22. package/styles/igniteui-dark-green.css +1 -1
  23. package/styles/igniteui-fluent-dark-excel.css +1 -1
  24. package/styles/igniteui-fluent-dark-word.css +1 -1
  25. package/styles/igniteui-fluent-dark.css +1 -1
  26. package/styles/igniteui-fluent-light-excel.css +1 -1
  27. package/styles/igniteui-fluent-light-word.css +1 -1
  28. package/styles/igniteui-fluent-light.css +1 -1
  29. package/styles/igniteui-indigo-dark.css +1 -1
  30. package/styles/igniteui-indigo-light.css +1 -1
  31. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  32. package/styles/maps/igniteui-angular.css.map +1 -1
  33. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  34. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  35. package/styles/maps/igniteui-dark-green.css.map +1 -1
  36. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  37. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  38. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  39. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  40. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  41. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  42. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  43. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -148,7 +148,8 @@ export declare class IgxAvatarComponent implements OnInit {
148
148
  * ```
149
149
  * @igxFriendlyName Image URL
150
150
  */
151
- src: string;
151
+ set src(value: string);
152
+ get src(): string;
152
153
  /** @hidden @internal */
153
154
  protected defaultTemplate: TemplateRef<any>;
154
155
  /** @hidden @internal */
@@ -162,6 +163,7 @@ export declare class IgxAvatarComponent implements OnInit {
162
163
  * @internal
163
164
  */
164
165
  private _size;
166
+ private _src;
165
167
  /**
166
168
  * Returns the size of the avatar.
167
169
  *
@@ -223,6 +223,42 @@ export declare class IgxCheckboxComponent implements EditorProvider, AfterViewIn
223
223
  * ```
224
224
  */
225
225
  cssClass: string;
226
+ /**
227
+ * Returns if the component is of type `material`.
228
+ *
229
+ * @example
230
+ * ```typescript
231
+ * let checkbox = this.checkbox.material;
232
+ * ```
233
+ */
234
+ protected get material(): boolean;
235
+ /**
236
+ * Returns if the component is of type `indigo`.
237
+ *
238
+ * @example
239
+ * ```typescript
240
+ * let checkbox = this.checkbox.indigo;
241
+ * ```
242
+ */
243
+ protected get indigo(): boolean;
244
+ /**
245
+ * Returns if the component is of type `bootstrap`.
246
+ *
247
+ * @example
248
+ * ```typescript
249
+ * let checkbox = this.checkbox.bootstrap;
250
+ * ```
251
+ */
252
+ protected get bootstrap(): boolean;
253
+ /**
254
+ * Returns if the component is of type `fluent`.
255
+ *
256
+ * @example
257
+ * ```typescript
258
+ * let checkbox = this.checkbox.fluent;
259
+ * ```
260
+ */
261
+ protected get fluent(): boolean;
226
262
  /**
227
263
  * Sets/gets whether the checkbox component is on focus.
228
264
  * Default value is `false`.
@@ -337,12 +373,16 @@ export declare class IgxCheckboxComponent implements EditorProvider, AfterViewIn
337
373
  * @hidden
338
374
  * @internal
339
375
  */
340
- private _required;
376
+ protected theme: IgxTheme;
341
377
  /**
342
378
  * @hidden
343
379
  * @internal
344
380
  */
345
- protected theme: IgxTheme;
381
+ private _required;
382
+ private elRef;
383
+ private _theme$;
384
+ private _subscription;
385
+ private destroyRef;
346
386
  constructor(cdr: ChangeDetectorRef, renderer: Renderer2, themeService: ThemeService, ngControl: NgControl);
347
387
  /**
348
388
  * @hidden
@@ -10,7 +10,7 @@
10
10
  @include register-component(
11
11
  $name: string.slice($this, 2, -1),
12
12
  $deps: (
13
- igx-button,
13
+ igx-icon-button,
14
14
  igx-drop-down,
15
15
  igx-icon,
16
16
  )
@@ -18,17 +18,9 @@
18
18
  @extend %cbx-ripple--hover !optional;
19
19
  }
20
20
 
21
- @include e(composite) {
22
- @extend %cbx-composite--hover !optional;
23
- }
24
-
25
21
  @include e(composite-mark) {
26
22
  @extend %cbx-composite-mark--fluent !optional;
27
23
  }
28
-
29
- @include e(label) {
30
- @extend %cbx-label--hover !optional;
31
- }
32
24
  }
33
25
 
34
26
  &:active {
@@ -68,6 +60,32 @@
68
60
  @extend %cbx-ripple !optional;
69
61
  }
70
62
 
63
+ @include m(bootstrap) {
64
+ @include e(composite) {
65
+ &:hover {
66
+ @extend %cbx-composite--hover !optional;
67
+ }
68
+ }
69
+ }
70
+
71
+ @include m(indigo) {
72
+ @include e(composite) {
73
+ &:hover {
74
+ @extend %cbx-composite--hover !optional;
75
+ }
76
+ }
77
+
78
+ @include e(composite-mark) {
79
+ @extend %cbx-composite-mark-indigo !optional;
80
+ }
81
+
82
+ @include e(label) {
83
+ &:hover {
84
+ @extend %cbx-label--hover !optional;
85
+ }
86
+ }
87
+ }
88
+
71
89
  @include m(invalid) {
72
90
  @include e(composite) {
73
91
  @extend %cbx-composite--invalid !optional;
@@ -127,26 +145,54 @@
127
145
  }
128
146
 
129
147
  &:hover {
130
- @extend %igx-checkbox--focused-hovered !optional;
131
-
132
148
  @include e(ripple) {
133
149
  @extend %cbx-ripple--focused !optional;
134
150
  }
135
151
  }
136
152
  }
137
153
 
154
+ @include mx(indigo, focused) {
155
+ @extend %igx-checkbox--focused-indigo !optional;
156
+ }
157
+
158
+ @include mx(fluent, focused) {
159
+ @extend %igx-checkbox--focused-fluent !optional;
160
+ }
161
+
162
+ @include mx(bootstrap, focused) {
163
+ @extend %igx-checkbox--focused-bootstrap !optional;
164
+
165
+ &:hover {
166
+ @extend %igx-checkbox--focused-hovered !optional;
167
+ }
168
+ }
169
+
170
+ @include mx(indigo, focused, checked) {
171
+ @extend %igx-checkbox--focused-checked-indigo !optional;
172
+ }
173
+
174
+ @include mx(bootstrap, focused, checked) {
175
+ @extend %igx-checkbox--focused-checked-bootstrap !optional;
176
+ }
177
+
138
178
  @include mx(focused, checked) {
139
179
  @extend %igx-checkbox--focused-checked !optional;
140
180
  }
141
181
 
142
182
  @include mx(focused, invalid) {
143
- @extend %igx-checkbox--focused-invalid !optional;
144
-
145
183
  @include e(ripple) {
146
184
  @extend %cbx-ripple--focused-invalid !optional;
147
185
  }
148
186
  }
149
187
 
188
+ @include mx(indigo, focused, invalid) {
189
+ @extend %igx-checkbox--focused-invalid-indigo !optional;
190
+ }
191
+
192
+ @include mx(bootstrap, focused, invalid) {
193
+ @extend %igx-checkbox--focused-invalid-bootstrap !optional;
194
+ }
195
+
150
196
  @include m(indeterminate) {
151
197
  @extend %igx-checkbox--indeterminate !optional;
152
198
 
@@ -178,6 +224,18 @@
178
224
  }
179
225
  }
180
226
 
227
+ @include mx(indigo, indeterminate) {
228
+ @extend %igx-checkbox--indeterminate-indigo !optional;
229
+ }
230
+
231
+ @include mx(fluent, indeterminate) {
232
+ @extend %igx-checkbox--indeterminate-fluent !optional;
233
+ }
234
+
235
+ @include mx(material, indeterminate) {
236
+ @extend %igx-checkbox--indeterminate-material !optional;
237
+ }
238
+
181
239
  @include mx(invalid, indeterminate) {
182
240
  @extend %igx-checkbox--indeterminate--invalid !optional;
183
241
 
@@ -188,8 +246,12 @@
188
246
  }
189
247
  }
190
248
 
191
- @include mx(focused, indeterminate) {
192
- @extend %igx-checkbox--focused-checked !optional;
249
+ @include mx(indigo, focused, indeterminate) {
250
+ @extend %igx-checkbox--focused-checked-indigo !optional;
251
+ }
252
+
253
+ @include mx(bootstrap, focused, indeterminate) {
254
+ @extend %igx-checkbox--focused-checked-bootstrap !optional;
193
255
  }
194
256
 
195
257
  @include m(checked) {
@@ -152,9 +152,9 @@
152
152
  ), $variant);
153
153
 
154
154
  $mark-offset: map.get((
155
- 'material': .5px,
155
+ 'material': 0,
156
156
  'fluent': -1px,
157
- 'bootstrap': .5px,
157
+ 'bootstrap': 1px,
158
158
  'indigo': 1px,
159
159
  ), $variant);
160
160
 
@@ -223,9 +223,7 @@
223
223
  }
224
224
 
225
225
  %cbx-composite--hover {
226
- @if $variant == 'indigo' or $variant == 'bootstrap' {
227
- border-color: var-get($theme, 'empty-color-hover');
228
- }
226
+ border-color: var-get($theme, 'empty-color-hover');
229
227
  }
230
228
 
231
229
  %cbx-composite--x {
@@ -303,30 +301,30 @@
303
301
  fill: none;
304
302
  opacity: 0;
305
303
  z-index: 1;
304
+ }
306
305
 
307
- @if $variant == 'material' {
308
- inset-inline-start: -.5px;
309
- }
306
+ %cbx-composite-mark-material {
307
+ inset-inline-start: -.5px;
308
+ }
310
309
 
311
- @if $variant == 'indigo' {
312
- stroke: unset;
313
- stroke-linecap: unset;
314
- stroke-width: unset;
315
- stroke-dasharray: unset;
316
- stroke-dashoffset: unset;
317
- fill: var-get($theme, 'tick-color');
318
- transition: none !important;
310
+ %cbx-composite-mark-indigo {
311
+ stroke: unset;
312
+ stroke-linecap: unset;
313
+ stroke-width: unset;
314
+ stroke-dasharray: unset;
315
+ stroke-dashoffset: unset;
316
+ fill: var-get($theme, 'tick-color');
317
+ transition: none !important;
319
318
 
320
- rect {
321
- fill: none;
322
- }
319
+ rect {
320
+ fill: none;
323
321
  }
324
322
  }
325
323
 
326
324
  %igx-checkbox--indeterminate {
327
325
  %cbx-composite-mark {
328
326
  top: $mark-offset;
329
- inset-inline-start: $mark-offset;
327
+ margin-inline-start: $mark-offset;
330
328
  }
331
329
 
332
330
  &:hover {
@@ -344,55 +342,55 @@
344
342
  }
345
343
  }
346
344
  }
345
+ }
347
346
 
348
- @if $variant == 'material' {
349
- %cbx-composite--x--disabled {
350
- border-color: var-get($theme, 'disabled-indeterminate-color');
351
- background: var-get($theme, 'disabled-indeterminate-color');
347
+ %igx-checkbox--indeterminate-indigo {
348
+ %cbx-composite-mark {
349
+ fill: none;
350
+ stroke-dashoffset: unset !important;
351
+ transform: none !important;
352
+
353
+ rect {
354
+ fill: var-get($theme, 'tick-color');
355
+ opacity: 1;
352
356
  }
353
357
  }
358
+ }
354
359
 
355
- @if $variant == 'fluent' {
356
- %cbx-composite-mark {
357
- stroke: transparent;
358
- }
360
+ %igx-checkbox--indeterminate-fluent {
361
+ %cbx-composite-mark {
362
+ stroke: transparent;
363
+ }
359
364
 
360
- %cbx-composite {
361
- background: transparent;
365
+ %cbx-composite {
366
+ background: transparent;
362
367
 
363
- &::before {
364
- content: '';
365
- position: absolute;
366
- top: calc($size / 2 - rem(6px));
367
- inset-inline-start: calc($size / 2 - rem(6px));
368
- width: rem(10px);
369
- height: rem(10px);
370
- border-radius: border-radius(rem(2px));
371
- background: var-get($theme, 'fill-color');
372
- z-index: 1;
373
- }
368
+ &::before {
369
+ content: '';
370
+ position: absolute;
371
+ top: calc($size / 2 - rem(6px));
372
+ inset-inline-start: calc($size / 2 - rem(6px));
373
+ width: rem(10px);
374
+ height: rem(10px);
375
+ border-radius: border-radius(rem(2px));
376
+ background: var-get($theme, 'fill-color');
377
+ z-index: 1;
374
378
  }
379
+ }
375
380
 
376
- %cbx-composite--x--disabled {
377
- background: transparent;
381
+ %cbx-composite--x--disabled {
382
+ background: transparent;
378
383
 
379
- &::before {
380
- background: var-get($theme, 'disabled-color');
381
- }
384
+ &::before {
385
+ background: var-get($theme, 'disabled-color');
382
386
  }
383
387
  }
388
+ }
384
389
 
385
- @if $variant == 'indigo' {
386
- %cbx-composite-mark {
387
- fill: none;
388
- stroke-dashoffset: unset !important;
389
- transform: none !important;
390
-
391
- rect {
392
- fill: var-get($theme, 'tick-color');
393
- opacity: 1;
394
- }
395
- }
390
+ %igx-checkbox--indeterminate-material {
391
+ %cbx-composite--x--disabled {
392
+ border-color: var-get($theme, 'disabled-indeterminate-color');
393
+ background: var-get($theme, 'disabled-indeterminate-color');
396
394
  }
397
395
  }
398
396
 
@@ -489,9 +487,7 @@
489
487
  }
490
488
 
491
489
  %cbx-label--hover {
492
- @if $variant == 'indigo' {
493
- color: var-get($theme, 'label-color-hover');
494
- }
490
+ color: var-get($theme, 'label-color-hover');
495
491
  }
496
492
 
497
493
  %cbx-label-pos--before,
@@ -550,75 +546,67 @@
550
546
  background: var-get($theme, 'error-color');
551
547
  }
552
548
 
553
- %igx-checkbox--focused {
554
- @if $variant == 'fluent' {
555
- position: relative;
556
- $focus-outline-offset: rem(2px);
557
-
558
- &::after {
559
- content: '';
560
- position: absolute;
561
- inset: -$focus-outline-offset;
562
- box-shadow: 0 0 0 rem(1px) var-get($theme, 'focus-outline-color');
563
- }
549
+ %igx-checkbox--focused-indigo {
550
+ %cbx-composite {
551
+ border-radius: var-get($theme, 'border-radius');
552
+ box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color');
564
553
  }
554
+ }
565
555
 
566
- @if $variant == 'bootstrap' {
567
- %cbx-composite {
568
- border-radius: var-get($theme, 'border-radius');
569
- border-color: color($color: 'primary', $variant: 200);
570
- box-shadow: 0 0 0 rem(4px) var-get($theme, 'focus-outline-color');
571
- }
556
+ %igx-checkbox--focused-fluent {
557
+ position: relative;
558
+ $focus-outline-offset: rem(2px);
559
+
560
+ &::after {
561
+ content: '';
562
+ position: absolute;
563
+ inset: -$focus-outline-offset;
564
+ box-shadow: 0 0 0 rem(1px) var-get($theme, 'focus-outline-color');
572
565
  }
566
+ }
573
567
 
574
- @if $variant == 'indigo' {
575
- %cbx-composite {
576
- border-radius: var-get($theme, 'border-radius');
577
- box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color');
578
- }
568
+ %igx-checkbox--focused-bootstrap {
569
+ %cbx-composite {
570
+ border-radius: var-get($theme, 'border-radius');
571
+ border-color: color($color: 'primary', $variant: 200);
572
+ box-shadow: 0 0 0 rem(4px) var-get($theme, 'focus-outline-color');
579
573
  }
580
574
  }
581
575
 
582
576
  %igx-checkbox--focused-hovered {
583
- @if $variant == 'bootstrap' {
584
- %cbx-composite {
585
- border-color: color($color: 'primary', $variant: 300);
586
- }
577
+ %cbx-composite {
578
+ border-color: color($color: 'primary', $variant: 300);
587
579
  }
588
580
  }
589
581
 
590
- %igx-checkbox--focused-checked {
591
- @if $variant == 'indigo' {
592
- %cbx-composite {
593
- border-radius: var-get($theme, 'border-radius');
594
- box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color-focused');
595
- }
582
+ %igx-checkbox--focused-checked-indigo {
583
+ %cbx-composite {
584
+ border-radius: var-get($theme, 'border-radius');
585
+ box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color-focused');
596
586
  }
587
+ }
597
588
 
598
- @if $variant == 'bootstrap' {
599
- %cbx-composite {
600
- border-color: transparent;
601
- }
589
+ %igx-checkbox--focused-checked-bootstrap {
590
+ %cbx-composite {
591
+ border-color: transparent;
602
592
  }
603
593
  }
604
594
 
605
- %igx-checkbox--focused-invalid {
606
- @if $variant == 'bootstrap' {
607
- %cbx-composite {
608
- border-color: var-get($theme, 'error-color');
609
- box-shadow: 0 0 0 rem(4px) var-get($theme, 'focus-outline-color-error');
610
- }
595
+ %igx-checkbox--focused-invalid-indigo {
596
+ %cbx-composite {
597
+ box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color-error');
598
+ }
599
+ }
611
600
 
612
- &:hover {
613
- %cbx-composite {
614
- border-color: var-get($theme, 'error-color-hover');
615
- }
616
- }
601
+ %igx-checkbox--focused-invalid-bootstrap {
602
+ %cbx-composite {
603
+ border-color: var-get($theme, 'error-color');
604
+ box-shadow: 0 0 0 rem(4px) var-get($theme, 'focus-outline-color-error');
617
605
  }
618
606
 
619
- @if $variant == 'indigo' {
607
+ &:hover {
620
608
  %cbx-composite {
621
- box-shadow: 0 0 0 rem(3px) var-get($theme, 'focus-outline-color-error');
609
+ border-color: var-get($theme, 'error-color-hover');
622
610
  }
623
611
  }
624
612
  }
@@ -18,6 +18,7 @@
18
18
  igx-checkbox,
19
19
  igx-chip,
20
20
  igx-grid-summary,
21
+ igx-icon-button,
21
22
  igx-input-group,
22
23
  igx-grid-toolbar,
23
24
  igx-paginator,
@@ -10,7 +10,7 @@
10
10
  $name: string.slice($this, 2, -1),
11
11
  $deps: (
12
12
  igx-button,
13
- igx-icon,
13
+ igx-icon-button,
14
14
  igx-input-group,
15
15
  )
16
16
  );
@@ -13,7 +13,15 @@
13
13
  $this: bem--selector-to-string(&);
14
14
  @include register-component(
15
15
  $name: string.slice($this, 2, -1),
16
- $deps: ()
16
+ $deps: (
17
+ igx-icon,
18
+ igx-button,
19
+ igx-chip,
20
+ igx-select,
21
+ igx-input-button,
22
+ igx-icon-button,
23
+ igx-overlay,
24
+ )
17
25
  );
18
26
 
19
27
  @extend %advanced-filter !optional;
@@ -309,3 +309,8 @@ export declare function intoChunks<T>(arr: T[], size: number): Generator<T[], vo
309
309
  * @returns string that represents the --component-size default value
310
310
  */
311
311
  export declare function getComponentCssSizeVar(size: string): "var(--ig-size, var(--ig-size-small))" | "var(--ig-size, var(--ig-size-medium))" | "var(--ig-size, var(--ig-size-large))";
312
+ /**
313
+ * @param path - The URI path to be normalized.
314
+ * @returns string encoded using the encodeURI function.
315
+ */
316
+ export declare function normalizeURI(path: string): string;
@@ -563,6 +563,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
563
563
  * @hidden
564
564
  */
565
565
  onTransitionEnd(event: any): void;
566
+ protected clearGhost(): void;
566
567
  /**
567
568
  * @hidden
568
569
  * Create ghost element - if a Node object is provided it creates a clone of that node,
@@ -56,6 +56,7 @@ export declare class IgxFilteringService implements OnDestroy {
56
56
  clear_filter(fieldName: string): void;
57
57
  /**
58
58
  * Filters all the `IgxColumnComponent` in the `IgxGridComponent` with the same condition.
59
+ * @deprecated in version 19.0.0.
59
60
  */
60
61
  filterGlobal(value: any, condition: any, ignoreCase?: any): void;
61
62
  /**
@@ -2673,6 +2673,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
2673
2673
  * @param value
2674
2674
  * @param condition
2675
2675
  * @param ignoreCase
2676
+ * @deprecated in version 19.0.0.
2676
2677
  */
2677
2678
  filterGlobal(value: any, condition: any, ignoreCase?: any): void;
2678
2679
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "19.0.0-beta.0",
3
+ "version": "19.0.0-rc.0",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -73,9 +73,8 @@
73
73
  "tslib": "^2.3.0",
74
74
  "igniteui-trial-watermark": "^3.0.2",
75
75
  "lodash-es": "^4.17.21",
76
- "uuid": "^9.0.0",
77
76
  "igniteui-theming": "^14.2.0",
78
- "@igniteui/material-icons-extended": "^3.0.0"
77
+ "@igniteui/material-icons-extended": "^3.1.0"
79
78
  },
80
79
  "peerDependencies": {
81
80
  "@angular/common": "19",
@@ -94,7 +93,7 @@
94
93
  }
95
94
  },
96
95
  "igxDevDependencies": {
97
- "@igniteui/angular-schematics": "~18.2.1420"
96
+ "@igniteui/angular-schematics": "~19.0.1430-rc.0"
98
97
  },
99
98
  "ng-update": {
100
99
  "migrations": "./migrations/migration-collection.json",