igniteui-angular 19.2.0-alpha.2 → 19.2.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 (77) hide show
  1. package/fesm2022/igniteui-angular.mjs +2380 -2201
  2. package/fesm2022/igniteui-angular.mjs.map +1 -1
  3. package/lib/calendar/calendar.component.d.ts +2 -2
  4. package/lib/calendar/month-picker/month-picker.component.d.ts +2 -2
  5. package/lib/carousel/carousel-base.d.ts +7 -32
  6. package/lib/carousel/carousel.component.d.ts +3 -25
  7. package/lib/carousel/slide.component.d.ts +3 -3
  8. package/lib/checkbox/checkbox-base.directive.d.ts +3 -4
  9. package/lib/core/styles/components/action-strip/_action-strip-theme.scss +6 -0
  10. package/lib/core/styles/components/calendar/_calendar-component.scss +16 -0
  11. package/lib/core/styles/components/calendar/_calendar-theme.scss +92 -44
  12. package/lib/core/styles/components/card/_card-theme.scss +30 -24
  13. package/lib/core/styles/components/chip/_chip-theme.scss +43 -19
  14. package/lib/core/styles/components/grid/_grid-theme.scss +31 -40
  15. package/lib/core/styles/components/input/_input-group-theme.scss +33 -13
  16. package/lib/core/styles/components/list/_list-theme.scss +7 -5
  17. package/lib/core/styles/components/progress/circular/_circular-theme.scss +11 -8
  18. package/lib/core/styles/components/query-builder/_query-builder-component.scss +3 -3
  19. package/lib/core/styles/components/query-builder/_query-builder-theme.scss +25 -5
  20. package/lib/core/styles/components/switch/_switch-component.scss +0 -65
  21. package/lib/core/styles/components/switch/_switch-theme.scss +0 -81
  22. package/lib/core/styles/components/tree/_tree-theme.scss +1 -3
  23. package/lib/data-operations/expressions-tree-util.d.ts +1 -1
  24. package/lib/data-operations/filtering-condition.d.ts +1 -1
  25. package/lib/data-operations/filtering-expression.interface.d.ts +3 -3
  26. package/lib/data-operations/filtering-expressions-tree.d.ts +3 -3
  27. package/lib/data-operations/filtering-strategy.d.ts +2 -1
  28. package/lib/directives/button/button.directive.d.ts +3 -5
  29. package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
  30. package/lib/grids/columns/column.component.d.ts +19 -1
  31. package/lib/grids/common/enums.d.ts +5 -4
  32. package/lib/grids/common/grid.interface.d.ts +1 -0
  33. package/lib/grids/common/random.d.ts +5 -0
  34. package/lib/grids/filtering/advanced-filtering/advanced-filtering-dialog.component.d.ts +2 -5
  35. package/lib/grids/grid-base.directive.d.ts +13 -6
  36. package/lib/grids/hierarchical-grid/events.d.ts +1 -0
  37. package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +22 -2
  38. package/lib/grids/toolbar/grid-toolbar-advanced-filtering.component.d.ts +3 -3
  39. package/lib/query-builder/query-builder-drag.service.d.ts +26 -36
  40. package/lib/query-builder/query-builder-tree.component.d.ts +29 -11
  41. package/lib/query-builder/query-builder.common.d.ts +1 -1
  42. package/migrations/migration-collection.json +10 -0
  43. package/migrations/update-19_1_4/changes/theme-changes.json +29 -0
  44. package/migrations/update-19_1_4/index.d.ts +3 -0
  45. package/migrations/update-19_1_4/index.js +18 -0
  46. package/migrations/update-19_2_0/changes/inputs.json +13 -0
  47. package/migrations/update-19_2_0/changes/theme-changes.json +59 -0
  48. package/migrations/update-19_2_0/index.d.ts +3 -0
  49. package/migrations/update-19_2_0/index.js +18 -0
  50. package/package.json +2 -2
  51. package/schematics/tsconfig.tsbuildinfo +1 -1
  52. package/styles/igniteui-angular-dark.css +1 -1
  53. package/styles/igniteui-angular.css +1 -1
  54. package/styles/igniteui-bootstrap-dark.css +1 -1
  55. package/styles/igniteui-bootstrap-light.css +1 -1
  56. package/styles/igniteui-dark-green.css +1 -1
  57. package/styles/igniteui-fluent-dark-excel.css +1 -1
  58. package/styles/igniteui-fluent-dark-word.css +1 -1
  59. package/styles/igniteui-fluent-dark.css +1 -1
  60. package/styles/igniteui-fluent-light-excel.css +1 -1
  61. package/styles/igniteui-fluent-light-word.css +1 -1
  62. package/styles/igniteui-fluent-light.css +1 -1
  63. package/styles/igniteui-indigo-dark.css +1 -1
  64. package/styles/igniteui-indigo-light.css +1 -1
  65. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  66. package/styles/maps/igniteui-angular.css.map +1 -1
  67. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  68. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  69. package/styles/maps/igniteui-dark-green.css.map +1 -1
  70. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  71. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  72. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  73. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  74. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  75. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  76. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  77. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -268,14 +268,14 @@
