igniteui-webcomponents-grids 6.0.2 → 6.0.3

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.
@@ -1043,7 +1043,7 @@ export declare interface IgcColumnComponentEventMap {
1043
1043
  * ```
1044
1044
  *
1045
1045
  */
1046
- hiddenChange: CustomEvent;
1046
+ hiddenChange: CustomEvent<boolean>;
1047
1047
 
1048
1048
  /**
1049
1049
  * Emitted when the column expanded or collapsed.
@@ -1054,7 +1054,7 @@ export declare interface IgcColumnComponentEventMap {
1054
1054
  * ```
1055
1055
  *
1056
1056
  */
1057
- expandedChange: CustomEvent;
1057
+ expandedChange: CustomEvent<boolean>;
1058
1058
 
1059
1059
  /**
1060
1060
  * Emitted when the column width changes.
@@ -1065,7 +1065,7 @@ export declare interface IgcColumnComponentEventMap {
1065
1065
  * ```
1066
1066
  *
1067
1067
  */
1068
- widthChange: CustomEvent;
1068
+ widthChange: CustomEvent<string>;
1069
1069
 
1070
1070
  /**
1071
1071
  * Emitted when the column is pinned/unpinned.
@@ -1076,7 +1076,7 @@ export declare interface IgcColumnComponentEventMap {
1076
1076
  * ```
1077
1077
  *
1078
1078
  */
1079
- pinnedChange: CustomEvent;
1079
+ pinnedChange: CustomEvent<boolean>;
1080
1080
 
1081
1081
  }
1082
1082
 
@@ -0,0 +1,14 @@
1
+
2
+ import { IgcForOfDataChangingEventArgs } from './igc-for-of-data-changing-event-args';
3
+
4
+
5
+
6
+
7
+
8
+ export declare class IgcForOfDataChangeEventArgs extends IgcForOfDataChangingEventArgs
9
+ {
10
+
11
+ }
12
+
13
+
14
+
@@ -5,6 +5,9 @@ import { IgcForOfState } from './igc-for-of-state';
5
5
 
6
6
 
7
7
 
8
+ /**
9
+ * @deprecated Use `IForOfDataChangeEventArgs` instead.
10
+ */
8
11
 
9
12
  export declare class IgcForOfDataChangingEventArgs extends IgcBaseEventArgs
