igniteui-angular 20.0.10 → 20.0.11
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 +160 -41
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/index.d.ts +124 -88
- package/lib/core/styles/components/switch/_switch-theme.scss +1 -1
- package/lib/core/styles/themes/_core.scss +3 -0
- package/lib/core/styles/themes/generators/_base.scss +0 -12
- package/package.json +2 -2
- package/styles/igniteui-angular-dark.css +1 -1
- package/styles/igniteui-angular.css +1 -1
- package/styles/igniteui-bootstrap-dark.css +1 -1
- package/styles/igniteui-bootstrap-light.css +1 -1
- package/styles/igniteui-dark-green.css +1 -1
- package/styles/igniteui-fluent-dark-excel.css +1 -1
- package/styles/igniteui-fluent-dark-word.css +1 -1
- package/styles/igniteui-fluent-dark.css +1 -1
- package/styles/igniteui-fluent-light-excel.css +1 -1
- package/styles/igniteui-fluent-light-word.css +1 -1
- package/styles/igniteui-fluent-light.css +1 -1
- package/styles/igniteui-indigo-dark.css +1 -1
- package/styles/igniteui-indigo-light.css +1 -1
- package/styles/maps/igniteui-angular-dark.css.map +1 -1
- package/styles/maps/igniteui-angular.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
- package/styles/maps/igniteui-dark-green.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-light.css.map +1 -1
- package/styles/maps/igniteui-indigo-dark.css.map +1 -1
- package/styles/maps/igniteui-indigo-light.css.map +1 -1
package/index.d.ts
CHANGED
|
@@ -22327,10 +22327,26 @@ declare class IgxGridHeaderComponent implements DoCheck, OnDestroy {
|
|
|
22327
22327
|
* @hidden
|
|
22328
22328
|
*/
|
|
22329
22329
|
protected sortIconContainer: ElementRef;
|
|
22330
|
+
/**
|
|
22331
|
+
* @hidden
|
|
22332
|
+
*/
|
|
22333
|
+
id: string;
|
|
22330
22334
|
/**
|
|
22331
22335
|
* Returns the `aria-selected` of the header.
|
|
22332
22336
|
*/
|
|
22333
22337
|
get ariaSelected(): boolean;
|
|
22338
|
+
/**
|
|
22339
|
+
* Returns the `aria-sort` of the header.
|
|
22340
|
+
*/
|
|
22341
|
+
get ariaSort(): "ascending" | "descending";
|
|
22342
|
+
/**
|
|
22343
|
+
* @hidden
|
|
22344
|
+
*/
|
|
22345
|
+
get ariaColIndx(): number;
|
|
22346
|
+
/**
|
|
22347
|
+
* @hidden
|
|
22348
|
+
*/
|
|
22349
|
+
get ariaRowIndx(): number;
|
|
22334
22350
|
get columnGroupStyle(): boolean;
|
|
22335
22351
|
get sortAscendingStyle(): boolean;
|
|
22336
22352
|
get sortDescendingStyle(): boolean;
|
|
@@ -22394,7 +22410,7 @@ declare class IgxGridHeaderComponent implements DoCheck, OnDestroy {
|
|
|
22394
22410
|
protected isAdvancedFilterApplied(): boolean;
|
|
22395
22411
|
private triggerSort;
|
|
22396
22412
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderComponent, never>;
|
|
22397
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderComponent, "igx-grid-header", never, { "column": { "alias": "column"; "required": false; }; }, {}, never, never, true, never>;
|
|
22413
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderComponent, "igx-grid-header", never, { "column": { "alias": "column"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
22398
22414
|
}
|
|
22399
22415
|
|
|
22400
22416
|
/**
|
|
@@ -29240,7 +29256,7 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
29240
29256
|
pinnedColumnCollection: ColumnType[];
|
|
29241
29257
|
/** Unpinned columns of the grid. */
|
|
29242
29258
|
unpinnedColumnCollection: ColumnType[];
|
|
29243
|
-
activeDescendant: string;
|
|
29259
|
+
get activeDescendant(): string;
|
|
29244
29260
|
hasMRL: boolean;
|
|
29245
29261
|
width: number;
|
|
29246
29262
|
/**
|
|
@@ -29319,7 +29335,7 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
29319
29335
|
/** state persistence switching all pinned columns resets collection */
|
|
29320
29336
|
protected trackPinnedColumn: typeof trackByIdentity;
|
|
29321
29337
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderRowComponent, never>;
|
|
29322
|
-
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; }; "
|
|
29338
|
+
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>;
|
|
29323
29339
|
static ngAcceptInputType_hasMRL: unknown;
|
|
29324
29340
|
}
|
|
29325
29341
|
|
|
@@ -31543,6 +31559,8 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
31543
31559
|
private defaultRowEditTemplate;
|
|
31544
31560
|
private _dataRowList;
|
|
31545
31561
|
protected baseClass: string;
|
|
31562
|
+
protected get ariaColCount(): number;
|
|
31563
|
+
protected get ariaRowCount(): number;
|
|
31546
31564
|
/**
|
|
31547
31565
|
* Gets/Sets the resource strings.
|
|
31548
31566
|
*
|
|
@@ -32338,6 +32356,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
32338
32356
|
private _sortDescendingHeaderIconTemplate;
|
|
32339
32357
|
private _gridSize;
|
|
32340
32358
|
private _defaultRowHeight;
|
|
32359
|
+
private _rowCount;
|
|
32341
32360
|
/**
|
|
32342
32361
|
* @hidden @internal
|
|
32343
32362
|
*/
|
|
@@ -33865,6 +33884,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
33865
33884
|
*/
|
|
33866
33885
|
private clearActiveNode;
|
|
33867
33886
|
private getRecreatedTree;
|
|
33887
|
+
private _calculateRowCount;
|
|
33868
33888
|
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; }]>;
|
|
33869
33889
|
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", "loadingDirectiveTemplate", "emptyDirectiveTemplate", "excelStyleFilteringComponents", "columnList", "actionStripComponents", "headSelectorsTemplates", "rowSelectorsTemplates", "dragGhostCustomTemplates", "rowEditCustomDirectives", "rowEditTextDirectives", "rowEditActionsDirectives", "dragIndicatorIconTemplates", "rowEditTabsCUSTOM", "toolbar", "paginationComponents"], never, true, never>;
|
|
33870
33890
|
static ngAcceptInputType_autoGenerate: unknown;
|
|
@@ -33926,7 +33946,7 @@ declare class IgxPivotRowDimensionHeaderComponent extends IgxGridHeaderComponent
|
|
|
33926
33946
|
/**
|
|
33927
33947
|
* @hidden
|
|
33928
33948
|
*/
|
|
33929
|
-
declare class
|
|
33949
|
+
declare class IgxPivotRowHeaderGroupComponent extends IgxGridHeaderGroupComponent implements PivotRowHeaderGroupType {
|
|
33930
33950
|
private cdRef;
|
|
33931
33951
|
grid: PivotGridType;
|
|
33932
33952
|
private elementRef;
|
|
@@ -33936,48 +33956,43 @@ declare class IgxPivotRowDimensionHeaderGroupComponent extends IgxGridHeaderGrou
|
|
|
33936
33956
|
* @hidden
|
|
33937
33957
|
*/
|
|
33938
33958
|
userSelect: string;
|
|
33939
|
-
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
33940
|
-
/**
|
|
33941
|
-
* @hidden
|
|
33942
|
-
* @internal
|
|
33943
|
-
*/
|
|
33944
|
-
rowIndex: number;
|
|
33945
33959
|
/**
|
|
33946
33960
|
* @hidden
|
|
33947
|
-
* @internal
|
|
33948
33961
|
*/
|
|
33949
|
-
|
|
33962
|
+
get role(): string;
|
|
33963
|
+
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
33950
33964
|
/**
|
|
33951
33965
|
* @hidden
|
|
33952
33966
|
* @internal
|
|
33953
33967
|
*/
|
|
33954
|
-
|
|
33955
|
-
|
|
33956
|
-
|
|
33957
|
-
|
|
33958
|
-
|
|
33959
|
-
parent: any;
|
|
33968
|
+
rowIndex: number;
|
|
33969
|
+
set dimWidth(value: number);
|
|
33970
|
+
get dimWidth(): number;
|
|
33971
|
+
get parent(): this;
|
|
33972
|
+
rootDimension: IPivotDimension;
|
|
33960
33973
|
header: IgxPivotRowDimensionHeaderComponent;
|
|
33961
33974
|
get headerID(): string;
|
|
33962
33975
|
get title(): string;
|
|
33963
|
-
/**
|
|
33964
|
-
* @hidden @internal
|
|
33965
|
-
*/
|
|
33966
|
-
onClick(event: MouseEvent): void;
|
|
33967
33976
|
/**
|
|
33968
33977
|
* @hidden
|
|
33969
33978
|
* @internal
|
|
33970
33979
|
*/
|
|
33971
33980
|
get visibleIndex(): number;
|
|
33972
33981
|
get active(): boolean;
|
|
33982
|
+
get sortAscendingStyle(): boolean;
|
|
33983
|
+
get sortDescendingStyle(): boolean;
|
|
33984
|
+
get sortableStyle(): boolean;
|
|
33985
|
+
get sortedStyle(): boolean;
|
|
33973
33986
|
protected get activeNode(): {
|
|
33974
33987
|
row: number;
|
|
33975
33988
|
column: number;
|
|
33976
33989
|
level: any;
|
|
33977
|
-
mchCache:
|
|
33978
|
-
|
|
33990
|
+
mchCache: {
|
|
33991
|
+
level: number;
|
|
33992
|
+
visibleIndex: number;
|
|
33993
|
+
};
|
|
33994
|
+
layout: any;
|
|
33979
33995
|
};
|
|
33980
|
-
private findRootDimension;
|
|
33981
33996
|
activate(): void;
|
|
33982
33997
|
/**
|
|
33983
33998
|
* @hidden @internal
|
|
@@ -33988,8 +34003,8 @@ declare class IgxPivotRowDimensionHeaderGroupComponent extends IgxGridHeaderGrou
|
|
|
33988
34003
|
*/
|
|
33989
34004
|
onMouseDown(_event: MouseEvent): void;
|
|
33990
34005
|
get selectable(): boolean;
|
|
33991
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
33992
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
34006
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgxPivotRowHeaderGroupComponent, never>;
|
|
34007
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxPivotRowHeaderGroupComponent, "igx-pivot-row-header-group", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "dimWidth": { "alias": "dimWidth"; "required": false; }; "rootDimension": { "alias": "rootDimension"; "required": false; }; }, {}, never, never, true, never>;
|
|
33993
34008
|
}
|
|
33994
34009
|
|
|
33995
34010
|
/**
|
|
@@ -34049,8 +34064,9 @@ declare class IgxPivotHeaderRowComponent extends IgxGridHeaderRowComponent imple
|
|
|
34049
34064
|
* @hidden
|
|
34050
34065
|
* @internal
|
|
34051
34066
|
*/
|
|
34052
|
-
rowDimensionHeaders: QueryList<
|
|
34067
|
+
rowDimensionHeaders: QueryList<IgxPivotRowHeaderGroupComponent>;
|
|
34053
34068
|
get headerForOf(): IgxGridForOfDirective<ColumnType, ColumnType[]>;
|
|
34069
|
+
get activeDescendant(): string;
|
|
34054
34070
|
constructor(grid: PivotGridType, ref: ElementRef<HTMLElement>, cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
34055
34071
|
/**
|
|
34056
34072
|
* @hidden
|
|
@@ -34317,6 +34333,79 @@ declare class GridBaseAPIService<T extends GridType> implements GridServiceType
|
|
|
34317
34333
|
static ɵprov: i0.ɵɵInjectableDeclaration<GridBaseAPIService<any>>;
|
|
34318
34334
|
}
|
|
34319
34335
|
|
|
34336
|
+
/**
|
|
34337
|
+
* @hidden
|
|
34338
|
+
*/
|
|
34339
|
+
declare class IgxPivotRowDimensionHeaderGroupComponent extends IgxGridHeaderGroupComponent implements PivotRowHeaderGroupType {
|
|
34340
|
+
private cdRef;
|
|
34341
|
+
grid: PivotGridType;
|
|
34342
|
+
private elementRef;
|
|
34343
|
+
colResizingService: IgxPivotColumnResizingService;
|
|
34344
|
+
protected zone: NgZone;
|
|
34345
|
+
/**
|
|
34346
|
+
* @hidden
|
|
34347
|
+
*/
|
|
34348
|
+
userSelect: string;
|
|
34349
|
+
/**
|
|
34350
|
+
* @hidden
|
|
34351
|
+
*/
|
|
34352
|
+
get role(): string;
|
|
34353
|
+
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
34354
|
+
/**
|
|
34355
|
+
* @hidden
|
|
34356
|
+
* @internal
|
|
34357
|
+
*/
|
|
34358
|
+
rowIndex: number;
|
|
34359
|
+
/**
|
|
34360
|
+
* @hidden
|
|
34361
|
+
* @internal
|
|
34362
|
+
*/
|
|
34363
|
+
colIndex: number;
|
|
34364
|
+
/**
|
|
34365
|
+
* @hidden
|
|
34366
|
+
* @internal
|
|
34367
|
+
*/
|
|
34368
|
+
layout: IMultiRowLayoutNode;
|
|
34369
|
+
/**
|
|
34370
|
+
* @hidden
|
|
34371
|
+
* @internal
|
|
34372
|
+
*/
|
|
34373
|
+
parent: any;
|
|
34374
|
+
header: IgxPivotRowDimensionHeaderComponent;
|
|
34375
|
+
get headerID(): string;
|
|
34376
|
+
get title(): string;
|
|
34377
|
+
/**
|
|
34378
|
+
* @hidden @internal
|
|
34379
|
+
*/
|
|
34380
|
+
onClick(event: MouseEvent): void;
|
|
34381
|
+
/**
|
|
34382
|
+
* @hidden
|
|
34383
|
+
* @internal
|
|
34384
|
+
*/
|
|
34385
|
+
get visibleIndex(): number;
|
|
34386
|
+
get active(): boolean;
|
|
34387
|
+
protected get activeNode(): {
|
|
34388
|
+
row: number;
|
|
34389
|
+
column: number;
|
|
34390
|
+
level: any;
|
|
34391
|
+
mchCache: any;
|
|
34392
|
+
layout: IMultiRowLayoutNode;
|
|
34393
|
+
};
|
|
34394
|
+
private findRootDimension;
|
|
34395
|
+
activate(): void;
|
|
34396
|
+
/**
|
|
34397
|
+
* @hidden @internal
|
|
34398
|
+
*/
|
|
34399
|
+
pointerdown(_event: PointerEvent): void;
|
|
34400
|
+
/**
|
|
34401
|
+
* @hidden @internal
|
|
34402
|
+
*/
|
|
34403
|
+
onMouseDown(_event: MouseEvent): void;
|
|
34404
|
+
get selectable(): boolean;
|
|
34405
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgxPivotRowDimensionHeaderGroupComponent, never>;
|
|
34406
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxPivotRowDimensionHeaderGroupComponent, "igx-pivot-row-dimension-header-group", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "colIndex": { "alias": "colIndex"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; }, {}, never, never, true, never>;
|
|
34407
|
+
}
|
|
34408
|
+
|
|
34320
34409
|
/**
|
|
34321
34410
|
*
|
|
34322
34411
|
* For all intents & purposes treat this component as what a <thead> usually is in the default <table> element.
|
|
@@ -34416,66 +34505,6 @@ declare class IgxPivotRowDimensionHeaderTemplateDirective {
|
|
|
34416
34505
|
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxPivotRowDimensionHeaderTemplateDirective, "[igxPivotRowDimensionHeader]", never, {}, {}, never, never, true, never>;
|
|
34417
34506
|
}
|
|
34418
34507
|
|
|
34419
|
-
/**
|
|
34420
|
-
* @hidden
|
|
34421
|
-
*/
|
|
34422
|
-
declare class IgxPivotRowHeaderGroupComponent extends IgxGridHeaderGroupComponent implements PivotRowHeaderGroupType {
|
|
34423
|
-
private cdRef;
|
|
34424
|
-
grid: PivotGridType;
|
|
34425
|
-
private elementRef;
|
|
34426
|
-
colResizingService: IgxPivotColumnResizingService;
|
|
34427
|
-
protected zone: NgZone;
|
|
34428
|
-
/**
|
|
34429
|
-
* @hidden
|
|
34430
|
-
*/
|
|
34431
|
-
userSelect: string;
|
|
34432
|
-
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
34433
|
-
/**
|
|
34434
|
-
* @hidden
|
|
34435
|
-
* @internal
|
|
34436
|
-
*/
|
|
34437
|
-
rowIndex: number;
|
|
34438
|
-
set dimWidth(value: number);
|
|
34439
|
-
get dimWidth(): number;
|
|
34440
|
-
get parent(): this;
|
|
34441
|
-
rootDimension: IPivotDimension;
|
|
34442
|
-
header: IgxPivotRowDimensionHeaderComponent;
|
|
34443
|
-
get headerID(): string;
|
|
34444
|
-
get title(): string;
|
|
34445
|
-
/**
|
|
34446
|
-
* @hidden
|
|
34447
|
-
* @internal
|
|
34448
|
-
*/
|
|
34449
|
-
get visibleIndex(): number;
|
|
34450
|
-
get active(): boolean;
|
|
34451
|
-
get sortAscendingStyle(): boolean;
|
|
34452
|
-
get sortDescendingStyle(): boolean;
|
|
34453
|
-
get sortableStyle(): boolean;
|
|
34454
|
-
get sortedStyle(): boolean;
|
|
34455
|
-
protected get activeNode(): {
|
|
34456
|
-
row: number;
|
|
34457
|
-
column: number;
|
|
34458
|
-
level: any;
|
|
34459
|
-
mchCache: {
|
|
34460
|
-
level: number;
|
|
34461
|
-
visibleIndex: number;
|
|
34462
|
-
};
|
|
34463
|
-
layout: any;
|
|
34464
|
-
};
|
|
34465
|
-
activate(): void;
|
|
34466
|
-
/**
|
|
34467
|
-
* @hidden @internal
|
|
34468
|
-
*/
|
|
34469
|
-
pointerdown(_event: PointerEvent): void;
|
|
34470
|
-
/**
|
|
34471
|
-
* @hidden @internal
|
|
34472
|
-
*/
|
|
34473
|
-
onMouseDown(_event: MouseEvent): void;
|
|
34474
|
-
get selectable(): boolean;
|
|
34475
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgxPivotRowHeaderGroupComponent, never>;
|
|
34476
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxPivotRowHeaderGroupComponent, "igx-pivot-row-header-group", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "dimWidth": { "alias": "dimWidth"; "required": false; }; "rootDimension": { "alias": "rootDimension"; "required": false; }; }, {}, never, never, true, never>;
|
|
34477
|
-
}
|
|
34478
|
-
|
|
34479
34508
|
/**
|
|
34480
34509
|
*
|
|
34481
34510
|
* For all intents & purposes treat this component as what a <thead> usually is in the default <table> element.
|
|
@@ -34489,6 +34518,7 @@ declare class IgxPivotRowDimensionMrlRowComponent extends IgxGridHeaderRowCompon
|
|
|
34489
34518
|
protected injector: Injector;
|
|
34490
34519
|
protected envInjector: EnvironmentInjector;
|
|
34491
34520
|
protected viewRef: ViewContainerRef;
|
|
34521
|
+
rowDimensionContentCollection: QueryList<IgxPivotRowDimensionContentComponent>;
|
|
34492
34522
|
pivotDim: boolean;
|
|
34493
34523
|
mrlBlock: boolean;
|
|
34494
34524
|
get rowsTemplate(): string;
|
|
@@ -34689,6 +34719,10 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
|
|
|
34689
34719
|
* @hidden @internal
|
|
34690
34720
|
*/
|
|
34691
34721
|
recordTemplate: TemplateRef<any>;
|
|
34722
|
+
/**
|
|
34723
|
+
* @hidden @internal
|
|
34724
|
+
*/
|
|
34725
|
+
rowDimensionMrlComponent: IgxPivotRowDimensionMrlRowComponent;
|
|
34692
34726
|
/**
|
|
34693
34727
|
* @hidden @internal
|
|
34694
34728
|
*/
|
|
@@ -35427,6 +35461,8 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
|
|
|
35427
35461
|
get excelStyleFilterMinHeight(): string;
|
|
35428
35462
|
/** @hidden @internal */
|
|
35429
35463
|
get activeDescendant(): string;
|
|
35464
|
+
/** @hidden @internal */
|
|
35465
|
+
get headerRowActiveDescendant(): string;
|
|
35430
35466
|
protected resolveToggle(groupColumn: IgxColumnComponent, state: boolean): void;
|
|
35431
35467
|
protected buildDataView(data: any[]): void;
|
|
35432
35468
|
/**
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
// Used to configure color accessibility for charts
|
|
9
9
|
@use 'igniteui-theming/sass/color/functions' as color;
|
|
10
|
+
@use 'igniteui-theming/sass/themes/mixins' as theming;
|
|
10
11
|
|
|
11
12
|
// Common components
|
|
12
13
|
@use '../components/_common/igx-control';
|
|
@@ -113,6 +114,8 @@
|
|
|
113
114
|
}
|
|
114
115
|
}
|
|
115
116
|
|
|
117
|
+
@include theming.spacing();
|
|
118
|
+
|
|
116
119
|
@property --_progress-integer {
|
|
117
120
|
syntax: '<integer>';
|
|
118
121
|
initial-value: 0;
|
|
@@ -84,18 +84,6 @@
|
|
|
84
84
|
--ig-size-small: 1;
|
|
85
85
|
--ig-size-medium: 2;
|
|
86
86
|
--ig-size-large: 3;
|
|
87
|
-
|
|
88
|
-
--ig-spacing-small: 1;
|
|
89
|
-
--ig-spacing-medium: 1;
|
|
90
|
-
--ig-spacing-large: 1;
|
|
91
|
-
|
|
92
|
-
--ig-spacing-inline-small: 1;
|
|
93
|
-
--ig-spacing-inline-medium: 1;
|
|
94
|
-
--ig-spacing-inline-large: 1;
|
|
95
|
-
|
|
96
|
-
--ig-spacing-block-small: 1;
|
|
97
|
-
--ig-spacing-block-medium: 1;
|
|
98
|
-
--ig-spacing-block-large: 1;
|
|
99
87
|
}
|
|
100
88
|
|
|
101
89
|
@if not(list.index($exclude, 'palette')) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.11",
|
|
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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"tslib": "^2.3.0",
|
|
74
74
|
"igniteui-trial-watermark": "^3.1.0",
|
|
75
75
|
"lodash-es": "^4.17.21",
|
|
76
|
-
"igniteui-theming": "^19.2.
|
|
76
|
+
"igniteui-theming": "^19.2.3",
|
|
77
77
|
"@igniteui/material-icons-extended": "^3.1.0"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|