268
268
  $box-shadow-focus: map.get((
269
269
  'material': null,
270
270
  'fluent': null,
271
- 'bootstrap': 0 0 0 rem(2px) var-get($theme, 'focus-outline-color'),
271
+ 'bootstrap': 0 0 0 rem(4px) var-get($theme, 'focus-outline-color'),
272
272
  'indigo': 0 0 0 rem(3px) var-get($theme, 'focus-outline-color')
273
273
  ), $variant);
274
274
 
275
275
  $box-shadow-focus-selected: map.get((
276
276
  'material': null,
277
277
  'fluent': null,
278
- 'bootstrap': 0 0 0 rem(2px) var-get($theme, 'focus-selected-outline-color'),
278
+ 'bootstrap': 0 0 0 rem(4px) var-get($theme, 'focus-selected-outline-color'),
279
279
  'indigo': 0 0 0 rem(3px) var-get($theme, 'focus-selected-outline-color')
280
280
  ), $variant);
281
281
 
@@ -378,19 +378,21 @@
378
378
  }
379
379
 
380
380
  igx-avatar,
381
- igx-circular-bar,
382
381
  igx-icon {
383
382
  --component-size: var(--chip-size);
384
383
  }
385
384
 
385
+ igx-circular-bar {
386
+ --diameter: #{sizable(rem(14px), rem(18px), rem(24px))};
387
+ }
388
+
386
389
  @if $variant == 'indigo' {
387
390
  igx-icon {
388
391
  --size: #{sizable(rem(14px), rem(14px), rem(16px))}
389
392
  }
390
393
  }
391
394
 
