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

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 (69) hide show
  1. package/fesm2022/igniteui-angular.mjs +1764 -1655
  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/dock-manager/_dock-manager-theme.scss +2 -1
  9. package/lib/core/styles/components/grid/_grid-component.scss +1 -0
  10. package/lib/core/styles/components/grid/_grid-theme.scss +7 -7
  11. package/lib/core/styles/components/input/_input-group-theme.scss +4 -5
  12. package/lib/core/styles/components/list/_list-theme.scss +8 -12
  13. package/lib/core/styles/components/paginator/_paginator-component.scss +1 -1
  14. package/lib/core/styles/components/query-builder/_query-builder-component.scss +9 -1
  15. package/lib/core/styles/components/rating/_rating-theme.scss +2 -1
  16. package/lib/core/styles/components/scrollbar/scrollbar-theme.scss +2 -1
  17. package/lib/core/styles/components/tabs/_tabs-theme.scss +34 -33
  18. package/lib/core/styles/themes/generators/_base.scss +3 -2
  19. package/lib/core/styles/themes/generators/_bootstrap.scss +9 -6
  20. package/lib/core/styles/themes/generators/_fluent.scss +9 -6
  21. package/lib/core/styles/themes/generators/_indigo.scss +9 -6
  22. package/lib/core/styles/themes/presets/igniteui-angular-dark.scss +8 -2
  23. package/lib/core/styles/themes/presets/igniteui-angular.scss +8 -2
  24. package/lib/core/styles/themes/presets/igniteui-bootstrap-dark.scss +8 -2
  25. package/lib/core/styles/themes/presets/igniteui-bootstrap-light.scss +8 -2
  26. package/lib/core/styles/themes/presets/igniteui-dark-green.scss +8 -2
  27. package/lib/core/styles/themes/presets/igniteui-fluent-dark-excel.scss +8 -2
  28. package/lib/core/styles/themes/presets/igniteui-fluent-dark-word.scss +8 -2
  29. package/lib/core/styles/themes/presets/igniteui-fluent-dark.scss +8 -2
  30. package/lib/core/styles/themes/presets/igniteui-fluent-light-excel.scss +8 -2
  31. package/lib/core/styles/themes/presets/igniteui-fluent-light-word.scss +8 -2
  32. package/lib/core/styles/themes/presets/igniteui-fluent-light.scss +8 -2
  33. package/lib/core/styles/themes/presets/igniteui-indigo-dark.scss +8 -2
  34. package/lib/core/styles/themes/presets/igniteui-indigo-light.scss +8 -2
  35. package/lib/core/utils.d.ts +5 -0
  36. package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
  37. package/lib/grids/filtering/grid-filtering.service.d.ts +1 -0
  38. package/lib/grids/grid-base.directive.d.ts +2 -0
  39. package/lib/grids/pivot-grid/pivot-grid.component.d.ts +0 -1
  40. package/lib/tabs/tabs/tabs.component.d.ts +3 -1
  41. package/package.json +4 -5
  42. package/schematics/tsconfig.tsbuildinfo +1 -1
  43. package/schematics/utils/dependency-handler.js +0 -1
  44. package/styles/igniteui-angular-dark.css +1 -1
  45. package/styles/igniteui-angular.css +1 -1
  46. package/styles/igniteui-bootstrap-dark.css +1 -1
  47. package/styles/igniteui-bootstrap-light.css +1 -1
  48. package/styles/igniteui-dark-green.css +1 -1
  49. package/styles/igniteui-fluent-dark-excel.css +1 -1
  50. package/styles/igniteui-fluent-dark-word.css +1 -1
  51. package/styles/igniteui-fluent-dark.css +1 -1
  52. package/styles/igniteui-fluent-light-excel.css +1 -1
  53. package/styles/igniteui-fluent-light-word.css +1 -1
  54. package/styles/igniteui-fluent-light.css +1 -1
  55. package/styles/igniteui-indigo-dark.css +1 -1
  56. package/styles/igniteui-indigo-light.css +1 -1
  57. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  58. package/styles/maps/igniteui-angular.css.map +1 -1
  59. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  60. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  61. package/styles/maps/igniteui-dark-green.css.map +1 -1
  62. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  63. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  64. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  65. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  66. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  67. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  68. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  69. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -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;
@@ -1,4 +1,5 @@
1
1
  @use 'sass:map';
2
+ @use 'sass:meta';
2
3
  @use '../../base' as *;
3
4
  @use '../../themes/schemas' as *;
