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.
- package/esm2022/lib/combo/combo.common.mjs +2 -10
- package/esm2022/lib/combo/combo.component.mjs +3 -3
- package/esm2022/lib/core/i18n/combo-resources.mjs +4 -2
- package/esm2022/lib/core/i18n/grid-resources.mjs +2 -1
- package/esm2022/lib/grids/grid/grid.component.mjs +6 -5
- package/esm2022/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +6 -5
- package/esm2022/lib/grids/state.directive.mjs +10 -4
- package/esm2022/lib/grids/tree-grid/tree-grid.component.mjs +6 -5
- package/esm2022/lib/services/excel/excel-files.mjs +26 -5
- package/esm2022/lib/simple-combo/simple-combo.component.mjs +16 -8
- package/fesm2022/igniteui-angular.mjs +67 -35
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/i18n/combo-resources.d.ts +2 -0
- package/lib/core/i18n/grid-resources.d.ts +1 -0
- package/lib/grids/tree-grid/tree-grid.component.d.ts +9 -1
- package/lib/simple-combo/simple-combo.component.d.ts +4 -3
- package/package.json +1 -1
|
@@ -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