igniteui-angular 20.0.9 → 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 +211 -50
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/index.d.ts +154 -90
- 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
|
@@ -7629,8 +7629,8 @@ declare class IgxDropDownItemBaseDirective implements DoCheck {
|
|
|
7629
7629
|
* @memberof IgxSelectItemComponent
|
|
7630
7630
|
*/
|
|
7631
7631
|
id: string;
|
|
7632
|
-
get ariaLabel(): string;
|
|
7633
|
-
set ariaLabel(value: string);
|
|
7632
|
+
get ariaLabel(): string | null;
|
|
7633
|
+
set ariaLabel(value: string | null);
|
|
7634
7634
|
/**
|
|
7635
7635
|
* @hidden @internal
|
|
7636
7636
|
*/
|
|
@@ -7974,6 +7974,13 @@ declare abstract class IgxDropDownBaseDirective implements IDropDownList, OnInit
|
|
|
7974
7974
|
* Get dropdown's html element of its scroll container
|
|
7975
7975
|
*/
|
|
7976
7976
|
get scrollContainer(): HTMLElement;
|
|
7977
|
+
/**
|
|
7978
|
+
* @hidden @internal
|
|
7979
|
+
* Gets the id of the focused item during dropdown navigation.
|
|
7980
|
+
* This is used to update the `aria-activedescendant` attribute of
|
|
7981
|
+
* the IgxDropDownNavigationDirective host element.
|
|
7982
|
+
*/
|
|
7983
|
+
get activeDescendant(): string;
|
|
7977
7984
|
/**
|
|
7978
7985
|
* @hidden
|
|
7979
7986
|
* @internal
|
|
@@ -8318,6 +8325,7 @@ declare class IgxDropDownItemNavigationDirective implements IDropDownNavigationD
|
|
|
8318
8325
|
* ```
|
|
8319
8326
|
*/
|
|
8320
8327
|
set target(target: IgxDropDownBaseDirective);
|
|
8328
|
+
get activeDescendant(): string;
|
|
8321
8329
|
/**
|
|
8322
8330
|
* Captures keydown events and calls the appropriate handlers on the target component
|
|
8323
8331
|
*/
|
|
@@ -22319,10 +22327,26 @@ declare class IgxGridHeaderComponent implements DoCheck, OnDestroy {
|
|
|
22319
22327
|
* @hidden
|
|
22320
22328
|
*/
|
|
22321
22329
|
protected sortIconContainer: ElementRef;
|
|
22330
|
+
/**
|
|
22331
|
+
* @hidden
|
|
22332
|
+
*/
|
|
22333
|
+
id: string;
|
|
22322
22334
|
/**
|
|
22323
22335
|
* Returns the `aria-selected` of the header.
|
|
22324
22336
|
*/
|
|
22325
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;
|
|
22326
22350
|
get columnGroupStyle(): boolean;
|
|
22327
22351
|
get sortAscendingStyle(): boolean;
|
|
22328
22352
|
get sortDescendingStyle(): boolean;
|
|
@@ -22386,7 +22410,7 @@ declare class IgxGridHeaderComponent implements DoCheck, OnDestroy {
|
|
|
22386
22410
|
protected isAdvancedFilterApplied(): boolean;
|
|
22387
22411
|
private triggerSort;
|
|
22388
22412
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderComponent, never>;
|
|
22389
|
-
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>;
|
|
22390
22414
|
}
|
|
22391
22415
|
|
|
22392
22416
|
/**
|
|
@@ -22642,6 +22666,10 @@ declare class IgxGridHeaderGroupComponent implements DoCheck {
|
|
|
22642
22666
|
* @hidden
|
|
22643
22667
|
*/
|
|
22644
22668
|
get zIndex(): number;
|
|
22669
|
+
/**
|
|
22670
|
+
* @hidden
|
|
22671
|
+
*/
|
|
22672
|
+
get ariaHidden(): boolean;
|
|
22645
22673
|
/**
|
|
22646
22674
|
* Gets whether the header group belongs to a column that is filtered.
|
|
22647
22675
|
*
|
|
@@ -29228,7 +29256,7 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
29228
29256
|
pinnedColumnCollection: ColumnType[];
|
|
29229
29257
|
/** Unpinned columns of the grid. */
|
|
29230
29258
|
unpinnedColumnCollection: ColumnType[];
|
|
29231
|
-
activeDescendant: string;
|
|
29259
|
+
get activeDescendant(): string;
|
|
29232
29260
|
hasMRL: boolean;
|
|
29233
29261
|
width: number;
|
|
29234
29262
|
/**
|
|
@@ -29252,6 +29280,17 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
29252
29280
|
get headers(): IgxGridHeaderComponent[];
|
|
29253
29281
|
/** Filtering cell components in the header row. */
|
|
29254
29282
|
get filters(): IgxGridFilteringCellComponent[];
|
|
29283
|
+
/**
|
|
29284
|
+
* Gets a list of all visible leaf columns in the grid.
|
|
29285
|
+
*
|
|
29286
|
+
* @hidden @internal
|
|
29287
|
+
*/
|
|
29288
|
+
get visibleLeafColumns(): ColumnType[];
|
|
29289
|
+
/**
|
|
29290
|
+
* @hidden
|
|
29291
|
+
* @internal
|
|
29292
|
+
*/
|
|
29293
|
+
get isLeafHeaderAriaHidden(): boolean;
|
|
29255
29294
|
/** The virtualized part of the header row containing the unpinned header groups. */
|
|
29256
29295
|
headerContainer: IgxGridForOfDirective<ColumnType, ColumnType[]>;
|
|
29257
29296
|
get headerForOf(): IgxGridForOfDirective<ColumnType, ColumnType[]>;
|
|
@@ -29296,7 +29335,7 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
29296
29335
|
/** state persistence switching all pinned columns resets collection */
|
|
29297
29336
|
protected trackPinnedColumn: typeof trackByIdentity;
|
|
29298
29337
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderRowComponent, never>;
|
|
29299
|
-
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>;
|
|
29300
29339
|
static ngAcceptInputType_hasMRL: unknown;
|
|
29301
29340
|
}
|
|
29302
29341
|
|
|
@@ -31520,6 +31559,8 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
31520
31559
|
private defaultRowEditTemplate;
|
|
31521
31560
|
private _dataRowList;
|
|
31522
31561
|
protected baseClass: string;
|
|
31562
|
+
protected get ariaColCount(): number;
|
|
31563
|
+
protected get ariaRowCount(): number;
|
|
31523
31564
|
/**
|
|
31524
31565
|
* Gets/Sets the resource strings.
|
|
31525
31566
|
*
|
|
@@ -32315,6 +32356,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
32315
32356
|
private _sortDescendingHeaderIconTemplate;
|
|
32316
32357
|
private _gridSize;
|
|
32317
32358
|
private _defaultRowHeight;
|
|
32359
|
+
private _rowCount;
|
|
32318
32360
|
/**
|
|
32319
32361
|
* @hidden @internal
|
|
32320
32362
|
*/
|
|
@@ -33842,6 +33884,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
33842
33884
|
*/
|
|
33843
33885
|
private clearActiveNode;
|
|
33844
33886
|
private getRecreatedTree;
|
|
33887
|
+
private _calculateRowCount;
|
|
33845
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; }]>;
|
|
33846
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>;
|
|
33847
33890
|
static ngAcceptInputType_autoGenerate: unknown;
|
|
@@ -33903,7 +33946,7 @@ declare class IgxPivotRowDimensionHeaderComponent extends IgxGridHeaderComponent
|
|
|
33903
33946
|
/**
|
|
33904
33947
|
* @hidden
|
|
33905
33948
|
*/
|
|
33906
|
-
declare class
|
|
33949
|
+
declare class IgxPivotRowHeaderGroupComponent extends IgxGridHeaderGroupComponent implements PivotRowHeaderGroupType {
|
|
33907
33950
|
private cdRef;
|
|
33908
33951
|
grid: PivotGridType;
|
|
33909
33952
|
private elementRef;
|
|
@@ -33913,48 +33956,43 @@ declare class IgxPivotRowDimensionHeaderGroupComponent extends IgxGridHeaderGrou
|
|
|
33913
33956
|
* @hidden
|
|
33914
33957
|
*/
|
|
33915
33958
|
userSelect: string;
|
|
33916
|
-
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
33917
33959
|
/**
|
|
33918
33960
|
* @hidden
|
|
33919
|
-
* @internal
|
|
33920
33961
|
*/
|
|
33921
|
-
|
|
33922
|
-
|
|
33923
|
-
* @hidden
|
|
33924
|
-
* @internal
|
|
33925
|
-
*/
|
|
33926
|
-
colIndex: number;
|
|
33962
|
+
get role(): string;
|
|
33963
|
+
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
33927
33964
|
/**
|
|
33928
33965
|
* @hidden
|
|
33929
33966
|
* @internal
|
|
33930
33967
|
*/
|
|
33931
|
-
|
|
33932
|
-
|
|
33933
|
-
|
|
33934
|
-
|
|
33935
|
-
|
|
33936
|
-
parent: any;
|
|
33968
|
+
rowIndex: number;
|
|
33969
|
+
set dimWidth(value: number);
|
|
33970
|
+
get dimWidth(): number;
|
|
33971
|
+
get parent(): this;
|
|
33972
|
+
rootDimension: IPivotDimension;
|
|
33937
33973
|
header: IgxPivotRowDimensionHeaderComponent;
|
|
33938
33974
|
get headerID(): string;
|
|
33939
33975
|
get title(): string;
|
|
33940
|
-
/**
|
|
33941
|
-
* @hidden @internal
|
|
33942
|
-
*/
|
|
33943
|
-
onClick(event: MouseEvent): void;
|
|
33944
33976
|
/**
|
|
33945
33977
|
* @hidden
|
|
33946
33978
|
* @internal
|
|
33947
33979
|
*/
|
|
33948
33980
|
get visibleIndex(): number;
|
|
33949
33981
|
get active(): boolean;
|
|
33982
|
+
get sortAscendingStyle(): boolean;
|
|
33983
|
+
get sortDescendingStyle(): boolean;
|
|
33984
|
+
get sortableStyle(): boolean;
|
|
33985
|
+
get sortedStyle(): boolean;
|
|
33950
33986
|
protected get activeNode(): {
|
|
33951
33987
|
row: number;
|
|
33952
33988
|
column: number;
|
|
33953
33989
|
level: any;
|
|
33954
|
-
mchCache:
|
|
33955
|
-
|
|
33990
|
+
mchCache: {
|
|
33991
|
+
level: number;
|
|
33992
|
+
visibleIndex: number;
|
|
33993
|
+
};
|
|
33994
|
+
layout: any;
|
|
33956
33995
|
};
|
|
33957
|
-
private findRootDimension;
|
|
33958
33996
|
activate(): void;
|
|
33959
33997
|
/**
|
|
33960
33998
|
* @hidden @internal
|
|
@@ -33965,8 +34003,8 @@ declare class IgxPivotRowDimensionHeaderGroupComponent extends IgxGridHeaderGrou
|
|
|
33965
34003
|
*/
|
|
33966
34004
|
onMouseDown(_event: MouseEvent): void;
|
|
33967
34005
|
get selectable(): boolean;
|
|
33968
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
33969
|
-
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>;
|
|
33970
34008
|
}
|
|
33971
34009
|
|
|
33972
34010
|
/**
|
|
@@ -34026,8 +34064,9 @@ declare class IgxPivotHeaderRowComponent extends IgxGridHeaderRowComponent imple
|
|
|
34026
34064
|
* @hidden
|
|
34027
34065
|
* @internal
|
|
34028
34066
|
*/
|
|
34029
|
-
rowDimensionHeaders: QueryList<
|
|
34067
|
+
rowDimensionHeaders: QueryList<IgxPivotRowHeaderGroupComponent>;
|
|
34030
34068
|
get headerForOf(): IgxGridForOfDirective<ColumnType, ColumnType[]>;
|
|
34069
|
+
get activeDescendant(): string;
|
|
34031
34070
|
constructor(grid: PivotGridType, ref: ElementRef<HTMLElement>, cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
34032
34071
|
/**
|
|
34033
34072
|
* @hidden
|
|
@@ -34053,6 +34092,11 @@ declare class IgxPivotHeaderRowComponent extends IgxGridHeaderRowComponent imple
|
|
|
34053
34092
|
* @hidden
|
|
34054
34093
|
* @internal
|
|
34055
34094
|
*/
|
|
34095
|
+
get isLeafHeaderAriaHidden(): boolean;
|
|
34096
|
+
/**
|
|
34097
|
+
* @hidden
|
|
34098
|
+
* @internal
|
|
34099
|
+
*/
|
|
34056
34100
|
calcHeight(col: ColumnType, index: number): number;
|
|
34057
34101
|
/**
|
|
34058
34102
|
* @hidden
|
|
@@ -34289,6 +34333,79 @@ declare class GridBaseAPIService<T extends GridType> implements GridServiceType
|
|
|
34289
34333
|
static ɵprov: i0.ɵɵInjectableDeclaration<GridBaseAPIService<any>>;
|
|
34290
34334
|
}
|
|
34291
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
|
+
|
|
34292
34409
|
/**
|
|
34293
34410
|
*
|
|
34294
34411
|
* For all intents & purposes treat this component as what a <thead> usually is in the default <table> element.
|
|
@@ -34388,66 +34505,6 @@ declare class IgxPivotRowDimensionHeaderTemplateDirective {
|
|
|
34388
34505
|
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxPivotRowDimensionHeaderTemplateDirective, "[igxPivotRowDimensionHeader]", never, {}, {}, never, never, true, never>;
|
|
34389
34506
|
}
|
|
34390
34507
|
|
|
34391
|
-
/**
|
|
34392
|
-
* @hidden
|
|
34393
|
-
*/
|
|
34394
|
-
declare class IgxPivotRowHeaderGroupComponent extends IgxGridHeaderGroupComponent implements PivotRowHeaderGroupType {
|
|
34395
|
-
private cdRef;
|
|
34396
|
-
grid: PivotGridType;
|
|
34397
|
-
private elementRef;
|
|
34398
|
-
colResizingService: IgxPivotColumnResizingService;
|
|
34399
|
-
protected zone: NgZone;
|
|
34400
|
-
/**
|
|
34401
|
-
* @hidden
|
|
34402
|
-
*/
|
|
34403
|
-
userSelect: string;
|
|
34404
|
-
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
34405
|
-
/**
|
|
34406
|
-
* @hidden
|
|
34407
|
-
* @internal
|
|
34408
|
-
*/
|
|
34409
|
-
rowIndex: number;
|
|
34410
|
-
set dimWidth(value: number);
|
|
34411
|
-
get dimWidth(): number;
|
|
34412
|
-
get parent(): this;
|
|
34413
|
-
rootDimension: IPivotDimension;
|
|
34414
|
-
header: IgxPivotRowDimensionHeaderComponent;
|
|
34415
|
-
get headerID(): string;
|
|
34416
|
-
get title(): string;
|
|
34417
|
-
/**
|
|
34418
|
-
* @hidden
|
|
34419
|
-
* @internal
|
|
34420
|
-
*/
|
|
34421
|
-
get visibleIndex(): number;
|
|
34422
|
-
get active(): boolean;
|
|
34423
|
-
get sortAscendingStyle(): boolean;
|
|
34424
|
-
get sortDescendingStyle(): boolean;
|
|
34425
|
-
get sortableStyle(): boolean;
|
|
34426
|
-
get sortedStyle(): boolean;
|
|
34427
|
-
protected get activeNode(): {
|
|
34428
|
-
row: number;
|
|
34429
|
-
column: number;
|
|
34430
|
-
level: any;
|
|
34431
|
-
mchCache: {
|
|
34432
|
-
level: number;
|
|
34433
|
-
visibleIndex: number;
|
|
34434
|
-
};
|
|
34435
|
-
layout: any;
|
|
34436
|
-
};
|
|
34437
|
-
activate(): void;
|
|
34438
|
-
/**
|
|
34439
|
-
* @hidden @internal
|
|
34440
|
-
*/
|
|
34441
|
-
pointerdown(_event: PointerEvent): void;
|
|
34442
|
-
/**
|
|
34443
|
-
* @hidden @internal
|
|
34444
|
-
*/
|
|
34445
|
-
onMouseDown(_event: MouseEvent): void;
|
|
34446
|
-
get selectable(): boolean;
|
|
34447
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgxPivotRowHeaderGroupComponent, never>;
|
|
34448
|
-
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>;
|
|
34449
|
-
}
|
|
34450
|
-
|
|
34451
34508
|
/**
|
|
34452
34509
|
*
|
|
34453
34510
|
* For all intents & purposes treat this component as what a <thead> usually is in the default <table> element.
|
|
@@ -34461,6 +34518,7 @@ declare class IgxPivotRowDimensionMrlRowComponent extends IgxGridHeaderRowCompon
|
|
|
34461
34518
|
protected injector: Injector;
|
|
34462
34519
|
protected envInjector: EnvironmentInjector;
|
|
34463
34520
|
protected viewRef: ViewContainerRef;
|
|
34521
|
+
rowDimensionContentCollection: QueryList<IgxPivotRowDimensionContentComponent>;
|
|
34464
34522
|
pivotDim: boolean;
|
|
34465
34523
|
mrlBlock: boolean;
|
|
34466
34524
|
get rowsTemplate(): string;
|
|
@@ -34661,6 +34719,10 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
|
|
|
34661
34719
|
* @hidden @internal
|
|
34662
34720
|
*/
|
|
34663
34721
|
recordTemplate: TemplateRef<any>;
|
|
34722
|
+
/**
|
|
34723
|
+
* @hidden @internal
|
|
34724
|
+
*/
|
|
34725
|
+
rowDimensionMrlComponent: IgxPivotRowDimensionMrlRowComponent;
|
|
34664
34726
|
/**
|
|
34665
34727
|
* @hidden @internal
|
|
34666
34728
|
*/
|
|
@@ -35399,6 +35461,8 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
|
|
|
35399
35461
|
get excelStyleFilterMinHeight(): string;
|
|
35400
35462
|
/** @hidden @internal */
|
|
35401
35463
|
get activeDescendant(): string;
|
|
35464
|
+
/** @hidden @internal */
|
|
35465
|
+
get headerRowActiveDescendant(): string;
|
|
35402
35466
|
protected resolveToggle(groupColumn: IgxColumnComponent, state: boolean): void;
|
|
35403
35467
|
protected buildDataView(data: any[]): void;
|
|
35404
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": {
|