igniteui-angular 19.2.9 → 19.2.11

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 (35) hide show
  1. package/fesm2022/igniteui-angular.mjs +17 -13
  2. package/fesm2022/igniteui-angular.mjs.map +1 -1
  3. package/lib/combo/combo.component.d.ts +1 -1
  4. package/lib/core/styles/components/_common/_igx-vhelper.scss +1 -0
  5. package/lib/core/styles/components/combo/_combo-theme.scss +10 -6
  6. package/lib/core/styles/components/drop-down/_drop-down-theme.scss +4 -0
  7. package/lib/core/styles/themes/_core.scss +6 -0
  8. package/lib/simple-combo/simple-combo.component.d.ts +1 -1
  9. package/package.json +1 -1
  10. package/styles/igniteui-angular-dark.css +1 -1
  11. package/styles/igniteui-angular.css +1 -1
  12. package/styles/igniteui-bootstrap-dark.css +1 -1
  13. package/styles/igniteui-bootstrap-light.css +1 -1
  14. package/styles/igniteui-dark-green.css +1 -1
  15. package/styles/igniteui-fluent-dark-excel.css +1 -1
  16. package/styles/igniteui-fluent-dark-word.css +1 -1
  17. package/styles/igniteui-fluent-dark.css +1 -1
  18. package/styles/igniteui-fluent-light-excel.css +1 -1
  19. package/styles/igniteui-fluent-light-word.css +1 -1
  20. package/styles/igniteui-fluent-light.css +1 -1
  21. package/styles/igniteui-indigo-dark.css +1 -1
  22. package/styles/igniteui-indigo-light.css +1 -1
  23. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  24. package/styles/maps/igniteui-angular.css.map +1 -1
  25. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  26. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  27. package/styles/maps/igniteui-dark-green.css.map +1 -1
  28. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  29. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  30. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  31. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  32. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  33. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  34. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  35. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -198,7 +198,7 @@ export declare class IgxComboComponent extends IgxComboBaseDirective implements
198
198
  /** Returns a string that should be populated in the combo's text box */
199
199
  private concatDisplayText;
200
200
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxComboComponent, [null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
201
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxComboComponent, "igx-combo", never, { "autoFocusSearch": { "alias": "autoFocusSearch"; "required": false; }; "disableFiltering": { "alias": "disableFiltering"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; }, { "selectionChanging": "selectionChanging"; }, never, ["[igxLabel]", "igx-prefix", "igx-hint, [igxHint]", "igx-suffix"], true, never>;
201
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxComboComponent, "igx-combo", never, { "autoFocusSearch": { "alias": "autoFocusSearch"; "required": false; }; "disableFiltering": { "alias": "disableFiltering"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; }, { "selectionChanging": "selectionChanging"; }, never, ["[igxLabel]", "igx-prefix,[igxPrefix]", "igx-hint, [igxHint]", "igx-suffix,[igxSuffix]"], true, never>;
202
202
  static ngAcceptInputType_autoFocusSearch: unknown;
203
203
  static ngAcceptInputType_disableFiltering: unknown;
204
204
  }
@@ -12,6 +12,7 @@
12
12
  position: absolute;
13
13
  top: 0;
14
14
  inset-inline-end: 0;
15
+ width: var(--vhelper-scrollbar-size);
15
16
  }
16
17
 
17
18
  %vhelper--horizontal {
@@ -165,18 +165,15 @@
165
165
  %igx-combo__case-icon,
166
166
  %igx-combo__case-icon--active {
167
167
  line-height: 0;
168
-
169
- igx-icon {
170
- --size: rem(18px);
171
- }
172
168
  }
173
169
 
174
170
  // The wrapping element here is needed
175
171
  // in order to override the !important rule of .igx-icon--inactive.
176
172
  %igx-combo__case-icon {
177
173
  igx-icon {
178
- // Important is needed since the .igx-icon--inactive has !important
179
- color: color($color: 'gray', $variant: 600) !important;
174
+ --igx-icon-disabled-color: var(--ig-gray-600);
175
+
176
+ opacity: 1;
180
177
  }
181
178
  }
182
179
 
@@ -244,6 +241,13 @@
244
241
  }
245
242
  }
246
243
 
244
+ @if $variant == 'fluent' or $variant == 'bootstrap' {
245
+ %igx-combo__search {
246
+ --igx-input-group-input-suffix-background: transparent;
247
+ --igx-input-group-input-suffix-background--focused: transparent;
248
+ }
249
+ }
250
+
247
251
  .igx-input-group {
248
252
  %igx-combo__toggle-button {
249
253
  background: var-get($theme, 'toggle-button-background');
@@ -242,6 +242,10 @@
242
242
  overflow-x: hidden;
243
243
  -webkit-overflow-scrolling: touch;
244
244
  position: relative;
245
+
246
+ igx-display-container {
247
+ padding-inline-end: var(--vhelper-scrollbar-size);
248
+ }
245
249
  }
246
250
 
247
251
  %igx-drop-down__content {
@@ -124,6 +124,12 @@
124
124
  inherits: true;
125
125
  }
126
126
 
127
+ @property --vhelper-scollbar-size {
128
+ syntax: '<length>';
129
+ initial-value: 16px;
130
+ inherits: true;
131
+ }
132
+
127
133
  // Component styles
128
134
  @include ripple.component();
129
135
  @include action-strip.component();
@@ -145,5 +145,5 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
145
145
  private clear;
146
146
  private isValid;
147
147
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxSimpleComboComponent, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
148
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxSimpleComboComponent, "igx-simple-combo", never, {}, { "selectionChanging": "selectionChanging"; }, never, ["[igxLabel]", "igx-prefix", "igx-hint, [igxHint]", "igx-suffix"], true, never>;
148
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxSimpleComboComponent, "igx-simple-combo", never, {}, { "selectionChanging": "selectionChanging"; }, never, ["[igxLabel]", "igx-prefix,[igxPrefix]", "igx-hint, [igxHint]", "igx-suffix,[igxSuffix]"], true, never>;
149
149
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "19.2.9",
3
+ "version": "19.2.11",
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",