10
13
  {
@@ -29,13 +29,12 @@ import { IgcGridKeydownEventArgs } from './igc-grid-keydown-event-args';
29
29
  import { IgcRowDragStartEventArgs } from './igc-row-drag-start-event-args';
30
30
  import { IgcRowDragEndEventArgs } from './igc-row-drag-end-event-args';
31
31
  import { IgcGridClipboardEvent } from './igc-grid-clipboard-event';
32
- import { IgcMap } from './igc-map';
33
32
  import { IgcRowToggleEventArgs } from './igc-row-toggle-event-args';
34
33
  import { IgcPinRowEventArgs } from './igc-pin-row-event-args';
35
34
  import { IgcActiveNodeChangeEventArgs } from './igc-active-node-change-event-args';
36
35
  import { IgcGridToolbarExportEventArgs } from './igc-grid-toolbar-export-event-args';
37
36
  import { IgcGridSelectionRange } from './igc-grid-selection-range';
38
- import { IgcForOfDataChangingEventArgs } from './igc-for-of-data-changing-event-args';
37
+ import { IgcForOfDataChangeEventArgs } from './igc-for-of-data-change-event-args';
39
38
  import { IgcGridTemplateContext } from './igc-grid-template-context';
40
39
  import { IgcRenderFunction } from './common';
41
40
  import { IgcDataCloneStrategy } from './igc-data-clone-strategy';
@@ -997,6 +996,24 @@ public set selectedRows(value: any[]);
997
996
 
998
997
 
999
998
 
999
+ /* blazorCSSuppress */
1000
+ /**
1001
+ * Gets/Sets a list of key-value pairs [row ID, expansion state].
1002
+ *
1003
+ * @remarks
1004
+ * Includes only states that differ from the default one.
1005
+ * Supports two-way binding.
1006
+ * @example
1007
+ * ```html
1008
+ * <igx-grid #grid [data]="data" [(expansionStates)]="model.expansionStates">
1009
+ * </igx-grid>
1010
+ * ```
1011
+ */
1012
+ public set expansionStates(value: Map<any, boolean>);
1013
+ public get expansionStates(): Map<any, boolean>;
1014
+
1015
+
1016
+
1000
1017
  /**
1001
1018
  * Gets/Sets the outlet used to attach the grid's overlays to.
1002
1019
  *
@@ -2461,7 +2478,8 @@ rowDragEnd: CustomEvent<IgcRowDragEndEventArgs>;
2461
2478
  */
2462
2479
  gridCopy: CustomEvent<IgcGridClipboardEvent>;
2463
2480
 
2464
- /**
2481
+ /* blazorCSSuppress */
2482
+ /**
2465
2483
  * Emitted when the rows are expanded or collapsed.
2466
2484
  *
2467
2485
  * @example
@@ -2469,7 +2487,7 @@ gridCopy: CustomEvent<IgcGridClipboardEvent>;
2469
2487
  * <igx-grid [data]="employeeData" (expansionStatesChange)="expansionStatesChange($event)" [autoGenerate]="true"></igx-grid>
2470
2488
  * ```
2471
2489
  */
2472
- expansionStatesChange: CustomEvent<IgcMap>;
2490
+ expansionStatesChange: CustomEvent<Map<any, boolean>>;
2473
2491
 
2474
2492
  /* blazorInclude */
2475
2493
  /**
@@ -2556,7 +2574,7 @@ toolbarExporting: CustomEvent<IgcGridToolbarExportEventArgs>;
2556
2574
  rangeSelected: CustomEvent<IgcGridSelectionRange>;
2557
2575
 
2558
2576
  /** Emitted after the ngAfterViewInit hook. At this point the grid exists in the DOM */
2559
- rendered: CustomEvent;
2577
+ rendered: CustomEvent<boolean>;
2560
2578
 
2561
2579
  /**
2562
2580
  * Emitted before the grid's data view is changed because of a data operation, rebinding, etc.
@@ -2566,7 +2584,7 @@ rangeSelected: CustomEvent<IgcGridSelectionRange>;
2566
2584
  * <igx-grid #grid [data]="localData" [autoGenerate]="true" (dataChanging)='handleDataChangingEvent()'></igx-grid>
2567
2585
  * ```
2568
2586
  */
2569
- dataChanging: CustomEvent<IgcForOfDataChangingEventArgs>;
2587
+ dataChanging: CustomEvent<IgcForOfDataChangeEventArgs>;
2570
2588
 
2571
2589
  /**
2572
2590
  * Emitted after the grid's data view is changed because of a data operation, rebinding, etc.
@@ -2576,7 +2594,7 @@ dataChanging: CustomEvent<IgcForOfDataChangingEventArgs>;
2576
2594
  * <igx-grid #grid [data]="localData" [autoGenerate]="true" (dataChanged)='handleDataChangedEvent()'></igx-grid>
2577
2595
  * ```
2578
2596
  */
2579
- dataChanged: CustomEvent;
2597
+ dataChanged: CustomEvent<IgcForOfDataChangeEventArgs>;
2580
2598
 
2581
2599
  }
2582
2600
 
@@ -145,6 +145,12 @@
145
145
  public igx_grid_filter_all?: string;
146
146
 
147
147
 
148
+ public igx_grid_filter_in?: string;
149
+
150
+
151
+ public igx_grid_filter_notIn?: string;
152
+
153
+
148
154
  public igx_grid_filter_condition_placeholder?: string;
149
155
 
150
156
 
@@ -277,6 +283,9 @@
277
283
  public igx_grid_advanced_filter_title?: string;
278
284
 
279
285
 
286
+ public igx_grid_advanced_filter_from_label?: string;
287
+
288
+
280
289
  public igx_grid_advanced_filter_and_group?: string;
281
290
 
282
291
 
@@ -301,6 +310,15 @@
301
310
  public igx_grid_advanced_filter_add_condition?: string;
302
311
 
303
312
 
313
+ public igx_grid_advanced_filter_add_condition_root?: string;
314
+
315
+
316
+ public igx_grid_advanced_filter_add_group?: string;
317
+
318
+
319
+ public igx_grid_advanced_filter_add_group_root?: string;
320
+
321
+
304
322
  public igx_grid_advanced_filter_ungroup?: string;
305
323
 
306
324
 
@@ -319,6 +337,30 @@
319
337
  public igx_grid_advanced_filter_value_placeholder?: string;
320
338
 
321
339
 