392
- igx-avatar,
393
- igx-circular-bar {
395
+ igx-avatar {
394
396
  max-height: 100%;
395
397
  width: sizable(rem(14px), rem(18px), rem(24px));
396
398
  max-width: sizable(rem(14px), rem(18px), rem(24px));
@@ -427,9 +429,17 @@
427
429
  %igx-chip%igx-chip--primary {
428
430
  &:focus {
429
431
  %igx-chip__item {
430
- color: contrast-color($color: 'primary', $variant: 800);
431
- background: color($color: 'primary', $variant: 800);
432
- border-color: color($color: 'primary', $variant: 800);
432
+ @if $variant != 'bootstrap' and $variant != 'indigo' {
433
+ color: contrast-color($color: 'primary', $variant: 800);
434
+ background: color($color: 'primary', $variant: 800);
435
+ border-color: color($color: 'primary', $variant: 800);
436
+ }
437
+
438
+ @if $variant == "bootstrap" {
439
+ color: contrast-color($color: 'primary', $variant: 500);
440
+ background: color($color: 'primary', $variant: 500);
441
+ border-color: color($color: 'primary', $variant: 500);
442
+ }
433
443
 
434
444
  @if $variant == 'indigo' {
435
445
  color: contrast-color($color: 'primary', $variant: 900);
@@ -439,7 +449,7 @@
439
449
  }
440
450
 
441
451
  @if $variant == 'bootstrap' {
442
- box-shadow: 0 0 0 rem(2px) color($color: 'primary', $variant: 200);
452
+ box-shadow: 0 0 0 rem(4px) color($color: 'primary', $variant: 500, $opacity: .38);
443
453
  }
444
454
  }
445
455
  }
@@ -472,15 +482,18 @@
472
482
  background: color($color: 'info', $variant: 800);
473
483
  border-color: color($color: 'info', $variant: 800);
474
484
 
475
- @if $variant == 'indigo' {
485
+ @if $variant == 'indigo' or $variant == 'bootstrap' {
476
486
  color: contrast-color($color: 'info', $variant: 500);
477
487
  background: color($color: 'info', $variant: 500);
478
488
  border-color: color($color: 'info', $variant: 500);
489
+ }
490
+
491
+ @if $variant == 'indigo' {
479
492
  box-shadow: 0 0 0 rem(3px) color($color: 'info', $variant: if($theme-variant == 'light', 100, 800));
480
493
  }
481
494
 
482
495
  @if $variant == 'bootstrap' {
483
- box-shadow: 0 0 0 rem(2px) color($color: 'info', $variant: 200);
496
+ box-shadow: 0 0 0 rem(4px) color($color: 'info', $variant: 500, $opacity: .38);
484
497
  }
485
498
  }
486
499
  }
@@ -517,15 +530,19 @@
517
530
  background: color($color: 'success', $variant: 800);
518
531
  border-color: color($color: 'success', $variant: 800);
519
532
 
520
- @if $variant == 'indigo' {
521
- color: contrast-color($color: 'success', $variant: 900);
533
+ @if $variant == 'indigo' or $variant == 'bootstrap' {
522
534
  background: color($color: 'success', $variant: 500);
523
535
  border-color: color($color: 'success', $variant: 500);
524
536
  box-shadow: 0 0 0 rem(3px) color($color: 'success', $variant: if($theme-variant == 'light', 200, 800));
525
537
  }
526
538
 
539
+ @if $variant == 'indigo' {
540
+ color: contrast-color($color: 'success', $variant: 900);
541
+ }
542
+
527
543
  @if $variant == 'bootstrap' {
528
- box-shadow: 0 0 0 rem(2px) color($color: 'success', $variant: 200);
544
+ color: contrast-color($color: 'success', $variant: 600);
545
+ box-shadow: 0 0 0 rem(4px) color($color: 'success', $variant: 500, $opacity: .38);
529
546
  }
530
547
  }
531
548
  }
@@ -558,15 +575,18 @@
558
575
  background: color($color: 'warn', $variant: 800);
559
576
  border-color: color($color: 'warn', $variant: 800);
560
577
 
561
- @if $variant == 'indigo' {
578
+ @if $variant == 'indigo' or $variant == 'bootstrap' {
562
579
  color: contrast-color($color: 'warn', $variant: 900);
563
580
  background: color($color: 'warn', $variant: 500);
564
581
  border-color: color($color: 'warn', $variant: 500);
582
+ }
583
+
584
+ @if $variant == 'indigo' {
565
585
  box-shadow: 0 0 0 rem(3px) color($color: 'warn', $variant: if($theme-variant == 'light', 100, 900));
566
586
  }
567
587
 
568
588
  @if $variant == 'bootstrap' {
569
- box-shadow: 0 0 0 rem(2px) color($color: 'warn', $variant: 200);
589
+ box-shadow: 0 0 0 rem(4px) color($color: 'warn', $variant: 500, $opacity: .38);
570
590
  }
571
591
  }
572
592
  }
@@ -603,15 +623,19 @@
603
623
  background: color($color: 'error', $variant: 800);
604
624
  border-color: color($color: 'error', $variant: 800);
605
625
 
