igniteui-angular 19.2.15 → 19.2.17

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 (36) hide show
  1. package/fesm2022/igniteui-angular.mjs +106 -39
  2. package/fesm2022/igniteui-angular.mjs.map +1 -1
  3. package/lib/combo/combo.common.d.ts +4 -0
  4. package/lib/combo/combo.component.d.ts +8 -0
  5. package/lib/core/i18n/combo-resources.d.ts +2 -0
  6. package/lib/core/styles/components/combo/_combo-theme.scss +8 -0
  7. package/lib/drop-down/drop-down.common.d.ts +1 -0
  8. package/lib/grids/grid/grid-validation.service.d.ts +12 -1
  9. package/lib/simple-combo/simple-combo.component.d.ts +4 -0
  10. package/package.json +1 -1
  11. package/styles/igniteui-angular-dark.css +1 -1
  12. package/styles/igniteui-angular.css +1 -1
  13. package/styles/igniteui-bootstrap-dark.css +1 -1
  14. package/styles/igniteui-bootstrap-light.css +1 -1
  15. package/styles/igniteui-dark-green.css +1 -1
  16. package/styles/igniteui-fluent-dark-excel.css +1 -1
  17. package/styles/igniteui-fluent-dark-word.css +1 -1
  18. package/styles/igniteui-fluent-dark.css +1 -1
  19. package/styles/igniteui-fluent-light-excel.css +1 -1
  20. package/styles/igniteui-fluent-light-word.css +1 -1
  21. package/styles/igniteui-fluent-light.css +1 -1
  22. package/styles/igniteui-indigo-dark.css +1 -1
  23. package/styles/igniteui-indigo-light.css +1 -1
  24. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  25. package/styles/maps/igniteui-angular.css.map +1 -1
  26. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  27. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  28. package/styles/maps/igniteui-dark-green.css.map +1 -1
  29. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  30. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  31. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  32. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  33. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  34. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  35. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  36. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -780,6 +780,10 @@ export declare abstract class IgxComboBaseDirective implements IgxComboBase, Aft
780
780
  /** @hidden @internal */
781
781
  handleKeyDown(event: KeyboardEvent): void;
782
782
  /** @hidden @internal */
783
+ handleToggleKeyDown(eventArgs: KeyboardEvent): void;
784
+ /** @hidden @internal */
785
+ getAriaLabel(): string;
786
+ /** @hidden @internal */
783
787
  registerOnChange(fn: any): void;
784
788
  /** @hidden @internal */
785
789
  registerOnTouched(fn: any): void;
@@ -121,10 +121,18 @@ export declare class IgxComboComponent extends IgxComboBaseDirective implements
121
121
  * @hidden @internal
122
122
  */
123
123
  get context(): any;
124
+ /**
125
+ * @hidden @internal
126
+ */
127
+ clearInput(event: Event): void;
124
128
  /**
125
129
  * @hidden @internal
126
130
  */
127
131
  handleClearItems(event: Event): void;
132
+ /**
133
+ * @hidden @internal
134
+ */
135
+ handleClearKeyDown(eventArgs: KeyboardEvent): void;
128
136
  /**
129
137
  * Select defined items
130
138
  *
@@ -3,5 +3,7 @@ export interface IComboResourceStrings {
3
3
  igx_combo_filter_search_placeholder?: string;
4
4
  igx_combo_addCustomValues_placeholder?: string;
5
5
  igx_combo_clearItems_placeholder?: string;
6
+ igx_combo_aria_label_options?: string;
7
+ igx_combo_aria_label_no_options?: string;
6
8
  }
7
9
  export declare const ComboResourceStringsEN: IComboResourceStrings;
@@ -276,11 +276,19 @@
276
276
  %igx-combo__toggle-button {
277
277
  color: var-get($theme, 'toggle-button-foreground-focus');
278
278
  background: var-get($theme, 'toggle-button-background-focus');
279
+
280
+ &:focus {
281
+ color: color($color: 'secondary');
282
+ }
279
283
  }
280
284
 
281
285
  %igx-combo__clear-button {
282
286
  color: var-get($theme, 'clear-button-foreground-focus');
283
287
  background: var-get($theme, 'clear-button-background-focus');
288
+
289
+ &:focus {
290
+ color: color($color: 'secondary');
291
+ }
284
292
  }
285
293
  }
286
294
 
@@ -12,6 +12,7 @@ export declare const DropDownActionKey: {
12
12
  ESCAPE: "escape";
13
13
  ENTER: "enter";
14
14
  SPACE: "space";
15
+ TAB: "tab";
15
16
  };
16
17
  export type DropDownActionKey = (typeof DropDownActionKey)[keyof typeof DropDownActionKey];
17
18
  /**
@@ -25,8 +25,11 @@ export declare class IgxGridValidationService {
25
25
  /**
26
26
  * @hidden
27
27
  * @internal
28
+ Wraps the provided path into an array. This way FormGroup.get will return proper result.
29
+ Otherwise, if the path is a string (e.g. 'address.street'), FormGroup.get will treat it as there is a nested structure
30
+ and will look for control with a name of 'address' which returns undefined.
28
31
  */
29
- private getFieldKey;
32
+ private getFormControlPath;
30
33
  /**
31
34
  * @hidden
32
35
  * @internal
@@ -42,6 +45,14 @@ export declare class IgxGridValidationService {
42
45
  * @internal
43
46
  */
44
47
  add(rowId: any, form: FormGroup): void;
48
+ /**
49
+ * Checks the validity of the native ngControl
50
+ */
51
+ isFieldInvalid(formGroup: FormGroup, fieldName: string): boolean;
52
+ /**
53
+ * Checks the validity of the native ngControl after edit
54
+ */
55
+ isFieldValidAfterEdit(formGroup: FormGroup, fieldName: string): boolean;
45
56
  /**
46
57
  * @hidden
47
58
  * @internal
@@ -124,8 +124,12 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
124
124
  /** @hidden @internal */
125
125
  getEditElement(): HTMLElement;
126
126
  /** @hidden @internal */
127
+ clearInput(event: Event): void;
128
+ /** @hidden @internal */
127
129
  handleClear(event: Event): void;
128
130
  /** @hidden @internal */
131
+ handleClearKeyDown(event: KeyboardEvent): void;
132
+ /** @hidden @internal */
129
133
  handleOpened(): void;
130
134
  /** @hidden @internal */
131
135
  handleClosing(e: IBaseCancelableBrowserEventArgs): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "19.2.15",
3
+ "version": "19.2.17",
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",