340
+ public igx_grid_advanced_filter_query_value_placeholder?: string;
341
+
342
+
343
+ public igx_grid_advanced_filter_switch_group?: string;
344
+
345
+
346
+ public igx_grid_advanced_filter_dialog_title?: string;
347
+
348
+
349
+ public igx_grid_advanced_filter_dialog_message?: string;
350
+
351
+
352
+ public igx_grid_advanced_filter_dialog_checkbox_text?: string;
353
+
354
+
355
+ public igx_grid_advanced_filter_drop_ghost_text?: string;
356
+
357
+
358
+ public igx_grid_advanced_filter_select_entity?: string;
359
+
360
+
361
+ public igx_grid_advanced_filter_select_return_field_single?: string;
362
+
363
+
322
364
  public igx_grid_pinned_row_indicator?: string;
323
365
 
324
366
 
@@ -81,7 +81,7 @@ exportStarted: CustomEvent<IgcExporterEventArgs>;
81
81
  /**
82
82
  * Emitted on successful ending of an export operation.
83
83
  */
84
- exportEnded: CustomEvent;
84
+ exportEnded: CustomEvent<void>;
85
85
 
86
86
  }
87
87
 
@@ -15,7 +15,6 @@ import { IgcGridEditingActionsComponent } from './igc-grid-editing-actions-compo
15
15
  import { IgcGridPinningActionsComponent } from './igc-grid-pinning-actions-component';
16
16
  import { IgcRowIslandComponent } from './igc-row-island-component';
17
17
  import { IgcFilteringExpressionsTree } from './igc-filtering-expressions-tree';
18
- import { IgcEntityType } from './igc-entity-type';
19
18
  import { IgcCellType } from './igc-cell-type';
20
19
  import { IgcRowType } from './igc-row-type';
21
20
  import { IgcHierarchicalGridBaseDirectiveEventMap } from './igc-hierarchical-grid-base-directive';
@@ -132,24 +131,6 @@ import { IgcHierarchicalGridBaseDirectiveEventMap } from './igc-hierarchical-gri
132
131
  public set expandChildren(value: boolean);
133
132
  public get expandChildren(): boolean;
134
133
 
135
-
136
-
137
- /**
138
- * Gets/Sets the schema for the hierarchical grid.
139
- * This schema defines the structure and properties of the data displayed in the grid.
140
- * @Input()
141
- * @param {EntityType[]} entities - An array of EntityType objects representing the grid's schema.
142
- * @remarks
143
- * This property is required in remote data filtering scenarios.
144
- * @example
145
- * ```typescript
146
- * const schema = this.grid.schema;
147
- * this.grid.schema = [{ name: 'Products', fields: [...], childEntities: [...] }];
148
- * ```
149
- */
150
- public set schema(value: IgcEntityType[]);
151
- public get schema(): IgcEntityType[];
152
-
153
134
 
154
135
 
155
136
  /**
@@ -143,7 +143,7 @@ export declare interface IgcPivotDataSelectorComponentEventMap {
143
143
  * (columnsExpandedChange)="columnsExpandedChange($event)"></igx-pivot-data-selector>
144
144
  * ```
145
145
  */
146
- columnsExpandedChange: CustomEvent;
146
+ columnsExpandedChange: CustomEvent<boolean>;
147
147
 
148
148
  /**
149
149
  * Emitted when the rows panel is expanded or collapsed.
@@ -154,7 +154,7 @@ export declare interface IgcPivotDataSelectorComponentEventMap {
154
154
  * (rowsExpandedChange)="rowsExpandedChange($event)"></igx-pivot-data-selector>
155
155
  * ```
156
156
  */
157
- rowsExpandedChange: CustomEvent;
157
+ rowsExpandedChange: CustomEvent<boolean>;
158
158
 
159
159
  /**
160
160
  * Emitted when the filters panel is expanded or collapsed.
@@ -165,7 +165,7 @@ export declare interface IgcPivotDataSelectorComponentEventMap {
165
165
  * (filtersExpandedChange)="filtersExpandedChange($event)"></igx-pivot-data-selector>
166
166
  * ```
167
167
  */
168
- filtersExpandedChange: CustomEvent;
168
+ filtersExpandedChange: CustomEvent<boolean>;
169
169
 
170
170
  /**
171
171
  * Emitted when the values panel is expanded or collapsed.
@@ -176,7 +176,7 @@ export declare interface IgcPivotDataSelectorComponentEventMap {
176
176
  * (valuesExpandedChange)="valuesExpandedChange($event)"></igx-pivot-data-selector>
177
177
  * ```
178
178
  */
179
- valuesExpandedChange: CustomEvent;
179
+ valuesExpandedChange: CustomEvent<boolean>;
180
180
 
181
181
  }
182
182
 
@@ -31,13 +31,12 @@ import { IgcGridKeydownEventArgs } from './igc-grid-keydown-event-args';
31
31
  import { IgcRowDragStartEventArgs } from './igc-row-drag-start-event-args';