4
5
 
@@ -40,7 +41,7 @@
40
41
 
41
42
  $theme: digest-schema($rating-schema);
42
43
 
43
- @return extend($theme, (name: $name), keywords($rest));
44
+ @return extend($theme, (name: $name), meta.keywords($rest));
44
45
  }
45
46
 
46
47
  /// @deprecated Use the `css-vars` mixin instead.
@@ -1,4 +1,5 @@
1
1
  @use 'sass:map';
2
+ @use 'sass:meta';
2
3
  @use '../../base' as *;
3
4
  @use '../../themes/schemas' as *;
4
5
 
@@ -99,7 +100,7 @@
99
100
  }
100
101
 
101
102
  ::-webkit-scrollbar {
102
- @if type-of(map.get($theme, 'sb-size') == 'string') {
103
+ @if meta.type-of(map.get($theme, 'sb-size') == 'string') {
103
104
  width: var-get($theme, 'sb-size');
104
105
  height: var-get($theme, 'sb-size');
105
106
  }
@@ -360,13 +360,6 @@
360
360
  }
361
361
 
362
362
  %tabs-header-item {
363
- > * {
364
- margin-inline-start: rem(if($variant != 'indigo', 12px, 8px));
365
-
366
- &:first-child {
367
- margin-inline-start: 0;
368
- }
369
- }
370
363
  display: inline-flex;
371
364
  justify-content: center;
372
365
  align-items: center;
@@ -390,32 +383,6 @@
390
383
  color: var-get($theme, 'item-icon-color');
391
384
  }
392
385
 
393
- &::-moz-focus-inner {
394
- border: 0;
395
- }
396
-
397
- &:focus {
398
- background: var-get($theme, 'item-active-background');
399
- color: var-get($theme, 'item-hover-color');
400
- border-bottom-color: transparent;
401
- }
402
-
403
- &:hover {
404
- background: var-get($theme, 'item-hover-background');
405
- color: var-get($theme, 'item-hover-color');
406
-
407
- @if $bootstrap-theme {
408
- box-shadow: inset 0 0 0 rem(1px) var-get($theme, 'border-color--hover');
409
- }
410
- }
411
-
412
- &:hover,
413
- &:focus {
414
- igx-icon {
415
- color: var-get($theme, 'item-hover-icon-color');
416
- }
417
- }
418
-
419
386
  @if $bootstrap-theme {
420
387
  padding-block: rem(12px);
421
388
  border-start-start-radius: var-get($theme, 'border-radius');
@@ -448,6 +415,40 @@
448
415
  }
449
416
  }
450
417
 
418
+ > * {
419
+ margin-inline-start: rem(if($variant != 'indigo', 12px, 8px));
420
+
421
+ &:first-child {
422
+ margin-inline-start: 0;
423
+ }
424
+ }
425
+
426
+ &::-moz-focus-inner {
427
+ border: 0;
428
+ }
429
+
430
+ &:focus {
431
+ background: var-get($theme, 'item-active-background');
432
+ color: var-get($theme, 'item-hover-color');
433
+ border-bottom-color: transparent;
434
+ }
435
+
436
+ &:hover {
437
+ background: var-get($theme, 'item-hover-background');
438
+ color: var-get($theme, 'item-hover-color');
439
+
440
+ @if $bootstrap-theme {
441
+ box-shadow: inset 0 0 0 rem(1px) var-get($theme, 'border-color--hover');
442
+ }
443
+ }
444
+
445
+ &:hover,
446
+ &:focus {
447
+ igx-icon {
448
+ color: var-get($theme, 'item-hover-icon-color');
449
+ }
450
+ }
451
+
451
452
  @include ripple($tabs-ripple-theme);
452
453
  @include css-vars($tabs-ripple-theme);
453
454
  }
@@ -6,6 +6,7 @@
6
6
  @use '../../base' as *;
7
7
  @use '../../components' as *;
8
8
  @use 'igniteui-theming/sass/color' as *;
9
+ @use 'igniteui-theming/sass/color/presets' as *;
9
10
  @use 'igniteui-theming/sass/elevations' as *;
10
11
  @use 'igniteui-theming/sass/elevations/presets' as elevations;
11
12
  @use 'igniteui-theming/sass/utils' as *;
@@ -683,7 +684,7 @@
683
684
  );
684
685
 
685
686
  @include theme(
686
- $palette: $light-palette,
687
+ $palette: $light-material-palette,
687
688
  $schema: $light-material-schema,
688
689
  $exclude: $exclude,
689
690
  $roundness: $roundness,
@@ -716,7 +717,7 @@
716
717
  );
