igniteui-angular 17.2.15 → 17.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.
@@ -1,4 +1,6 @@
1
1
  export interface IComboResourceStrings {
2
2
  igx_combo_empty_message?: string;
3
+ igx_combo_addCustomValues_placeholder?: string;
4
+ igx_combo_clearItems_placeholder?: string;
3
5
  }
4
6
  export declare const ComboResourceStringsEN: IComboResourceStrings;
@@ -110,6 +110,7 @@ export interface IGridResourceStrings {
110
110
  igx_grid_pinning_uncheck_all_label?: string;
111
111
  igx_grid_row_edit_btn_done?: string;
112
112
  igx_grid_row_edit_btn_cancel?: string;
113
+ igx_grid_row_edit_text?: string;
113
114
  igx_grid_toolbar_actions_filter_prompt?: string;
114
115
  igx_grid_toolbar_pinning_button_tooltip?: string;
115
116
  igx_grid_toolbar_hiding_button_tooltip?: string;
@@ -452,5 +452,13 @@ export declare class IgxTreeGridComponent extends IgxGridBaseDirective implement
452
452
  private handleCascadeSelection;
453
453
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxTreeGridComponent, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, null, null, { optional: true; }]>;
454
454
  static ɵcmp: i0.ɵɵComponentDeclaration<IgxTreeGridComponent, "igx-tree-grid", never, { "childDataKey": { "alias": "childDataKey"; "required": false; }; "foreignKey": { "alias": "foreignKey"; "required": false; }; "hasChildrenKey": { "alias": "hasChildrenKey"; "required": false; }; "cascadeOnDelete": { "alias": "cascadeOnDelete"; "required": false; }; "loadChildrenOnDemand": { "alias": "loadChildrenOnDemand"; "required": false; }; "id": { "alias": "id"; "required": false; }; "data": { "alias": "data"; "required": false; }; "expansionDepth": { "alias": "expansionDepth"; "required": false; }; "rowLoadingIndicatorTemplate": { "alias": "rowLoadingIndicatorTemplate"; "required": false; }; }, {}, ["treeGroupArea", "rowLoadingTemplate"], ["igx-grid-toolbar", "igx-tree-grid-group-by-area", "igx-grid-footer", "igx-paginator"], true, never>;
455
- static ngAcceptInputType_cascadeOnDelete: unknown;
455
+ static ngAcceptInputType_cascadeOnDelete: unknown /**
456
+ * Returns the `IgxTreeGridRow` by index.
457
+ *
458
+ * @example
459
+ * ```typescript
460
+ * const myRow = treeGrid.getRowByIndex(1);
461
+ * ```
462
+ * @param index
463
+ */;
456
464
  }
@@ -1,5 +1,5 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, EventEmitter, Injector } from '@angular/core';
2
- import { ControlValueAccessor } from '@angular/forms';
2
+ import { ControlValueAccessor, FormGroupDirective } from '@angular/forms';
3
3
  import { IgxComboAddItemComponent } from '../combo/combo-add-item.component';
4
4
  import { IgxComboDropDownComponent } from '../combo/combo-dropdown.component';
5
5
  import { IgxComboAPIService } from '../combo/combo.api';
@@ -44,6 +44,7 @@ export interface ISimpleComboSelectionChangingEventArgs extends CancelableEventA
44
44
  */
45
45
  export declare class IgxSimpleComboComponent extends IgxComboBaseDirective implements ControlValueAccessor, AfterViewInit, DoCheck {
46
46
  private platformUtil;
47
+ private formGroupDirective?;
47
48
  /** @hidden @internal */
48
49
  dropdown: IgxComboDropDownComponent;
49
50
  /** @hidden @internal */
@@ -80,7 +81,7 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
80
81
  set searchValue(val: string);
81
82
  private get selectedItem();
82
83
  protected get hasSelectedItem(): boolean;
83
- constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, selectionService: IgxSelectionAPIService, comboAPI: IgxComboAPIService, _iconService: IgxIconService, platformUtil: PlatformUtil, _displayDensityOptions: IDisplayDensityOptions, _inputGroupType: IgxInputGroupType, _injector: Injector);
84
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, selectionService: IgxSelectionAPIService, comboAPI: IgxComboAPIService, _iconService: IgxIconService, platformUtil: PlatformUtil, _displayDensityOptions: IDisplayDensityOptions, _inputGroupType: IgxInputGroupType, _injector: Injector, formGroupDirective?: FormGroupDirective);
84
85
  /** @hidden @internal */
85
86
  onArrowDown(event: Event): void;
86
87
  /**
@@ -144,6 +145,6 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
144
145
  private getElementVal;
145
146
  private clear;
146
147
  private isValid;
147
- static ɵfac: i0.ɵɵFactoryDeclaration<IgxSimpleComboComponent, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
148
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxSimpleComboComponent, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
148
149
  static ɵcmp: i0.ɵɵComponentDeclaration<IgxSimpleComboComponent, "igx-simple-combo", never, {}, { "selectionChanging": "selectionChanging"; }, never, ["[igxLabel]", "igx-prefix", "igx-hint, [igxHint]", "igx-suffix"], true, never>;
149
150
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "17.2.15",
3
+ "version": "17.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",