606
- @if $variant == 'indigo' {
607
- color: contrast-color($color: 'error', $variant: 900);
626
+ @if $variant == 'indigo' or $variant == 'bootstrap' {
608
627
  background: color($color: 'error', $variant: 500);
609
628
  border-color: color($color: 'error', $variant: 500);
629
+ }
630
+
631
+ @if $variant == 'indigo' {
632
+ color: contrast-color($color: 'error', $variant: 900);
610
633
  box-shadow: 0 0 0 rem(3px) color($color: 'error', $variant: if($theme-variant == 'light', 100, 900));
611
634
  }
612
635
 
613
636
  @if $variant == 'bootstrap' {
614
- box-shadow: 0 0 0 rem(2px) color($color: 'error', $variant: 200);
637
+ color: contrast-color($color: 'error', $variant: 600);
638
+ box-shadow: 0 0 0 rem(4px) color($color: 'error', $variant: 500, $opacity: .38);
615
639
  }
616
640
  }
617
641
  }
@@ -90,11 +90,8 @@
90
90
  /// @param {Color} $excel-filtering-actions-foreground [null] - The text color of the excel style filtering options.
91
91
  /// @param {Color} $excel-filtering-actions-hover-foreground [null] - The text color of the excel style filtering options in hover/focus state.
92
92
  /// @param {Color} $excel-filtering-actions-disabled-foreground [null] - The text color of the excel style filtering options in disabled state.
93
- /// @param {Color} $tree-filtered-text-color [null] - grouping row background color on focus.
94
- /// @param {Color} $body-summaries-background [null] - The background color of the summary groups located the body.
95
- /// @param {Color} $body-summaries-text-color [null] - The text color of the summary results located the body.
96
- /// @param {Color} $root-summaries-background [null] - The background color of the summary groups located the footer.
97
- /// @param {Color} $root-summaries-text-color [null] - The text color of the summary results located the footer.
93
+ /// @param {Color} $tree-filtered-text-color [null] - Grouping row background color on focus.
94
+ /// @param {Color} $summaries-patch-background [null] - The leading summaries patch backround. Used in hierarchical grids.
98
95
  /// @param {Color} $row-highlight [null] - The grid row highlight indication color.
99
96
  /// @param {box-shadow} $grid-shadow [null] - The shadow of the grid.
100
97
  /// @param {box-shadow} $drag-shadow [null] - The shadow used for movable elements (ex. column headers).
@@ -204,11 +201,6 @@
204
201
  $excel-filtering-actions-hover-foreground: null,
205
202
  $excel-filtering-actions-disabled-foreground: null,
206
203
 
207
- $body-summaries-background: null,
208
- $body-summaries-text-color: null,
209
- $root-summaries-background: null,
210
- $root-summaries-text-color: null,
211
-
212
204
  $row-highlight: null,
213
205
  $grid-shadow: null,
214
206
  $drag-shadow: null,
@@ -217,6 +209,7 @@
217
209
  $drop-area-border-radius: null,
218
210
  $grid-border-color: null,
219
211
  $sortable-header-icon-hover-color: null,
212
+ $summaries-patch-background: null,
220
213
 
221
214
  $cell-selected-within-background: null,
222
215
  $cell-selected-within-text-color: null,
@@ -434,14 +427,6 @@
434
427
  $filtering-row-text-color: text-contrast(to-opaque($filtering-row-background));
435
428
  }
436
429
 