717
718
 
718
719
  @include theme(
719
- $palette: $dark-palette,
720
+ $palette: $dark-material-palette,
720
721
  $schema: $dark-material-schema,
721
722
  $exclude: $exclude,
722
723
  $roundness: $roundness,
@@ -1,6 +1,7 @@
1
1
  @use 'base' as *;
2
2
  @use '../schemas' as *;
3
3
  @use 'igniteui-theming/sass/color' as *;
4
+ @use 'igniteui-theming/sass/color/presets' as *;
4
5
 
5
6
  ////
6
7
  /// @group themes
@@ -20,7 +21,8 @@
20
21
  ) {
21
22
  $primary: color($palette, 'primary');
22
23
  $secondary: color($palette, 'secondary');
23
- $surface: color($palette, 'surface');
24
+ $gray: color($light-bootstrap-palette, 'gray');
25
+ $surface: color($light-bootstrap-palette, 'surface');
24
26
  $info: color($palette, 'info');
25
27
  $success: color($palette, 'success');
26
28
  $warn: color($palette, 'warn');
@@ -30,8 +32,8 @@
30
32
  $palette: palette(
31
33
  $primary,
32
34
  $secondary,
33
- $surface: if($surface != #f8f9fa, $surface, #f8f9fa),
34
- $gray: #212529,
35
+ $surface: $surface,
36
+ $gray: $gray,
35
37
  $info: $info,
36
38
  $success: $success,
37
39
  $warn: $warn,
@@ -56,7 +58,8 @@
56
58
  ) {
57
59
  $primary: color($palette, 'primary');
58
60
  $secondary: color($palette, 'secondary');
59
- $surface: color($palette, 'surface');
61
+ $gray: color($dark-bootstrap-palette, 'gray');
62
+ $surface: color($dark-bootstrap-palette, 'surface');
60
63
  $info: color($palette, 'info');
61
64
  $success: color($palette, 'success');
62
65
  $warn: color($palette, 'warn');
@@ -66,8 +69,8 @@
66
69
  $palette: palette(
67
70
  $primary,
68
71
  $secondary,
69
- $surface: if($surface != white, $surface, #222),
70
- $gray: #fff,
72
+ $surface: $surface,
73
+ $gray: $gray,
71
74
  $info: $info,
72
75
  $success: $success,
73
76
  $warn: $warn,
@@ -1,6 +1,7 @@
1
1
  @use 'base' as *;
2
2
  @use '../schemas' as *;
3
3
  @use 'igniteui-theming/sass/color' as *;
4
+ @use 'igniteui-theming/sass/color/presets' as *;
4
5
 
5
6
  ////
6
7
  /// @group themes
@@ -20,7 +21,8 @@
20
21
  ) {
21
22
  $primary: color($palette, 'primary');
22
23
  $secondary: color($palette, 'secondary');
23
- $surface: color($palette, 'surface');
24
+ $gray: color($light-fluent-palette, 'gray');
25
+ $surface: color($light-fluent-palette, 'surface');
24
26
  $info: color($palette, 'info');
25
27
  $success: color($palette, 'success');
26
28
  $warn: color($palette, 'warn');
@@ -30,8 +32,8 @@
30
32
  $palette: palette(
31
33
  $primary,
32
34
  $secondary,
33
- $surface: if($surface != #fff, $surface, #fff),
34
- $gray: #000,
35
+ $surface: $surface,
36
+ $gray: $gray,
35
37
  $info: $info,
36
38
  $success: $success,
37
39
  $warn: $warn,
@@ -56,7 +58,8 @@
56
58
  ) {
57
59
  $primary: color($palette, 'primary');
58
60
  $secondary: color($palette, 'secondary');
59
- $surface: color($palette, 'surface');
61
+ $gray: color($dark-fluent-palette, 'gray');
62
+ $surface: color($dark-fluent-palette, 'surface');
60
63
  $info: color($palette, 'info');
61
64
  $success: color($palette, 'success');
62
65
  $warn: color($palette, 'warn');
@@ -66,8 +69,8 @@
66
69
  $palette: palette(
67
70
  $primary,
68
71
  $secondary,
69
- $surface: if($surface != #fff, $surface, #222),
70
- $gray: #fff,
72
+ $surface: $surface,
73
+ $gray: $gray,
71
74
  $info: $info,
72
75
  $success: $success,
73
76
  $warn: $warn,
@@ -1,6 +1,7 @@
1
1
  @use 'base' as *;
2
2
  @use '../schemas' as *;
3
3
  @use 'igniteui-theming/sass/color' as *;
4
+ @use 'igniteui-theming/sass/color/presets' as *;
4
5
  @use 'igniteui-theming/sass/elevations/presets' as elevations;
5
6
 
6
7
  ////
@@ -21,7 +22,8 @@
21
22
  ) {
22
23
  $primary: color($palette, 'primary');
23
24
  $secondary: color($palette, 'secondary');
24
- $surface: color($palette, 'surface');
25
+ $gray: color($light-indigo-palette, 'gray');
26
+ $surface: color($light-indigo-palette, 'surface');
25
27
  $info: color($palette, 'info');
26
28
  $success: color($palette, 'success');
27
29
  $warn: color($palette, 'warn');
@@ -31,8 +33,8 @@
31
33
  $palette: palette(
32
34
  $primary,
33
35
  $secondary,
34
- $surface: if($surface != #fff, $surface, #fff),
35
- $gray: #060716,
36
+ $surface: $surface,
37
+ $gray: $gray,
36
38
  $info: $info,
37
39
  $success: $success,
38
40
  $warn: $warn,
@@ -58,7 +60,8 @@
58
60
  ) {
59
61
  $primary: color($palette, 'primary');
60
62
  $secondary: color($palette, 'secondary');
61
- $surface: color($palette, 'surface');
63
+ $gray: color($dark-indigo-palette, 'gray');
64
+ $surface: color($dark-indigo-palette, 'surface');
62
65
  $info: color($palette, 'info');
63
66
  $success: color($palette, 'success');
64
67
  $warn: color($palette, 'warn');
@@ -68,8 +71,8 @@
68
71
  $palette: palette(
69
72
  $primary,
70
73
  $secondary,
71
- $surface: if($surface != white, $surface, #2a2b2f),
72
- $gray: #fff,
74
+ $surface: $surface,
75
+ $gray: $gray,
73
76
  $info: $info,
74
77
  $success: $success,
75
78
  $warn: $warn,
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $material-typeface, $type-scale: $material-type-scale);
5
- @include dark-theme($dark-material-palette);
4
+ @include typography(
5
+ $font-family: $material-typeface,
6
+ $type-scale: $material-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $dark-material-schema,
10
+ $palette: $dark-material-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $material-typeface, $type-scale: $material-type-scale);
5
- @include theme($light-material-palette);
4
+ @include typography(
5
+ $font-family: $material-typeface,
6
+ $type-scale: $material-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $light-material-schema,
10
+ $palette: $light-material-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $bootstrap-typeface, $type-scale: $bootstrap-type-scale);
5
- @include bootstrap-dark-theme($dark-bootstrap-palette);
4
+ @include typography(
5
+ $font-family: $bootstrap-typeface,
6
+ $type-scale: $bootstrap-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $dark-bootstrap-schema,
10
+ $palette: $dark-bootstrap-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $bootstrap-typeface, $type-scale: $bootstrap-type-scale);
5
- @include bootstrap-light-theme($light-bootstrap-palette);
4
+ @include typography(
5
+ $font-family: $bootstrap-typeface,
6
+ $type-scale: $bootstrap-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $light-bootstrap-schema,
10
+ $palette: $light-bootstrap-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $material-typeface, $type-scale: $material-type-scale);
5
- @include dark-theme($dark-green-palette);
4
+ @include typography(
5
+ $font-family: $material-typeface,
6
+ $type-scale: $material-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $dark-material-schema,
10
+ $palette: $dark-green-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $fluent-typeface, $type-scale: $fluent-type-scale);
5
- @include fluent-dark-theme($dark-fluent-excel-palette);
4
+ @include typography(
5
+ $font-family: $fluent-typeface,
6
+ $type-scale: $fluent-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $dark-fluent-schema,
10
+ $palette: $dark-fluent-excel-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $fluent-typeface, $type-scale: $fluent-type-scale);
5
- @include fluent-dark-theme($dark-fluent-word-palette);
4
+ @include typography(
5
+ $font-family: $fluent-typeface,
6
+ $type-scale: $fluent-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $dark-fluent-schema,
10
+ $palette: $dark-fluent-word-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $fluent-typeface, $type-scale: $fluent-type-scale);
5
- @include fluent-dark-theme($dark-fluent-palette);
4
+ @include typography(
5
+ $font-family: $fluent-typeface,
6
+ $type-scale: $fluent-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $dark-fluent-schema,
10
+ $palette: $dark-fluent-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $fluent-typeface, $type-scale: $fluent-type-scale);
5
- @include fluent-light-theme($light-fluent-excel-palette);
4
+ @include typography(
5
+ $font-family: $fluent-typeface,
6
+ $type-scale: $fluent-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $light-fluent-schema,
10
+ $palette: $light-fluent-excel-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $fluent-typeface, $type-scale: $fluent-type-scale);
5
- @include fluent-light-theme($light-fluent-word-palette);
4
+ @include typography(
5
+ $font-family: $fluent-typeface,
6
+ $type-scale: $fluent-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $light-fluent-schema,
10
+ $palette: $light-fluent-word-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $fluent-typeface, $type-scale: $fluent-type-scale);
5
- @include fluent-light-theme($light-fluent-palette);
4
+ @include typography(
5
+ $font-family: $fluent-typeface,
6
+ $type-scale: $fluent-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $light-fluent-schema,
10
+ $palette: $light-fluent-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $indigo-typeface, $type-scale: $indigo-type-scale);
5
- @include indigo-dark-theme($dark-indigo-palette);
4
+ @include typography(
5
+ $font-family: $indigo-typeface,
6
+ $type-scale: $indigo-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $dark-indigo-schema,
10
+ $palette: $dark-indigo-palette,
11
+ );
@@ -1,5 +1,11 @@
1
1
  @use '../../themes' as *;
2
2
 
3
3
  @include core();
4
- @include typography($font-family: $indigo-typeface, $type-scale: $indigo-type-scale);
5
- @include indigo-light-theme($light-indigo-palette);
4
+ @include typography(
5
+ $font-family: $indigo-typeface,
6
+ $type-scale: $indigo-type-scale
7
+ );
8
+ @include theme(
9
+ $schema: $light-indigo-schema,
10
+ $palette: $light-indigo-palette,
11
+ );
@@ -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
  /**
@@ -1989,6 +1989,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
1989
1989
  private _selectRowOnClick;
1990
1990
  private _columnSelectionMode;
1991
1991
  private lastAddedRowIndex;
1992
+ protected isColumnWidthSum: boolean;
1992
1993
  private _currencyPositionLeft;
1993
1994
  private rowEditPositioningStrategy;
1994
1995
  private rowEditSettings;
@@ -2673,6 +2674,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
2673
2674
  * @param value
2674
2675
  * @param condition
2675
2676
  * @param ignoreCase
2677
+ * @deprecated in version 19.0.0.
2676
2678
  */
2677
2679
  filterGlobal(value: any, condition: any, ignoreCase?: any): void;
2678
2680
  /**
@@ -615,7 +615,6 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
615
615
  /** @hidden @internal */
616
616
  get values(): IPivotValue[];
617
617
  toggleColumn(col: IgxColumnComponent): void;
618
- protected getColumnWidthSum(): number;
619
618
  /**
620
619
  * @hidden @internal
621
620
  */
@@ -1,4 +1,5 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy } from '@angular/core';
2
+ import { PlatformUtil } from '../../core/utils';
2
3
  import { AnimationService } from '../../services/animation/animation';
3
4
  import { IgxDirectionality } from '../../services/direction/directionality';
4
5
  import { IgxTabsDirective } from '../tabs.directive';
@@ -42,6 +43,7 @@ export type IgxTabsAlignment = (typeof IgxTabsAlignment)[keyof typeof IgxTabsAli
42
43
  */
43
44
  export declare class IgxTabsComponent extends IgxTabsDirective implements AfterViewInit, OnDestroy {
44
45
  private ngZone;
46
+ private platform;
45
47
  /**
46
48
  * Gets/Sets the tab alignment. Defaults to `start`.
47
49
  */
@@ -76,7 +78,7 @@ export declare class IgxTabsComponent extends IgxTabsDirective implements AfterV
76
78
  protected componentName: string;
77
79
  private _tabAlignment;
78
80
  private _resizeObserver;
79
- constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, dir: IgxDirectionality);
81
+ constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, dir: IgxDirectionality, platform: PlatformUtil);
80
82
  /** @hidden @internal */
81
83
  ngAfterViewInit(): void;
82
84
  /** @hidden @internal */
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.1",
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
- "igniteui-theming": "^14.2.0",
78
- "@igniteui/material-icons-extended": "^3.0.0"
76
+ "igniteui-theming": "^14.3.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",