32
32
  import { IgcRowDragEndEventArgs } from './igc-row-drag-end-event-args';
33
33
  import { IgcGridClipboardEvent } from './igc-grid-clipboard-event';
34
- import { IgcMap } from './igc-map';
35
34
  import { IgcRowToggleEventArgs } from './igc-row-toggle-event-args';
36
35
  import { IgcPinRowEventArgs } from './igc-pin-row-event-args';
37
36
  import { IgcActiveNodeChangeEventArgs } from './igc-active-node-change-event-args';
38
37
  import { IgcGridToolbarExportEventArgs } from './igc-grid-toolbar-export-event-args';
39
38
  import { IgcGridSelectionRange } from './igc-grid-selection-range';
40
- import { IgcForOfDataChangingEventArgs } from './igc-for-of-data-changing-event-args';
39
+ import { IgcForOfDataChangeEventArgs } from './igc-for-of-data-change-event-args';
41
40
  import { IgcGridToolbarTemplateContext } from './igc-grid-toolbar-template-context';
42
41
  import { IgcRenderFunction } from './common';
43
42
  import { IgcGridPaginatorTemplateContext } from './igc-grid-paginator-template-context';
@@ -1025,6 +1024,24 @@ public set selectedRows(value: any[]);
1025
1024
  public set columnSelection(value: GridSelectionMode);
1026
1025
  public get columnSelection(): GridSelectionMode;
1027
1026
 
1027
+
1028
+
1029
+ /* blazorCSSuppress */
1030
+ /**
1031
+ * Gets/Sets a list of key-value pairs [row ID, expansion state].
1032
+ *
1033
+ * @remarks
1034
+ * Includes only states that differ from the default one.
1035
+ * Supports two-way binding.
1036
+ * @example
1037
+ * ```html
1038
+ * <igx-grid #grid [data]="data" [(expansionStates)]="model.expansionStates">
1039
+ * </igx-grid>
1040
+ * ```
1041
+ */
1042
+ public set expansionStates(value: Map<any, boolean>);
1043
+ public get expansionStates(): Map<any, boolean>;
1044
+
1028
1045
 
1029
1046
 
1030
1047
 
@@ -2458,7 +2475,8 @@ rowDragEnd: CustomEvent<IgcRowDragEndEventArgs>;
2458
2475
  */
2459
2476
  gridCopy: CustomEvent<IgcGridClipboardEvent>;
2460
2477
 
2461
- /**
2478
+ /* blazorCSSuppress */
2479
+ /**
2462
2480
  * Emitted when the rows are expanded or collapsed.
2463
2481
  *
2464
2482
  * @example
@@ -2466,7 +2484,7 @@ gridCopy: CustomEvent<IgcGridClipboardEvent>;
2466
2484
  * <igx-grid [data]="employeeData" (expansionStatesChange)="expansionStatesChange($event)" [autoGenerate]="true"></igx-grid>
2467
2485
  * ```
2468
2486
  */
2469
- expansionStatesChange: CustomEvent<IgcMap>;
2487
+ expansionStatesChange: CustomEvent<Map<any, boolean>>;
2470
2488
 
2471
2489
  /* blazorInclude */
2472
2490
  /**
@@ -2553,7 +2571,7 @@ toolbarExporting: CustomEvent<IgcGridToolbarExportEventArgs>;
2553
2571
  rangeSelected: CustomEvent<IgcGridSelectionRange>;
2554
2572
 
2555
2573
  /** Emitted after the ngAfterViewInit hook. At this point the grid exists in the DOM */
2556
- rendered: CustomEvent;
2574
+ rendered: CustomEvent<boolean>;
2557
2575
 
2558
2576
  /**
2559
2577
  * Emitted before the grid's data view is changed because of a data operation, rebinding, etc.
@@ -2563,7 +2581,7 @@ rangeSelected: CustomEvent<IgcGridSelectionRange>;
2563
2581
  * <igx-grid #grid [data]="localData" [autoGenerate]="true" (dataChanging)='handleDataChangingEvent()'></igx-grid>
2564
2582
  * ```
2565
2583
  */
2566
- dataChanging: CustomEvent<IgcForOfDataChangingEventArgs>;
2584
+ dataChanging: CustomEvent<IgcForOfDataChangeEventArgs>;
2567
2585
 
