igniteui-angular 19.2.18 → 19.2.20
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/fesm2022/igniteui-angular.mjs +294 -119
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/grids/cell.component.d.ts +2 -0
- package/lib/grids/common/grid.interface.d.ts +51 -2
- package/lib/grids/grid-base.directive.d.ts +5 -1
- package/lib/grids/headers/grid-header-row.component.d.ts +2 -2
- package/lib/grids/headers/grid-header.component.d.ts +17 -1
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +6 -0
- package/lib/grids/pivot-grid/pivot-header-row.component.d.ts +3 -2
- package/lib/grids/pivot-grid/pivot-row-dimension-header-group.component.d.ts +4 -0
- package/lib/grids/pivot-grid/pivot-row-dimension-mrl-row.component.d.ts +1 -0
- package/lib/grids/pivot-grid/pivot-row-header-group.component.d.ts +4 -0
- package/lib/grids/resizing/resizer.directive.d.ts +1 -1
- package/lib/icon/icon.component.d.ts +6 -1
- package/lib/query-builder/query-builder.component.d.ts +36 -8
- package/package.json +1 -1
|
@@ -374,6 +374,8 @@ export declare class IgxGridCellComponent implements OnInit, OnChanges, OnDestro
|
|
|
374
374
|
*/
|
|
375
375
|
displayPinnedChip: boolean;
|
|
376
376
|
protected get minHeight(): number;
|
|
377
|
+
protected get ariaRowIndex(): number;
|
|
378
|
+
protected get ariaColIndex(): number;
|
|
377
379
|
protected defaultCellTemplate: TemplateRef<any>;
|
|
378
380
|
protected defaultPinnedIndicator: TemplateRef<any>;
|
|
379
381
|
protected inlineEditorTemplate: TemplateRef<any>;
|
|
@@ -266,16 +266,53 @@ export interface RowType {
|
|
|
266
266
|
*/
|
|
267
267
|
unpin?: () => void;
|
|
268
268
|
}
|
|
269
|
+
/**
|
|
270
|
+
* Describes a field that can be used in the Grid and QueryBuilder components.
|
|
271
|
+
*/
|
|
269
272
|
export interface FieldType {
|
|
273
|
+
/**
|
|
274
|
+
* Display label for the field.
|
|
275
|
+
*/
|
|
270
276
|
label?: string;
|
|
277
|
+
/**
|
|
278
|
+
* The internal field name, used in expressions and queries.
|
|
279
|
+
*/
|
|
271
280
|
field: string;
|
|
281
|
+
/**
|
|
282
|
+
* Optional column header for UI display purposes.
|
|
283
|
+
*/
|
|
272
284
|
header?: string;
|
|
285
|
+
/**
|
|
286
|
+
* The data type of the field.
|
|
287
|
+
*/
|
|
273
288
|
dataType: DataType;
|
|
289
|
+
/**
|
|
290
|
+
* Options for the editor associated with this field.
|
|
291
|
+
*/
|
|
274
292
|
editorOptions?: IFieldEditorOptions;
|
|
293
|
+
/**
|
|
294
|
+
* Optional filtering operands that apply to this field.
|
|
295
|
+
*/
|
|
275
296
|
filters?: IgxFilteringOperand;
|
|
297
|
+
/**
|
|
298
|
+
* Optional arguments for any pipe applied to the field.
|
|
299
|
+
*/
|
|
276
300
|
pipeArgs?: IFieldPipeArgs;
|
|
301
|
+
/**
|
|
302
|
+
* Default time format for Date/Time fields.
|
|
303
|
+
*/
|
|
277
304
|
defaultTimeFormat?: string;
|
|
305
|
+
/**
|
|
306
|
+
* Default date/time format for Date/Time fields.
|
|
307
|
+
*/
|
|
278
308
|
defaultDateTimeFormat?: string;
|
|
309
|
+
/**
|
|
310
|
+
* Optional formatter function to transform the value before display.
|
|
311
|
+
*
|
|
312
|
+
* @param value - The value of the field.
|
|
313
|
+
* @param rowData - Optional row data that contains this field.
|
|
314
|
+
* @returns The formatted value.
|
|
315
|
+
*/
|
|
279
316
|
formatter?(value: any, rowData?: any): any;
|
|
280
317
|
}
|
|
281
318
|
/**
|
|
@@ -1059,7 +1096,7 @@ export interface GridType extends IGridDataBindable {
|
|
|
1059
1096
|
refreshSearch(): void;
|
|
1060
1097
|
getDefaultExpandState(record: any): boolean;
|
|
1061
1098
|
trackColumnChanges(index: number, column: any): any;
|
|
1062
|
-
getPossibleColumnWidth(): string;
|
|
1099
|
+
getPossibleColumnWidth(baseWidth?: number, minColumnWidth?: number): string;
|
|
1063
1100
|
resetHorizontalVirtualization(): void;
|
|
1064
1101
|
hasVerticalScroll(): boolean;
|
|
1065
1102
|
getVisibleContentHeight(): number;
|
|
@@ -1349,10 +1386,22 @@ export interface IClipboardOptions {
|
|
|
1349
1386
|
separator: string;
|
|
1350
1387
|
}
|
|
1351
1388
|
/**
|
|
1352
|
-
*
|
|
1389
|
+
* Describes an entity in the QueryBuilder.
|
|
1390
|
+
* An entity represents a logical grouping of fields and can have nested child entities.
|
|
1353
1391
|
*/
|
|
1354
1392
|
export interface EntityType {
|
|
1393
|
+
/**
|
|
1394
|
+
* The name of the entity.
|
|
1395
|
+
* Typically used as an identifier in expressions.
|
|
1396
|
+
*/
|
|
1355
1397
|
name: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* The list of fields that belong to this entity.
|
|
1400
|
+
*/
|
|
1356
1401
|
fields: FieldType[];
|
|
1402
|
+
/**
|
|
1403
|
+
* Optional child entities.
|
|
1404
|
+
* This allows building hierarchical or nested query structures.
|
|
1405
|
+
*/
|
|
1357
1406
|
childEntities?: EntityType[];
|
|
1358
1407
|
}
|
|
@@ -1227,6 +1227,8 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
1227
1227
|
private defaultRowEditTemplate;
|
|
1228
1228
|
private _dataRowList;
|
|
1229
1229
|
protected baseClass: string;
|
|
1230
|
+
protected get ariaColCount(): number;
|
|
1231
|
+
protected get ariaRowCount(): number;
|
|
1230
1232
|
/**
|
|
1231
1233
|
* Gets/Sets the resource strings.
|
|
1232
1234
|
*
|
|
@@ -2020,6 +2022,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
2020
2022
|
private _sortDescendingHeaderIconTemplate;
|
|
2021
2023
|
private _gridSize;
|
|
2022
2024
|
private _defaultRowHeight;
|
|
2025
|
+
private _rowCount;
|
|
2023
2026
|
/**
|
|
2024
2027
|
* @hidden @internal
|
|
2025
2028
|
*/
|
|
@@ -2933,7 +2936,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
2933
2936
|
/**
|
|
2934
2937
|
* @hidden @internal
|
|
2935
2938
|
*/
|
|
2936
|
-
getPossibleColumnWidth(baseWidth?: number): string;
|
|
2939
|
+
getPossibleColumnWidth(baseWidth?: number, minColumnWidth?: number): string;
|
|
2937
2940
|
/**
|
|
2938
2941
|
* @hidden @internal
|
|
2939
2942
|
*/
|
|
@@ -3547,6 +3550,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
3547
3550
|
*/
|
|
3548
3551
|
private clearActiveNode;
|
|
3549
3552
|
private getRecreatedTree;
|
|
3553
|
+
private _calculateRowCount;
|
|
3550
3554
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridBaseDirective, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
3551
3555
|
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxGridBaseDirective, never, never, { "snackbarDisplayTime": { "alias": "snackbarDisplayTime"; "required": false; }; "autoGenerate": { "alias": "autoGenerate"; "required": false; }; "autoGenerateExclude": { "alias": "autoGenerateExclude"; "required": false; }; "moving": { "alias": "moving"; "required": false; }; "emptyGridTemplate": { "alias": "emptyGridTemplate"; "required": false; }; "addRowEmptyTemplate": { "alias": "addRowEmptyTemplate"; "required": false; }; "loadingGridTemplate": { "alias": "loadingGridTemplate"; "required": false; }; "summaryRowHeight": { "alias": "summaryRowHeight"; "required": false; }; "dataCloneStrategy": { "alias": "dataCloneStrategy"; "required": false; }; "clipboardOptions": { "alias": "clipboardOptions"; "required": false; }; "rowClasses": { "alias": "rowClasses"; "required": false; }; "rowStyles": { "alias": "rowStyles"; "required": false; }; "primaryKey": { "alias": "primaryKey"; "required": false; }; "uniqueColumnValuesStrategy": { "alias": "uniqueColumnValuesStrategy"; "required": false; }; "dragGhostCustomTemplate": { "alias": "dragGhostCustomTemplate"; "required": false; }; "rowEditTextTemplate": { "alias": "rowEditTextTemplate"; "required": false; }; "rowAddTextTemplate": { "alias": "rowAddTextTemplate"; "required": false; }; "rowEditActionsTemplate": { "alias": "rowEditActionsTemplate"; "required": false; }; "rowExpandedIndicatorTemplate": { "alias": "rowExpandedIndicatorTemplate"; "required": false; }; "rowCollapsedIndicatorTemplate": { "alias": "rowCollapsedIndicatorTemplate"; "required": false; }; "headerExpandedIndicatorTemplate": { "alias": "headerExpandedIndicatorTemplate"; "required": false; }; "headerCollapsedIndicatorTemplate": { "alias": "headerCollapsedIndicatorTemplate"; "required": false; }; "excelStyleHeaderIconTemplate": { "alias": "excelStyleHeaderIconTemplate"; "required": false; }; "sortAscendingHeaderIconTemplate": { "alias": "sortAscendingHeaderIconTemplate"; "required": false; }; "sortDescendingHeaderIconTemplate": { "alias": "sortDescendingHeaderIconTemplate"; "required": false; }; "sortHeaderIconTemplate": { "alias": "sortHeaderIconTemplate"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "filteringLogic": { "alias": "filteringLogic"; "required": false; }; "filteringExpressionsTree": { "alias": "filteringExpressionsTree"; "required": false; }; "advancedFilteringExpressionsTree": { "alias": "advancedFilteringExpressionsTree"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "pagingMode": { "alias": "pagingMode"; "required": false; }; "hideRowSelectors": { "alias": "hideRowSelectors"; "required": false; }; "rowDraggable": { "alias": "rowDraggable"; "required": false; }; "validationTrigger": { "alias": "validationTrigger"; "required": false; }; "rowEditable": { "alias": "rowEditable"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "columnWidth": { "alias": "columnWidth"; "required": false; }; "emptyGridMessage": { "alias": "emptyGridMessage"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "emptyFilteredGridMessage": { "alias": "emptyFilteredGridMessage"; "required": false; }; "pinning": { "alias": "pinning"; "required": false; }; "allowFiltering": { "alias": "allowFiltering"; "required": false; }; "allowAdvancedFiltering": { "alias": "allowAdvancedFiltering"; "required": false; }; "filterMode": { "alias": "filterMode"; "required": false; }; "summaryPosition": { "alias": "summaryPosition"; "required": false; }; "summaryCalculationMode": { "alias": "summaryCalculationMode"; "required": false; }; "showSummaryOnCollapse": { "alias": "showSummaryOnCollapse"; "required": false; }; "filterStrategy": { "alias": "filterStrategy"; "required": false; }; "sortStrategy": { "alias": "sortStrategy"; "required": false; }; "sortingOptions": { "alias": "sortingOptions"; "required": false; }; "selectedRows": { "alias": "selectedRows"; "required": false; }; "headSelectorTemplate": { "alias": "headSelectorTemplate"; "required": false; }; "rowSelectorTemplate": { "alias": "rowSelectorTemplate"; "required": false; }; "dragIndicatorIconTemplate": { "alias": "dragIndicatorIconTemplate"; "required": false; }; "sortingExpressions": { "alias": "sortingExpressions"; "required": false; }; "batchEditing": { "alias": "batchEditing"; "required": false; }; "cellSelection": { "alias": "cellSelection"; "required": false; }; "rowSelection": { "alias": "rowSelection"; "required": false; }; "columnSelection": { "alias": "columnSelection"; "required": false; }; "expansionStates": { "alias": "expansionStates"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "selectRowOnClick": { "alias": "selectRowOnClick"; "required": false; }; }, { "filteringExpressionsTreeChange": "filteringExpressionsTreeChange"; "advancedFilteringExpressionsTreeChange": "advancedFilteringExpressionsTreeChange"; "gridScroll": "gridScroll"; "cellClick": "cellClick"; "rowClick": "rowClick"; "formGroupCreated": "formGroupCreated"; "validationStatusChange": "validationStatusChange"; "selected": "selected"; "rowSelectionChanging": "rowSelectionChanging"; "columnSelectionChanging": "columnSelectionChanging"; "columnPin": "columnPin"; "columnPinned": "columnPinned"; "cellEditEnter": "cellEditEnter"; "cellEditExit": "cellEditExit"; "cellEdit": "cellEdit"; "cellEditDone": "cellEditDone"; "rowEditEnter": "rowEditEnter"; "rowEdit": "rowEdit"; "rowEditDone": "rowEditDone"; "rowEditExit": "rowEditExit"; "columnInit": "columnInit"; "columnsAutogenerated": "columnsAutogenerated"; "sorting": "sorting"; "sortingDone": "sortingDone"; "filtering": "filtering"; "filteringDone": "filteringDone"; "rowAdded": "rowAdded"; "rowDeleted": "rowDeleted"; "rowDelete": "rowDelete"; "rowAdd": "rowAdd"; "columnResized": "columnResized"; "contextMenu": "contextMenu"; "doubleClick": "doubleClick"; "columnVisibilityChanging": "columnVisibilityChanging"; "columnVisibilityChanged": "columnVisibilityChanged"; "columnMovingStart": "columnMovingStart"; "columnMoving": "columnMoving"; "columnMovingEnd": "columnMovingEnd"; "gridKeydown": "gridKeydown"; "rowDragStart": "rowDragStart"; "rowDragEnd": "rowDragEnd"; "gridCopy": "gridCopy"; "expansionStatesChange": "expansionStatesChange"; "selectedRowsChange": "selectedRowsChange"; "rowToggle": "rowToggle"; "rowPinning": "rowPinning"; "rowPinned": "rowPinned"; "activeNodeChange": "activeNodeChange"; "sortingExpressionsChange": "sortingExpressionsChange"; "toolbarExporting": "toolbarExporting"; "rangeSelected": "rangeSelected"; "rendered": "rendered"; "localeChange": "localeChange"; "dataChanging": "dataChanging"; "dataChanged": "dataChanged"; }, ["excelStyleLoadingValuesTemplateDirective", "rowAddText", "rowExpandedIndicatorDirectiveTemplate", "rowCollapsedIndicatorDirectiveTemplate", "headerExpandedIndicatorDirectiveTemplate", "headerCollapsedIndicatorDirectiveTemplate", "excelStyleHeaderIconDirectiveTemplate", "sortAscendingHeaderIconDirectiveTemplate", "sortDescendingHeaderIconDirectiveTemplate", "sortHeaderIconDirectiveTemplate", "excelStyleFilteringComponents", "columnList", "actionStripComponents", "headSelectorsTemplates", "rowSelectorsTemplates", "dragGhostCustomTemplates", "rowEditCustomDirectives", "rowEditTextDirectives", "rowEditActionsDirectives", "dragIndicatorIconTemplates", "rowEditTabsCUSTOM", "toolbar", "paginationComponents"], never, true, never>;
|
|
3552
3556
|
static ngAcceptInputType_autoGenerate: unknown;
|
|
@@ -24,7 +24,7 @@ export declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
24
24
|
pinnedColumnCollection: ColumnType[];
|
|
25
25
|
/** Unpinned columns of the grid. */
|
|
26
26
|
unpinnedColumnCollection: ColumnType[];
|
|
27
|
-
activeDescendant: string;
|
|
27
|
+
get activeDescendant(): string;
|
|
28
28
|
hasMRL: boolean;
|
|
29
29
|
width: number;
|
|
30
30
|
/**
|
|
@@ -103,6 +103,6 @@ export declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
103
103
|
/** state persistence switching all pinned columns resets collection */
|
|
104
104
|
protected trackPinnedColumn: typeof trackByIdentity;
|
|
105
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderRowComponent, never>;
|
|
106
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderRowComponent, "igx-grid-header-row", never, { "grid": { "alias": "grid"; "required": false; }; "pinnedColumnCollection": { "alias": "pinnedColumnCollection"; "required": false; }; "unpinnedColumnCollection": { "alias": "unpinnedColumnCollection"; "required": false; }; "
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderRowComponent, "igx-grid-header-row", never, { "grid": { "alias": "grid"; "required": false; }; "pinnedColumnCollection": { "alias": "pinnedColumnCollection"; "required": false; }; "unpinnedColumnCollection": { "alias": "unpinnedColumnCollection"; "required": false; }; "hasMRL": { "alias": "hasMRL"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
107
107
|
static ngAcceptInputType_hasMRL: unknown;
|
|
108
108
|
}
|
|
@@ -25,10 +25,26 @@ export declare class IgxGridHeaderComponent implements DoCheck, OnDestroy {
|
|
|
25
25
|
* @hidden
|
|
26
26
|
*/
|
|
27
27
|
protected sortIconContainer: ElementRef;
|
|
28
|
+
/**
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
id: string;
|
|
28
32
|
/**
|
|
29
33
|
* Returns the `aria-selected` of the header.
|
|
30
34
|
*/
|
|
31
35
|
get ariaSelected(): boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Returns the `aria-sort` of the header.
|
|
38
|
+
*/
|
|
39
|
+
get ariaSort(): "ascending" | "descending";
|
|
40
|
+
/**
|
|
41
|
+
* @hidden
|
|
42
|
+
*/
|
|
43
|
+
get ariaColIndx(): number;
|
|
44
|
+
/**
|
|
45
|
+
* @hidden
|
|
46
|
+
*/
|
|
47
|
+
get ariaRowIndx(): number;
|
|
32
48
|
get columnGroupStyle(): boolean;
|
|
33
49
|
get sortAscendingStyle(): boolean;
|
|
34
50
|
get sortDescendingStyle(): boolean;
|
|
@@ -92,5 +108,5 @@ export declare class IgxGridHeaderComponent implements DoCheck, OnDestroy {
|
|
|
92
108
|
protected isAdvancedFilterApplied(): boolean;
|
|
93
109
|
private triggerSort;
|
|
94
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderComponent, never>;
|
|
95
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderComponent, "igx-grid-header", never, { "column": { "alias": "column"; "required": false; }; }, {}, never, never, true, never>;
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderComponent, "igx-grid-header", never, { "column": { "alias": "column"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
96
112
|
}
|
|
@@ -201,6 +201,10 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
201
201
|
* @hidden @internal
|
|
202
202
|
*/
|
|
203
203
|
recordTemplate: TemplateRef<any>;
|
|
204
|
+
/**
|
|
205
|
+
* @hidden @internal
|
|
206
|
+
*/
|
|
207
|
+
rowDimensionMrlComponent: IgxPivotRowDimensionMrlRowComponent;
|
|
204
208
|
/**
|
|
205
209
|
* @hidden @internal
|
|
206
210
|
*/
|
|
@@ -939,6 +943,8 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
939
943
|
get excelStyleFilterMinHeight(): string;
|
|
940
944
|
/** @hidden @internal */
|
|
941
945
|
get activeDescendant(): string;
|
|
946
|
+
/** @hidden @internal */
|
|
947
|
+
get headerRowActiveDescendant(): string;
|
|
942
948
|
protected resolveToggle(groupColumn: IgxColumnComponent, state: boolean): void;
|
|
943
949
|
protected buildDataView(data: any[]): void;
|
|
944
950
|
/**
|
|
@@ -7,7 +7,7 @@ import { IgxDropDownComponent } from '../../drop-down/drop-down.component';
|
|
|
7
7
|
import { ColumnType, PivotGridType } from '../common/grid.interface';
|
|
8
8
|
import { IgxGridHeaderRowComponent } from '../headers/grid-header-row.component';
|
|
9
9
|
import { IPivotAggregator, IPivotDimension, IPivotValue, PivotDimensionType } from './pivot-grid.interface';
|
|
10
|
-
import {
|
|
10
|
+
import { IgxPivotRowHeaderGroupComponent } from './pivot-row-header-group.component';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
13
|
*
|
|
@@ -66,8 +66,9 @@ export declare class IgxPivotHeaderRowComponent extends IgxGridHeaderRowComponen
|
|
|
66
66
|
* @hidden
|
|
67
67
|
* @internal
|
|
68
68
|
*/
|
|
69
|
-
rowDimensionHeaders: QueryList<
|
|
69
|
+
rowDimensionHeaders: QueryList<IgxPivotRowHeaderGroupComponent>;
|
|
70
70
|
get headerForOf(): IgxGridForOfDirective<ColumnType, ColumnType[]>;
|
|
71
|
+
get activeDescendant(): string;
|
|
71
72
|
constructor(grid: PivotGridType, ref: ElementRef<HTMLElement>, cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
72
73
|
/**
|
|
73
74
|
* @hidden
|
|
@@ -21,6 +21,10 @@ export declare class IgxPivotRowDimensionHeaderGroupComponent extends IgxGridHea
|
|
|
21
21
|
* @hidden
|
|
22
22
|
*/
|
|
23
23
|
userSelect: string;
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
get role(): string;
|
|
24
28
|
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
25
29
|
/**
|
|
26
30
|
* @hidden
|
|
@@ -17,6 +17,7 @@ export declare class IgxPivotRowDimensionMrlRowComponent extends IgxGridHeaderRo
|
|
|
17
17
|
protected injector: Injector;
|
|
18
18
|
protected envInjector: EnvironmentInjector;
|
|
19
19
|
protected viewRef: ViewContainerRef;
|
|
20
|
+
rowDimensionContentCollection: QueryList<IgxPivotRowDimensionContentComponent>;
|
|
20
21
|
pivotDim: boolean;
|
|
21
22
|
mrlBlock: boolean;
|
|
22
23
|
get rowsTemplate(): string;
|
|
@@ -20,6 +20,10 @@ export declare class IgxPivotRowHeaderGroupComponent extends IgxGridHeaderGroupC
|
|
|
20
20
|
* @hidden
|
|
21
21
|
*/
|
|
22
22
|
userSelect: string;
|
|
23
|
+
/**
|
|
24
|
+
* @hidden
|
|
25
|
+
*/
|
|
26
|
+
get role(): string;
|
|
23
27
|
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
24
28
|
/**
|
|
25
29
|
* @hidden
|
|
@@ -25,7 +25,7 @@ export declare class IgxColumnResizerDirective implements OnInit, OnDestroy {
|
|
|
25
25
|
set left(val: number);
|
|
26
26
|
set top(val: number);
|
|
27
27
|
onMouseup(event: MouseEvent): void;
|
|
28
|
-
onMousedown(event: MouseEvent): void;
|
|
28
|
+
onMousedown(event: MouseEvent, resizeHandleTarget: HTMLElement): void;
|
|
29
29
|
onMousemove(event: MouseEvent): void;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxColumnResizerDirective, never>;
|
|
31
31
|
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxColumnResizerDirective, "[igxResizer]", never, { "restrictHResizeMin": { "alias": "restrictHResizeMin"; "required": false; }; "restrictHResizeMax": { "alias": "restrictHResizeMax"; "required": false; }; "restrictResizerTop": { "alias": "restrictResizerTop"; "required": false; }; }, { "resizeEnd": "resizeEnd"; "resizeStart": "resizeStart"; "resize": "resize"; }, never, never, true, never>;
|
|
@@ -49,6 +49,11 @@ export declare class IgxIconComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
49
49
|
* ```
|
|
50
50
|
*/
|
|
51
51
|
get getInactive(): boolean;
|
|
52
|
+
/**
|
|
53
|
+
* The `aria-hidden` attribute of the icon.
|
|
54
|
+
* By default is set to 'true'.
|
|
55
|
+
*/
|
|
56
|
+
ariaHidden: boolean;
|
|
52
57
|
/**
|
|
53
58
|
* An @Input property that sets the value of the `family`. By default it's "material".
|
|
54
59
|
*
|
|
@@ -152,6 +157,6 @@ export declare class IgxIconComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
152
157
|
*/
|
|
153
158
|
private setIcon;
|
|
154
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxIconComponent, never>;
|
|
155
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxIconComponent, "igx-icon", never, { "family": { "alias": "family"; "required": false; }; "name": { "alias": "name"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxIconComponent, "igx-icon", never, { "ariaHidden": { "alias": "ariaHidden"; "required": false; }; "family": { "alias": "family"; "required": false; }; "name": { "alias": "name"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
156
161
|
static ngAcceptInputType_active: unknown;
|
|
157
162
|
}
|
|
@@ -34,25 +34,53 @@ export declare class IgxQueryBuilderComponent implements OnDestroy {
|
|
|
34
34
|
*/
|
|
35
35
|
showEntityChangeDialog: boolean;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
38
|
-
*
|
|
37
|
+
* Gets the list of entities available for the IgxQueryBuilderComponent.
|
|
38
|
+
*
|
|
39
|
+
* Each entity describes a logical group of fields that can be used in queries.
|
|
40
|
+
* An entity can optionally have child entities, allowing nested sub-queries.
|
|
41
|
+
*
|
|
42
|
+
* @returns An array of {@link EntityType} objects.
|
|
39
43
|
*/
|
|
40
44
|
get entities(): EntityType[];
|
|
41
45
|
/**
|
|
42
|
-
* Sets the entities.
|
|
43
|
-
*
|
|
46
|
+
* Sets the list of entities for the IgxQueryBuilderComponent.
|
|
47
|
+
* If the `expressionTree` is defined, it will be recreated with the new entities.
|
|
48
|
+
*
|
|
49
|
+
* Each entity should be an {@link EntityType} object describing the fields and optionally child entities.
|
|
50
|
+
*
|
|
51
|
+
* Example:
|
|
52
|
+
* ```ts
|
|
53
|
+
* [
|
|
54
|
+
* {
|
|
55
|
+
* name: 'Orders',
|
|
56
|
+
* fields: [{ field: 'OrderID', dataType: 'number' }],
|
|
57
|
+
* childEntities: [
|
|
58
|
+
* {
|
|
59
|
+
* name: 'OrderDetails',
|
|
60
|
+
* fields: [{ field: 'ProductID', dataType: 'number' }]
|
|
61
|
+
* }
|
|
62
|
+
* ]
|
|
63
|
+
* }
|
|
64
|
+
* ]
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param entities - The array of entities to set.
|
|
44
68
|
*/
|
|
45
69
|
set entities(entities: EntityType[]);
|
|
46
70
|
/**
|
|
47
|
-
*
|
|
71
|
+
* Gets the list of fields for the QueryBuilder.
|
|
72
|
+
*
|
|
73
|
+
* @deprecated since version 19.1.0. Use the `entities` property instead.
|
|
48
74
|
* @hidden
|
|
49
|
-
* @deprecated in version 19.1.0. Use the `entities` property instead.
|
|
50
75
|
*/
|
|
51
76
|
get fields(): FieldType[];
|
|
52
77
|
/**
|
|
53
|
-
* Sets the fields.
|
|
78
|
+
* Sets the list of fields for the QueryBuilder.
|
|
79
|
+
* Automatically wraps them into a single entity to maintain backward compatibility.
|
|
80
|
+
*
|
|
81
|
+
* @param fields - The array of fields to set.
|
|
82
|
+
* @deprecated since version 19.1.0. Use the `entities` property instead.
|
|
54
83
|
* @hidden
|
|
55
|
-
* @deprecated in version 19.1.0. Use the `entities` property instead.
|
|
56
84
|
*/
|
|
57
85
|
set fields(fields: FieldType[]);
|
|
58
86
|
/**
|
package/package.json
CHANGED