437
- @if not($body-summaries-text-color) and $body-summaries-background {
438
- $body-summaries-text-color: text-contrast($body-summaries-background);
439
- }
440
-
441
- @if not($root-summaries-text-color) and $root-summaries-background {
442
- $root-summaries-text-color: text-contrast($root-summaries-background);
443
- }
444
-
445
430
  @if not($grid-shadow) {
446
431
  $grid-elevation: map.get($grid-schema, 'grid-elevation');
447
432
  $grid-shadow: elevation($grid-elevation);
@@ -556,11 +541,6 @@
556
541
  tree-selected-filtered-row-text-color: $tree-selected-filtered-row-text-color,
557
542
  tree-selected-filtered-cell-text-color: $tree-selected-filtered-cell-text-color,
558
543
 
559
- body-summaries-background: $body-summaries-background,
560
- body-summaries-text-color: $body-summaries-text-color,
561
- root-summaries-background: $root-summaries-background,
562
- root-summaries-text-color: $root-summaries-text-color,
563
-
564
544
  row-highlight: $row-highlight,
565
545
  grid-shadow: $grid-shadow,
566
546
  drag-shadow: $drag-shadow,
@@ -569,6 +549,7 @@
569
549
  drop-area-border-radius: $drop-area-border-radius,
570
550
  sortable-header-icon-hover-color: $sortable-header-icon-hover-color,
571
551
  grid-border-color: $grid-border-color,
552
+ summaries-patch-background: $summaries-patch-background,
572
553
 
573
554
  cell-selected-within-background: $cell-selected-within-background,
574
555
  cell-selected-within-text-color: $cell-selected-within-text-color,
@@ -2103,7 +2084,7 @@
2103
2084
 
2104
2085
  .sort-icon {
2105
2086
  color: var-get($theme, 'header-selected-text-color');
2106
-
2087
+
2107
2088
  ::after {
2108
2089
  background: var-get($theme, 'header-selected-background');
2109
2090
  }
@@ -2131,10 +2112,18 @@
2131
2112
  &%igx-grid-th--sorted {
2132
2113
  .sort-icon {
2133
2114
  color: var-get($theme, 'header-selected-text-color');
2115
+
2116
+ > igx-icon {
2117
+ color: inherit;
2118
+ }
2134
2119
 
2135
2120
  &:focus,
2136
2121
  &:hover {
2137
2122
  color: var-get($theme, 'header-selected-text-color');
2123
+
2124
+ > igx-icon {
2125
+ color: inherit;
2126
+ }
2138
2127
  }
2139
2128
  }
2140
2129
  }
@@ -2188,9 +2177,17 @@
2188
2177
  .sort-icon {
2189
2178
  opacity: 1;
2190
2179
  color: var-get($theme, 'sorted-header-icon-color');
2180
+
2181
+ > igx-icon {
2182
+ color: inherit;
2183
+ }
2191
2184
 
2192
2185
  &:hover {
2193
2186
  color: var-get($theme, 'sortable-header-icon-hover-color');
2187
+
2188
+ > igx-icon {
2189
+ color: inherit;
2190
+ }
2194
2191
  }
2195
2192
  }
2196
2193
  }
@@ -2286,37 +2283,31 @@
2286
2283
  %grid-summaries {
2287
2284
  display: flex;
2288
2285
  overflow: hidden;
2289
- background: var-get($theme, 'root-summaries-background');
2290
2286
  outline-style: none;
2291
-
2292
- %igx-grid-summary__result {
2293
- color: var-get($theme, 'root-summaries-text-color');
2294
- }
2295
-
2287
+ background-color: var-get($theme, 'summaries-patch-background');
2296
2288
  }
2297
2289
 
2298
2290
  %grid-summaries--body {
2299
- background: var-get($theme, 'body-summaries-background');
2291
+ --summaries-patch-background: var(--ig-gray-100);
2292
+
2300
2293
  border-bottom: rem(1px) dashed var-get($theme, 'row-border-color');
2294
+ background-color: var-get($theme, 'summaries-patch-background');
2301
2295
 
2302
2296
  &:last-of-type {
2303
2297
  border-bottom: none;
2304
2298
  }
2305
2299
 
2306
- %igx-grid-summary__result {
2307
- color: var-get($theme, 'body-summaries-text-color');
2300
+ .igx-grid-summary {
2301
+ --background-color: inherit;
2302
+ --result-color: #{adaptive-contrast(var(--background-color))};
2308
2303
  }
2309
2304
  }
2310
2305
 
2311
2306
  %grid-summaries-patch {
2312
- @if $bootstrap-theme {
2313
- background: color($color: 'gray', $variant: 100);
2314
- } @else {
2315
- background: inherit;
2316
- }
2317
2307
  position: relative;
2318
- z-index: 1;
2308
+ background: inherit;
2319
2309
  border-inline-end: rem(1px) solid var-get($theme, 'header-border-color');
2310
+ z-index: 1;
2320
2311
 
2321
2312
  @if $variant == 'indigo' {
2322
2313
  border-top: rem(1px) solid var-get($theme, 'header-border-color');
@@ -3199,7 +3190,7 @@
3199
3190
  } @else {
3200
3191
  background: color($color: 'surface', $variant: 500);
3201
3192
  }
3202
-
3193
+
3203
3194
  box-shadow: elevation(if($variant == 'indigo', if($theme-variant == 'light', 24, 23), 24));
3204
3195
 
3205
3196
  @if $variant == 'material' or $variant == 'bootstrap' {
@@ -380,14 +380,17 @@
380
380
  } @else {
381
381
  min-height: 100% !important;
382
382
  }
383
+
383
384
  transition: color $transition-timing, background $transition-timing;
384
385
 
385
- @if $material-theme {
386
- padding-inline: pad-inline(rem(12px), rem(14px), rem(16px));
387
- } @else if $indigo-theme {
388
- padding-inline: pad-inline(rem(2px), rem(4px), rem(6px));
389
- } @else {
390
- padding-inline: pad-inline(rem(8px), rem(12px), rem(16px));
386
+ &:not(:empty) {
387
+ @if $material-theme {
388
+ padding-inline: pad-inline(rem(12px), rem(14px), rem(16px));
389
+ } @else if $indigo-theme {
390
+ padding-inline: pad-inline(rem(2px), rem(4px), rem(6px));
391
+ } @else {
392
+ padding-inline: pad-inline(rem(8px), rem(12px), rem(16px));
393
+ }
391
394
  }
392
395
  }
393
396
 
@@ -816,16 +819,16 @@
816
819
  %form-group-bundle-start {
817
820
  border-color: var-get($theme, 'hover-border-color');
818
821
  }
819
-
822
+
820
823
  %igx-input-group__filler {
821
824
  border-color: var-get($theme, 'hover-border-color');
822
825
  }
823
-
826
+
824
827
  %igx-input-group__notch {
825
828
  border-block-start-color: var-get($theme, 'hover-border-color');
826
829
  border-block-end-color: var-get($theme, 'hover-border-color');
827
830
  }
828
-
831
+
829
832
  %form-group-bundle-end {
830
833
  border-color: var-get($theme, 'hover-border-color');
831
834
  }
@@ -1009,8 +1012,8 @@
1009
1012
  }
1010
1013
 
1011
1014
  %form-group-label--focused-border:not(:is(
1012
- %form-group-border--error,
1013
- %form-group-border--warning,
1015
+ %form-group-border--error,
1016
+ %form-group-border--warning,
1014
1017
  %form-group-border--success))
1015
1018
  {
1016
1019
  &:hover {
@@ -1645,6 +1648,18 @@
1645
1648
  [igxPrefix] {
1646
1649
  overflow: hidden;
1647
1650
  }
1651
+
1652
+ igx-prefix,
1653
+ [igxPrefix] {
1654
+ background: var(--igx-input-group-input-prefix-background, transparent);
1655
+ color: var(--igx-input-group-input-prefix-color, var(--ig-primary-500));
1656
+ }
1657
+
1658
+ igx-suffix,
1659
+ [igxSuffix] {
1660
+ background: var(--igx-input-group-input-suffix-background, transparent);
1661
+ color: var(--igx-input-group-input-suffix-color, var(--ig-primary-500));
1662
+ }
1648
1663
  }
1649
1664
 
1650
1665
  %igx-input-group-fluent-search--focused {
@@ -1728,6 +1743,10 @@
1728
1743
  %form-group-bundle--fluent--focus {
1729
1744
  border-color: var-get($theme, 'focused-border-color');
1730
1745
  border-width: rem(2px);
1746
+
1747
+ &:hover {
1748
+ border-color: var-get($theme, 'focused-border-color');
1749
+ }
1731
1750
  }
1732
1751
 
1733
1752
  %form-group-bundle-error--fluent,
@@ -1843,7 +1862,6 @@
1843
1862
  }
1844
1863
 
1845
1864
  %fluent-label-focused {
1846
- color: color(null, 'gray', 800);
1847
1865
  transform: translateY(0) scale(1);
1848
1866
  }
1849
1867
 
@@ -1887,7 +1905,9 @@
1887
1905
  %form-group-suffix-fluent,
1888
1906
  %form-group-prefix-fluent-search,
1889
1907
  %form-group-suffix-fluent-search {
1890
- padding-inline: pad-inline(rem(8px), rem(12px), rem(16px));
1908
+ &:not(:empty) {
1909
+ padding-inline: pad-inline(rem(8px), rem(12px), rem(16px));
1910
+ }
1891
1911
  }
1892
1912
 
1893
1913
  %fluent-upload-button {
@@ -425,7 +425,6 @@
425
425
  justify-content: center;
426
426
  border-radius: var-get($theme, 'item-border-radius');
427
427
  color: var-get($theme, 'item-text-color');
428
- background: var-get($theme, 'item-background');
429
428
 
430
429
  @if $bootstrap-theme or $variant == 'fluent' {
431
430
  border-bottom: var-get($theme, 'border-width') solid var-get($theme, 'border-color');
@@ -436,9 +435,6 @@
436
435
  }
437
436
 
438
437
  &:hover {
439
- color: var-get($theme, 'item-text-color-hover');
440
- background: var-get($theme, 'item-background-hover');
441
-
442
438
  %igx-list__item-lines {
443
439
  color: currentColor;
444
440
  }
@@ -544,9 +540,15 @@
544
540
  align-items: center;
545
541
  position: relative;
546
542
  border-radius: var-get($theme, 'item-border-radius');
547
- background: inherit;
543
+ background: var-get($theme, 'item-background');
548
544
  z-index: 2;
549
545
  gap: if($variant == 'indigo', rem(8px), rem(16px));
546
+
547
+ &:hover,
548
+ &:focus-within {
549
+ color: var-get($theme, 'item-text-color-hover');
550
+ background: var-get($theme, 'item-background-hover');
551
+ }
550
552
  }
551
553
 
552
554
  %igx-list-header,
@@ -64,6 +64,7 @@
64
64
  @return extend($theme, (
65
65
  name: $name,
66
66
  base-circle-color: $base-circle-color,
67
+ fill-color-default: $fill-color-default,
67
68
  fill-color-default-start: $fill-color-default-start,
68
69
  fill-color-default-end: $fill-color-default-end,
69
70
  fill-color-danger: $fill-color-danger,
@@ -134,6 +135,8 @@
134
135
  transform-origin: center;
135
136
 
136
137
  %outer {
138
+ stroke: var-get($theme, 'fill-color-default');
139
+
137
140
  @if $variant != 'bootstrap' {
138
141
  animation: igx-initial-dashoffset var(--_transition-duration) linear;
139
142
  } @else {
@@ -310,14 +313,14 @@
310
313
  %text--hidden {
311
314
  visibility: hidden;
312
315
  }
313
-
314
- %gradient-start {
315
- stop-color: var-get($theme, 'fill-color-default-start');
316
- }
317
-
318
- %gradient-end {
319
- stop-color: var-get($theme, 'fill-color-default-end');
320
- }
316
+
317
+ %gradient-start {
318
+ stop-color: var-get($theme, 'fill-color-default-end');
319
+ }
320
+
321
+ %gradient-end {
322
+ stop-color: var-get($theme, 'fill-color-default-start');
323
+ }
321
324
 
322
325
  @keyframes igx-indeterminate-accordion {
323
326
  0% {
@@ -107,12 +107,12 @@
107
107
  @extend %filter-tree__expression-item !optional;
108
108
  }
109
109
 
110
- @include e(expression-item-ghost) {
110
+ @include e(expression-item-drop-ghost) {
111
111
  @extend %filter-tree__expression-item-ghost !optional;
112
112
  }
113
113
 
114
- @include e(expression-item-drop-ghost) {
115
- @extend %filter-tree__expression-drop-item-ghost !optional;
114
+ @include e(expression-item-keyboard-ghost) {
115
+ @extend %filter-tree__expression-item-keyboard-ghost !optional;
116
116
  }
117
117
 
118
118
  @include e(expression-column) {
@@ -480,19 +480,39 @@
480
480
 
481
481
 
482
482
  %filter-tree__expression-item-ghost {
483
- &.igx-chip__item {
483
+ .igx-chip__item {
484
484
  @include type-style('body-2');
485
485
 
486
486
  --ig-body-2-text-transform: unset;
487
487
 
488
488
  padding-inline: rem(32px);
489
- }
490
489
 
491
- color: color($color: 'gray', $variant: if($theme-variant == 'light', 600, 900));
492
- border: rem(1px) dashed color($color: 'gray', $variant: if($theme-variant == 'light', 600, 300));
493
- background: transparent;
490
+ color: color($color: 'gray', $variant: if($theme-variant == 'light', 600, 900));
491
+ border: rem(1px) dashed color($color: 'gray', $variant: if($theme-variant == 'light', 600, 300));
492
+ background: transparent;
493
+ }
494
494
  }
495
495
 
496
+ %filter-tree__expression-item-keyboard-ghost {
497
+ .igx-chip__item {
498
+ box-shadow: var(--ghost-shadow);
499
+ background: var(--ghost-background);
500
+ color: var(--focus-text-color);
501
+ }
502
+
503
+ .igx-chip:hover {
504
+ .igx-chip__item {
505
+ box-shadow: var(--ghost-shadow);
506
+ background: var(--ghost-background);
507
+ color: var(--focus-text-color);
508
+
509
+ @if $variant == 'indigo' {
510
+ border-color: var(--border-color);
511
+ }
512
+ }
513
+ }
514
+ }
515
+
496
516
  %filter-tree__expression-column {
497
517
  padding: 0 rem(8px);
498
518
  }
@@ -132,56 +132,6 @@
132
132
  }
133
133
  }
134
134
 
135
- @include m(invalid) {
136
- @include e(composite) {
137
- @extend %switch-composite--invalid !optional;
138
- }
139
-
140
- &:hover {
141
- @include e(ripple) {
142
- @extend %switch-ripple--hover !optional;
143
- @extend %switch-ripple--hover-invalid !optional;
144
- }
145
-
146
- @include e(composite) {
147
- @extend %switch-composite--invalid--hover !optional;
148
- }
149
- }
150
-
151
- &:active {
152
- @include e(ripple) {
153
- @extend %switch-ripple--hover !optional;
154
- @extend %switch-ripple--hover-invalid !optional;
155
- @extend %switch-ripple--pressed !optional;
156
- }
157
- }
158
-
159
- @include e(label) {
160
- @extend %switch-label--invalid !optional;
161
- }
162
-
163
- @include e(label, $m: before) {
164
- @extend %switch-label--invalid !optional;
165
- }
166
-
167
- @include e(thumb) {
168
- @extend %switch-thumb--invalid !optional;
169
- }
170
- }
171
-
172
- @include mx(invalid, checked) {
173
- @include e(thumb) {
174
- @extend %switch-thumb--x--invalid !optional;
175
- }
176
-
177
- &:hover {
178
- @include e(ripple) {
179
- @extend %switch-ripple--hover !optional;
180
- @extend %switch-ripple--hover-checked-invalid !optional;
181
- }
182
- }
183
- }
184
-
185
135
  @include m(disabled) {
186
136
  @extend %switch-display--disabled !optional;
187
137
 
@@ -202,26 +152,11 @@
202
152
  }
203
153
  }
204
154
 
205
- @include mx(disabled, invalid) {
206
- @include e(thumb) {
207
- @extend %switch-thumb--disabled !optional;
208
- }
209
- }
210
-
211
155
  @include mx(focused, checked) {
212
156
  @include e(ripple) {
213
157
  @extend %switch-ripple--focused !optional;
214
158
  @extend %switch-ripple--focused-checked !optional;
215
159
  }
216
160
  }
217
-
218
- @include mx(focused, invalid) {
219
- @include e(ripple) {
220
- @extend %switch-ripple--focused !optional;
221
- @extend %switch-ripple--focused-invalid !optional;
222
- }
223
-
224
- @extend %igx-switch--focused--invalid !optional;
225
- }
226
161
  }
227
162
  }