2568
2586
  /**
2569
2587
  * Emitted after the grid's data view is changed because of a data operation, rebinding, etc.
@@ -2573,7 +2591,7 @@ dataChanging: CustomEvent<IgcForOfDataChangingEventArgs>;
2573
2591
  * <igx-grid #grid [data]="localData" [autoGenerate]="true" (dataChanged)='handleDataChangedEvent()'></igx-grid>
2574
2592
  * ```
2575
2593
  */
2576
- dataChanged: CustomEvent;
2594
+ dataChanged: CustomEvent<IgcForOfDataChangeEventArgs>;
2577
2595
 
2578
2596
  }
2579
2597
 
@@ -45,7 +45,6 @@ export type { IgcCellType } from "./igc-cell-type";
45
45
  export { type IgcHierarchicalGridComponentEventMap, IgcHierarchicalGridComponent } from "./igc-hierarchical-grid-component";
46
46
  export type { IgcHierarchicalGridBaseDirectiveEventMap, IgcHierarchicalGridBaseDirective } from "./igc-hierarchical-grid-base-directive";
47
47
  export { type IgcRowIslandComponentEventMap, IgcRowIslandComponent } from "./igc-row-island-component";
48
- export type { IgcEntityType } from "./igc-entity-type";
49
48
  export { type IgcPivotDataSelectorComponentEventMap, IgcPivotDataSelectorComponent } from "./igc-pivot-data-selector-component";
50
49
  export { IgcPivotDateDimension } from "./igc-pivot-date-dimension";
51
50
  export type { GridColumnDataType } from "./grid-column-data-type";
@@ -137,7 +136,7 @@ export type { IgcRowToggleEventArgs } from "./igc-row-toggle-event-args";
137
136
  export type { IgcPinRowEventArgs } from "./igc-pin-row-event-args";
138
137
  export type { IgcActiveNodeChangeEventArgs } from "./igc-active-node-change-event-args";
139
138
  export type { IgcGridToolbarExportEventArgs } from "./igc-grid-toolbar-export-event-args";
140
- export type { IgcForOfDataChangingEventArgs } from "./igc-for-of-data-changing-event-args";
139
+ export type { IgcForOfDataChangeEventArgs } from "./igc-for-of-data-change-event-args";
141
140
  export type { IgcActionStripToken } from "./igc-action-strip-token";
142
141
  export type { IgcGridRowDragGhostContext } from "./igc-grid-row-drag-ghost-context";
143
142
  export type { IgcGridRowEditTextTemplateContext } from "./igc-grid-row-edit-text-template-context";
@@ -170,7 +169,6 @@ export type { IgcGridValidationState } from "./igc-grid-validation-state";
170
169
  export type { IgcGridToolbarTemplateContext } from "./igc-grid-toolbar-template-context";
171
170
  export type { IgcGridPaginatorTemplateContext } from "./igc-grid-paginator-template-context";
172
171
  export type { IgcGridCreatedEventArgs } from "./igc-grid-created-event-args";
173
- export type { IgcFieldType } from "./igc-field-type";
174
172
  export type { IgcPivotDimensionStrategy } from "./igc-pivot-dimension-strategy";
175
173
  export type { IgcPivotKeys } from "./igc-pivot-keys";
176
174
  export type { PivotRowLayoutType } from "./pivot-row-layout-type";
@@ -188,6 +186,7 @@ export type { ValidationStatus } from "./validation-status";
188
186
  export type { IgcCancelableEventArgs } from "./igc-cancelable-event-args";
189
187
  export type { GridKeydownTargetType } from "./grid-keydown-target-type";
190
188
  export type { IgcExporterOptionsBase } from "./igc-exporter-options-base";
189
+ export type { IgcForOfDataChangingEventArgs } from "./igc-for-of-data-changing-event-args";
191
190
  export type { IgcHeaderType } from "./igc-header-type";
192
191
  export type { IgcPageCancellableEventArgs } from "./igc-page-cancellable-event-args";
193
192
  export type { IgcPageEventArgs } from "./igc-page-event-args";
@@ -197,7 +196,6 @@ export type { IgcHeadSelectorTemplateDetails } from "./igc-head-selector-templat
197
196
  export type { IgcRowSelectorTemplateDetails } from "./igc-row-selector-template-details";
198
197
  export type { IgcBaseSearchInfo } from "./igc-base-search-info";
199
198
  export type { IgcValidationErrors } from "./igc-validation-errors";
200
- export type { DataType } from "./data-type";
201
199
  export type { IgcPositionSettings } from "./igc-position-settings";
202
200
  export type { IgcRowExportingEventArgs } from "./igc-row-exporting-event-args";
203
201
  export type { IgcColumnExportingEventArgs } from "./igc-column-exporting-event-args";