@progress/kendo-angular-pivotgrid 11.0.0-develop.108 → 11.0.0-develop.110

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.
@@ -5,7 +5,7 @@
5
5
  import * as i0 from '@angular/core';
6
6
  import { EventEmitter, Injectable, Output, Component, HostBinding, Input, Directive, ContentChildren, isDevMode, Optional, ContentChild, forwardRef, ViewChild, ElementRef, NgModule } from '@angular/core';
7
7
  import { validatePackage } from '@progress/kendo-licensing';
8
- import * as i3 from '@progress/kendo-angular-common';
8
+ import * as i1$1 from '@progress/kendo-angular-common';
9
9
  import { isDocumentAvailable, PreventableEvent, Keys, isChanged, hasObservers, anyChanged, EventsModule, DraggableModule } from '@progress/kendo-angular-common';
10
10
  import { toTree, toRows, toColumns, toData, configuratorReducer, PIVOT_CONFIGURATOR_ACTION, PivotGridNavigation, ConfiguratorNavigation, HEADERS_ACTION, headersReducer, createFlatSchemaDimensions, createDataTree, createLocalDataState, rootFields, fetchData, createDataState, fetchDiscover, addKPI, buildKPIMeasures } from '@progress/kendo-pivotgrid-common';
11
11
  export { averageAggregate, maxAggregate, minAggregate, sumAggregate } from '@progress/kendo-pivotgrid-common';
@@ -13,19 +13,22 @@ import { BehaviorSubject, Subscription, Subject, from, of, fromEvent } from 'rxj
13
13
  import { take, mergeMap, merge } from 'rxjs/operators';
14
14
  import * as i1 from '@progress/kendo-angular-l10n';
15
15
  import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
16
+ import { chevronUpIcon, chevronDownIcon, sortAscSmallIcon, sortDescSmallIcon, filterIcon, moreVerticalIcon, gearIcon } from '@progress/kendo-svg-icons';
17
+ import * as i2 from '@progress/kendo-angular-icons';
18
+ import { IconsModule } from '@progress/kendo-angular-icons';
16
19
  import * as i7 from '@angular/common';
17
20
  import { CommonModule } from '@angular/common';
18
21
  import * as i5$1 from '@progress/kendo-angular-indicators';
19
22
  import { IndicatorsModule } from '@progress/kendo-angular-indicators';
20
23
  import * as i4 from '@progress/kendo-angular-treeview';
21
24
  import { TreeViewComponent, TreeViewModule } from '@progress/kendo-angular-treeview';
22
- import * as i1$1 from '@progress/kendo-angular-popup';
25
+ import * as i1$2 from '@progress/kendo-angular-popup';
23
26
  import * as i5 from '@progress/kendo-angular-buttons';
24
27
  import { ButtonsModule } from '@progress/kendo-angular-buttons';
25
28
  import { trigger, state, style, transition, animate } from '@angular/animations';
26
- import * as i3$1 from '@angular/forms';
29
+ import * as i3 from '@angular/forms';
27
30
  import { NG_VALUE_ACCESSOR, ReactiveFormsModule, FormsModule } from '@angular/forms';
28
- import * as i1$2 from '@progress/kendo-angular-dropdowns';
31
+ import * as i1$3 from '@progress/kendo-angular-dropdowns';
29
32
  import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
30
33
  import * as i6 from '@progress/kendo-angular-inputs';
31
34
  import { InputsModule } from '@progress/kendo-angular-inputs';
@@ -38,7 +41,7 @@ const packageMetadata = {
38
41
  name: '@progress/kendo-angular-pivotgrid',
39
42
  productName: 'Kendo UI for Angular',
40
43
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
41
- publishDate: 1673546563,
44
+ publishDate: 1673550385,
42
45
  version: '',
43
46
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
44
47
  };
@@ -317,6 +320,8 @@ class PivotGridCellDirective {
317
320
  this.renderer = renderer;
318
321
  this.dataService = dataService;
319
322
  this.cellClass = true;
323
+ this.chevronUpSVGIcon = chevronUpIcon;
324
+ this.chevronDownSVGIcon = chevronDownIcon;
320
325
  this.handleClick = () => {
321
326
  this.dataService.expandedStateChange.emit({
322
327
  action: this.expanded ? 'collapse' : 'expand',
@@ -351,34 +356,28 @@ class PivotGridCellDirective {
351
356
  }
352
357
  PivotGridCellDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PivotGridCellDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: PivotGridDataService }], target: i0.ɵɵFactoryTarget.Component });
353
358
  PivotGridCellDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PivotGridCellDirective, selector: "[kendoPivotGridCell]", inputs: { kendoPivotGridCell: "kendoPivotGridCell", tableType: "tableType", rowIndex: "rowIndex", colIndex: "colIndex" }, host: { properties: { "class.k-pivotgrid-cell": "this.cellClass" } }, ngImport: i0, template: `
354
- <span
359
+ <kendo-icon-wrapper
355
360
  *ngIf="kendoPivotGridCell.hasChildren && !kendoPivotGridCell.total"
356
- class="k-icon"
357
361
  aria-hidden="true"
358
- [kendoEventsOutsideAngular]="{
359
- click: handleClick
360
- }"
361
- [ngClass]="{
362
- 'k-i-arrow-chevron-up': expanded,
363
- 'k-i-arrow-chevron-down': !expanded
364
- }"></span>{{ kendoPivotGridCell.data ? kendoPivotGridCell.data.fmtValue : kendoPivotGridCell.caption }}`, isInline: true, directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
362
+ [kendoEventsOutsideAngular]="{ click: handleClick }"
363
+ [name]="expanded ? 'chevron-up' : 'chevron-down'"
364
+ [svgIcon]="expanded ? chevronUpSVGIcon : chevronDownSVGIcon">
365
+ </kendo-icon-wrapper>
366
+ {{ kendoPivotGridCell.data ? kendoPivotGridCell.data.fmtValue : kendoPivotGridCell.caption }}`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
365
367
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PivotGridCellDirective, decorators: [{
366
368
  type: Component,
367
369
  args: [{
368
370
  // eslint-disable-next-line @angular-eslint/component-selector
369
371
  selector: '[kendoPivotGridCell]',
370
372
  template: `
371
- <span
373
+ <kendo-icon-wrapper
372
374
  *ngIf="kendoPivotGridCell.hasChildren && !kendoPivotGridCell.total"
373
- class="k-icon"
374
375
  aria-hidden="true"
375
- [kendoEventsOutsideAngular]="{
376
- click: handleClick
377
- }"
378
- [ngClass]="{
379
- 'k-i-arrow-chevron-up': expanded,
380
- 'k-i-arrow-chevron-down': !expanded
381
- }"></span>{{ kendoPivotGridCell.data ? kendoPivotGridCell.data.fmtValue : kendoPivotGridCell.caption }}`
376
+ [kendoEventsOutsideAngular]="{ click: handleClick }"
377
+ [name]="expanded ? 'chevron-up' : 'chevron-down'"
378
+ [svgIcon]="expanded ? chevronUpSVGIcon : chevronDownSVGIcon">
379
+ </kendo-icon-wrapper>
380
+ {{ kendoPivotGridCell.data ? kendoPivotGridCell.data.fmtValue : kendoPivotGridCell.caption }}`
382
381
  }]
383
382
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: PivotGridDataService }]; }, propDecorators: { cellClass: [{
384
383
  type: HostBinding,
@@ -717,11 +716,11 @@ class SinglePopupService {
717
716
  });
718
717
  }
719
718
  }
720
- SinglePopupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SinglePopupService, deps: [{ token: i1$1.PopupService }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: PivotLocalizationService }], target: i0.ɵɵFactoryTarget.Injectable });
719
+ SinglePopupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SinglePopupService, deps: [{ token: i1$2.PopupService }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: PivotLocalizationService }], target: i0.ɵɵFactoryTarget.Injectable });
721
720
  SinglePopupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SinglePopupService });
722
721
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SinglePopupService, decorators: [{
723
722
  type: Injectable
724
- }], ctorParameters: function () { return [{ type: i1$1.PopupService }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: PivotLocalizationService }]; } });
723
+ }], ctorParameters: function () { return [{ type: i1$2.PopupService }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: PivotLocalizationService }]; } });
725
724
 
726
725
  /**
727
726
  * @hidden
@@ -934,6 +933,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
934
933
  }] }];
935
934
  } });
936
935
 
936
+ /* eslint-disable @typescript-eslint/no-explicit-any */
937
937
  /**
938
938
  * @hidden
939
939
  *
@@ -980,23 +980,26 @@ class ChipMenuItemComponent {
980
980
  }
981
981
  }
982
982
  ChipMenuItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ChipMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
983
- ChipMenuItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: { icon: "icon", text: "text", selected: "selected", expanded: "expanded" }, outputs: { itemClick: "itemClick", expand: "expand", collapse: "collapse" }, queries: [{ propertyName: "contentTemplate", first: true, predicate: ChipMenuItemContentTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
983
+ ChipMenuItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: { icon: "icon", svgIcon: "svgIcon", text: "text", selected: "selected", expanded: "expanded" }, outputs: { itemClick: "itemClick", expand: "expand", collapse: "collapse" }, queries: [{ propertyName: "contentTemplate", first: true, predicate: ChipMenuItemContentTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
984
984
  <div
985
985
  class="k-columnmenu-item"
986
986
  (click)="onClick($event)"
987
987
  (keydown.enter)="onClick($event)"
988
988
  [class.k-selected]="selected"
989
989
  role="button"
990
- [attr.aria-expanded]="expanded">
991
- <span *ngIf="icon" class="k-icon" [ngClass]="iconClass">
992
- </span>
990
+ [attr.aria-expanded]="expanded"
991
+ >
992
+ <kendo-icon-wrapper
993
+ *ngIf="icon"
994
+ [name]="icon"
995
+ [svgIcon]="svgIcon"
996
+ ></kendo-icon-wrapper>
993
997
  {{ text }}
994
998
  </div>
995
999
  <div *ngIf="contentTemplate" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
996
- <ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
997
- </ng-container>
1000
+ <ng-container [ngTemplateOutlet]="contentTemplate.templateRef"></ng-container>
998
1001
  <div>
999
- `, isInline: true, directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i7.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], animations: [
1002
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], animations: [
1000
1003
  trigger('state', [
1001
1004
  state('collapsed', style({ display: 'none' })),
1002
1005
  state('expanded', style({ display: 'block' })),
@@ -1053,14 +1056,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1053
1056
  (keydown.enter)="onClick($event)"
1054
1057
  [class.k-selected]="selected"
1055
1058
  role="button"
1056
- [attr.aria-expanded]="expanded">
1057
- <span *ngIf="icon" class="k-icon" [ngClass]="iconClass">
1058
- </span>
1059
+ [attr.aria-expanded]="expanded"
1060
+ >
1061
+ <kendo-icon-wrapper
1062
+ *ngIf="icon"
1063
+ [name]="icon"
1064
+ [svgIcon]="svgIcon"
1065
+ ></kendo-icon-wrapper>
1059
1066
  {{ text }}
1060
1067
  </div>
1061
1068
  <div *ngIf="contentTemplate" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
1062
- <ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
1063
- </ng-container>
1069
+ <ng-container [ngTemplateOutlet]="contentTemplate.templateRef"></ng-container>
1064
1070
  <div>
1065
1071
  `
1066
1072
  }]
@@ -1072,6 +1078,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1072
1078
  type: Output
1073
1079
  }], icon: [{
1074
1080
  type: Input
1081
+ }], svgIcon: [{
1082
+ type: Input
1075
1083
  }], text: [{
1076
1084
  type: Input
1077
1085
  }], selected: [{
@@ -1095,6 +1103,8 @@ class ChipMenuSortComponent extends ChipMenuItemBase {
1095
1103
  this.localization = localization;
1096
1104
  this.renderer = renderer;
1097
1105
  this.configuratorService = configuratorService;
1106
+ this.sortAscSVGIcon = sortAscSmallIcon;
1107
+ this.sortDescSVGIcon = sortDescSmallIcon;
1098
1108
  }
1099
1109
  get sortedAsc() {
1100
1110
  const descriptor = this.descriptor;
@@ -1129,16 +1139,18 @@ ChipMenuSortComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
1129
1139
  <kendo-pivot-chipmenu-item
1130
1140
  [text]="messageFor('fieldMenuSortAscendingItemLabel')"
1131
1141
  icon="sort-asc-small"
1142
+ [svgIcon]="sortAscSVGIcon"
1132
1143
  (itemClick)="toggleSort('asc')"
1133
1144
  [selected]="sortedAsc">
1134
1145
  </kendo-pivot-chipmenu-item>
1135
1146
  <kendo-pivot-chipmenu-item
1136
1147
  [text]="messageFor('fieldMenuSortDescendingItemLabel')"
1137
1148
  icon="sort-desc-small"
1149
+ [svgIcon]="sortDescSVGIcon"
1138
1150
  (itemClick)="toggleSort('desc')"
1139
1151
  [selected]="sortedDesc">
1140
1152
  </kendo-pivot-chipmenu-item>
1141
- `, isInline: true, components: [{ type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: ["icon", "text", "selected", "expanded"], outputs: ["itemClick", "expand", "collapse"] }] });
1153
+ `, isInline: true, components: [{ type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "expanded"], outputs: ["itemClick", "expand", "collapse"] }] });
1142
1154
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ChipMenuSortComponent, decorators: [{
1143
1155
  type: Component,
1144
1156
  args: [{
@@ -1147,12 +1159,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1147
1159
  <kendo-pivot-chipmenu-item
1148
1160
  [text]="messageFor('fieldMenuSortAscendingItemLabel')"
1149
1161
  icon="sort-asc-small"
1162
+ [svgIcon]="sortAscSVGIcon"
1150
1163
  (itemClick)="toggleSort('asc')"
1151
1164
  [selected]="sortedAsc">
1152
1165
  </kendo-pivot-chipmenu-item>
1153
1166
  <kendo-pivot-chipmenu-item
1154
1167
  [text]="messageFor('fieldMenuSortDescendingItemLabel')"
1155
1168
  icon="sort-desc-small"
1169
+ [svgIcon]="sortDescSVGIcon"
1156
1170
  (itemClick)="toggleSort('desc')"
1157
1171
  [selected]="sortedDesc">
1158
1172
  </kendo-pivot-chipmenu-item>
@@ -1184,12 +1198,12 @@ class FilterMenuDropDownListDirective {
1184
1198
  this.host.wrapper.nativeElement.removeEventListener('keydown', this.keydownHandler);
1185
1199
  }
1186
1200
  }
1187
- FilterMenuDropDownListDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterMenuDropDownListDirective, deps: [{ token: i1$2.DropDownListComponent }], target: i0.ɵɵFactoryTarget.Directive });
1201
+ FilterMenuDropDownListDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterMenuDropDownListDirective, deps: [{ token: i1$3.DropDownListComponent }], target: i0.ɵɵFactoryTarget.Directive });
1188
1202
  FilterMenuDropDownListDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: { filterMenuDropDownLabel: "filterMenuDropDownLabel" }, ngImport: i0 });
1189
1203
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterMenuDropDownListDirective, decorators: [{
1190
1204
  type: Directive,
1191
1205
  args: [{ selector: '[kendoFilterMenuDropDown]' }]
1192
- }], ctorParameters: function () { return [{ type: i1$2.DropDownListComponent }]; }, propDecorators: { filterMenuDropDownLabel: [{
1206
+ }], ctorParameters: function () { return [{ type: i1$3.DropDownListComponent }]; }, propDecorators: { filterMenuDropDownLabel: [{
1193
1207
  type: Input
1194
1208
  }] } });
1195
1209
 
@@ -1258,7 +1272,7 @@ class StringFilterMenuComponent {
1258
1272
  this.subscription.unsubscribe();
1259
1273
  }
1260
1274
  }
1261
- StringFilterMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StringFilterMenuComponent, deps: [{ token: PivotLocalizationService }, { token: ConfiguratorService }, { token: i3$1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component });
1275
+ StringFilterMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StringFilterMenuComponent, deps: [{ token: PivotLocalizationService }, { token: ConfiguratorService }, { token: i3.FormBuilder }], target: i0.ɵɵFactoryTarget.Component });
1262
1276
  StringFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: StringFilterMenuComponent, selector: "kendo-pivot-string-filter-menu", inputs: { chip: "chip", menuTabbingService: "menuTabbingService" }, providers: [{
1263
1277
  provide: NG_VALUE_ACCESSOR,
1264
1278
  useExisting: forwardRef(() => StringFilterMenuComponent),
@@ -1279,7 +1293,7 @@ StringFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
1279
1293
  formControlName="value"
1280
1294
  />
1281
1295
  </ng-container>
1282
- `, isInline: true, components: [{ type: i1$2.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], directives: [{ type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }, { type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: i6.TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }] });
1296
+ `, isInline: true, components: [{ type: i1$3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], directives: [{ type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }, { type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: i6.TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }] });
1283
1297
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
1284
1298
  type: Component,
1285
1299
  args: [{
@@ -1307,7 +1321,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1307
1321
  </ng-container>
1308
1322
  `
1309
1323
  }]
1310
- }], ctorParameters: function () { return [{ type: PivotLocalizationService }, { type: ConfiguratorService }, { type: i3$1.FormBuilder }]; }, propDecorators: { chip: [{
1324
+ }], ctorParameters: function () { return [{ type: PivotLocalizationService }, { type: ConfiguratorService }, { type: i3.FormBuilder }]; }, propDecorators: { chip: [{
1311
1325
  type: Input
1312
1326
  }], menuTabbingService: [{
1313
1327
  type: Input
@@ -1407,7 +1421,7 @@ FilterMenuContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
1407
1421
  </div>
1408
1422
  </div>
1409
1423
  </form>
1410
- `, isInline: true, components: [{ type: StringFilterMenuComponent, selector: "kendo-pivot-string-filter-menu", inputs: ["chip", "menuTabbingService"] }, { type: i5.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i3$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i3$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1424
+ `, isInline: true, components: [{ type: StringFilterMenuComponent, selector: "kendo-pivot-string-filter-menu", inputs: ["chip", "menuTabbingService"] }, { type: i5.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1411
1425
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterMenuContainerComponent, decorators: [{
1412
1426
  type: Component,
1413
1427
  args: [{
@@ -1486,6 +1500,7 @@ class ChipMenuFilterComponent extends ChipMenuItemBase {
1486
1500
  this.expanded = false;
1487
1501
  this.isLast = false;
1488
1502
  this.actionsClass = 'k-columnmenu-actions';
1503
+ this.filterSVGIcon = filterIcon;
1489
1504
  }
1490
1505
  onCollapse() {
1491
1506
  this.expanded = false;
@@ -1511,6 +1526,7 @@ ChipMenuFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
1511
1526
  classs="k-widget k-expander"
1512
1527
  [text]="messageFor('fieldMenuFilterItemLabel')"
1513
1528
  icon="filter"
1529
+ [svgIcon]="filterSVGIcon"
1514
1530
  [expanded]="expanded"
1515
1531
  (collapse)="onCollapse()"
1516
1532
  (expand)="onExpand()">
@@ -1526,7 +1542,7 @@ ChipMenuFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
1526
1542
  </kendo-pivot-filter-menu-container>
1527
1543
  </ng-template>
1528
1544
  </kendo-pivot-chipmenu-item>
1529
- `, isInline: true, components: [{ type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: ["icon", "text", "selected", "expanded"], outputs: ["itemClick", "expand", "collapse"] }, { type: FilterMenuContainerComponent, selector: "kendo-pivot-filter-menu-container", inputs: ["chip", "isLast", "isExpanded", "menuTabbingService", "actionsClass"], outputs: ["close"] }], directives: [{ type: ChipMenuItemContentTemplateDirective, selector: "[kendoPivotChipMenuItemContentTemplate]" }] });
1545
+ `, isInline: true, components: [{ type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "expanded"], outputs: ["itemClick", "expand", "collapse"] }, { type: FilterMenuContainerComponent, selector: "kendo-pivot-filter-menu-container", inputs: ["chip", "isLast", "isExpanded", "menuTabbingService", "actionsClass"], outputs: ["close"] }], directives: [{ type: ChipMenuItemContentTemplateDirective, selector: "[kendoPivotChipMenuItemContentTemplate]" }] });
1530
1546
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ChipMenuFilterComponent, decorators: [{
1531
1547
  type: Component,
1532
1548
  args: [{
@@ -1536,6 +1552,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1536
1552
  classs="k-widget k-expander"
1537
1553
  [text]="messageFor('fieldMenuFilterItemLabel')"
1538
1554
  icon="filter"
1555
+ [svgIcon]="filterSVGIcon"
1539
1556
  [expanded]="expanded"
1540
1557
  (collapse)="onCollapse()"
1541
1558
  (expand)="onExpand()">
@@ -1565,6 +1582,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1565
1582
  type: Input
1566
1583
  }] } });
1567
1584
 
1585
+ /* eslint-disable @typescript-eslint/no-explicit-any */
1568
1586
  const POPUP_CLASS = 'k-column-menu';
1569
1587
  /**
1570
1588
  * @hidden
@@ -1577,20 +1595,22 @@ class ChipMenuComponent {
1577
1595
  this.localization = localization;
1578
1596
  this.service = service;
1579
1597
  this.tabIndex = '-1';
1598
+ this.menuItemSVGIcon = moreVerticalIcon;
1580
1599
  this.closeSubscription = service.closeMenu.subscribe(this.close.bind(this));
1581
1600
  }
1582
1601
  ngOnDestroy() {
1583
1602
  this.close();
1584
1603
  this.closeSubscription.unsubscribe();
1585
1604
  }
1586
- toggle(e, anchor, template) {
1605
+ toggle(e, template) {
1587
1606
  if (e) {
1588
1607
  e.preventDefault();
1589
1608
  e.stopImmediatePropagation();
1590
1609
  }
1610
+ const anchor = this.anchor.nativeElement;
1591
1611
  this.popupRef = this.popupService.open(anchor, template, this.popupRef, POPUP_CLASS);
1592
1612
  if (!this.popupRef) {
1593
- this.anchor.nativeElement.focus();
1613
+ anchor.focus();
1594
1614
  }
1595
1615
  }
1596
1616
  close() {
@@ -1608,13 +1628,16 @@ ChipMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", versio
1608
1628
  ChipMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ChipMenuComponent, selector: "kendo-pivot-chip-menu", inputs: { chip: "chip", tabIndex: "tabIndex" }, providers: [
1609
1629
  ChipMenuService,
1610
1630
  MenuTabbingService
1611
- ], viewQueries: [{ propertyName: "anchor", first: true, predicate: ["anchor"], descendants: true, static: true }], ngImport: i0, template: `
1612
- <span #anchor
1613
- class="k-icon k-i-more-vertical"
1614
- (click)="toggle($event, anchor, template)"
1631
+ ], viewQueries: [{ propertyName: "anchor", first: true, predicate: ["anchor"], descendants: true, read: ElementRef, static: true }], ngImport: i0, template: `
1632
+ <kendo-icon-wrapper
1633
+ #anchor
1634
+ name="more-vertical"
1635
+ [svgIcon]="menuItemSVGIcon"
1636
+ (click)="toggle($event, template)"
1615
1637
  [tabindex]="tabIndex"
1616
- [attr.title]="chipMenuTitle">
1617
- </span>
1638
+ [attr.title]="chipMenuTitle"
1639
+ >
1640
+ </kendo-icon-wrapper>
1618
1641
  <ng-template #template>
1619
1642
  <kendo-pivot-chipmenu-container
1620
1643
  (keydown.escape)="close()"
@@ -1634,7 +1657,7 @@ ChipMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
1634
1657
  </kendo-pivot-chipmenu-filter>
1635
1658
  </kendo-pivot-chipmenu-container>
1636
1659
  </ng-template>
1637
- `, isInline: true, components: [{ type: ChipMenuContainerComponent, selector: "kendo-pivot-chipmenu-container" }, { type: ChipMenuSortComponent, selector: "kendo-pivot-chipmenu-sort", inputs: ["chip"] }, { type: ChipMenuFilterComponent, selector: "kendo-pivot-chipmenu-filter", inputs: ["chip", "expanded", "isLast"], outputs: ["expand", "collapse"] }], directives: [{ type: ChipMenuItemDirective, selector: "[kendoPivotChipMenuItem]", inputs: ["kendoPivotChipMenuItem"] }] });
1660
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: ChipMenuContainerComponent, selector: "kendo-pivot-chipmenu-container" }, { type: ChipMenuSortComponent, selector: "kendo-pivot-chipmenu-sort", inputs: ["chip"] }, { type: ChipMenuFilterComponent, selector: "kendo-pivot-chipmenu-filter", inputs: ["chip", "expanded", "isLast"], outputs: ["expand", "collapse"] }], directives: [{ type: ChipMenuItemDirective, selector: "[kendoPivotChipMenuItem]", inputs: ["kendoPivotChipMenuItem"] }] });
1638
1661
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ChipMenuComponent, decorators: [{
1639
1662
  type: Component,
1640
1663
  args: [{
@@ -1644,12 +1667,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1644
1667
  ],
1645
1668
  selector: 'kendo-pivot-chip-menu',
1646
1669
  template: `
1647
- <span #anchor
1648
- class="k-icon k-i-more-vertical"
1649
- (click)="toggle($event, anchor, template)"
1670
+ <kendo-icon-wrapper
1671
+ #anchor
1672
+ name="more-vertical"
1673
+ [svgIcon]="menuItemSVGIcon"
1674
+ (click)="toggle($event, template)"
1650
1675
  [tabindex]="tabIndex"
1651
- [attr.title]="chipMenuTitle">
1652
- </span>
1676
+ [attr.title]="chipMenuTitle"
1677
+ >
1678
+ </kendo-icon-wrapper>
1653
1679
  <ng-template #template>
1654
1680
  <kendo-pivot-chipmenu-container
1655
1681
  (keydown.escape)="close()"
@@ -1677,7 +1703,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1677
1703
  type: Input
1678
1704
  }], anchor: [{
1679
1705
  type: ViewChild,
1680
- args: ['anchor', { static: true }]
1706
+ args: ['anchor', { static: true, read: ElementRef }]
1681
1707
  }] } });
1682
1708
 
1683
1709
  /**
@@ -1931,7 +1957,7 @@ class DraggableChipDirective {
1931
1957
  this.subs.unsubscribe();
1932
1958
  }
1933
1959
  }
1934
- DraggableChipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DraggableChipDirective, deps: [{ token: i3.DraggableDirective, optional: true }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: ConfiguratorService }, { token: DropCueService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
1960
+ DraggableChipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DraggableChipDirective, deps: [{ token: i1$1.DraggableDirective, optional: true }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: ConfiguratorService }, { token: DropCueService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
1935
1961
  DraggableChipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: DraggableChipDirective, selector: "[kendoChipDraggable]", inputs: { item: "item" }, host: { properties: { "style.pointerEvents": "this.pointerEvents", "style.touch-action": "this.touchActions" } }, ngImport: i0 });
1936
1962
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DraggableChipDirective, decorators: [{
1937
1963
  type: Directive,
@@ -1939,7 +1965,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1939
1965
  selector: '[kendoChipDraggable]'
1940
1966
  }]
1941
1967
  }], ctorParameters: function () {
1942
- return [{ type: i3.DraggableDirective, decorators: [{
1968
+ return [{ type: i1$1.DraggableDirective, decorators: [{
1943
1969
  type: Optional
1944
1970
  }] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: ConfiguratorService }, { type: DropCueService }, { type: i0.Renderer2 }];
1945
1971
  }, propDecorators: { pointerEvents: [{
@@ -2476,7 +2502,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2476
2502
  <button kendoButton themeColor="primary" type="button" (click)="handleSubmit()">{{messageFor('configuratorApplyButtonText')}}</button>
2477
2503
  </div>
2478
2504
  </div>
2479
- `, isInline: true, components: [{ type: i4.TreeViewComponent, selector: "kendo-treeview", inputs: ["filterInputPlaceholder", "expandDisabledNodes", "animate", "nodeTemplate", "loadMoreButtonTemplate", "trackBy", "nodes", "textField", "hasChildren", "isChecked", "isDisabled", "isExpanded", "isSelected", "isVisible", "navigable", "children", "loadOnDemand", "filterable", "filter", "size", "disableParentNodesOnly"], outputs: ["childrenLoaded", "blur", "focus", "expand", "collapse", "nodeDragStart", "nodeDrag", "filterStateChange", "nodeDrop", "nodeDragEnd", "addItem", "removeItem", "checkedChange", "selectionChange", "filterChange", "nodeClick", "nodeDblClick"], exportAs: ["kendoTreeView"] }, { type: i5.ChipListComponent, selector: "kendo-chiplist, kendo-chip-list", inputs: ["selection", "size"], outputs: ["selectedChange", "remove"] }, { type: i5.ChipComponent, selector: "kendo-chip", inputs: ["label", "icon", "svgIcon", "iconClass", "avatarClass", "selected", "removable", "removeIcon", "removeSvgIcon", "disabled", "size", "rounded", "fillMode", "themeColor"], outputs: ["remove", "contentClick"] }, { type: ChipMenuComponent, selector: "kendo-pivot-chip-menu", inputs: ["chip", "tabIndex"] }, { type: i5.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i7.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i4.ExpandDirective, selector: "[kendoTreeViewExpandable]", inputs: ["isExpanded", "expandBy", "expandOnFilter", "expandedKeys"], outputs: ["expandedKeysChange"] }, { type: i4.NodeTemplateDirective, selector: "[kendoTreeViewNodeTemplate]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { type: i7.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["item", "axes"] }, { type: i7.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: DraggableChipDirective, selector: "[kendoChipDraggable]", inputs: ["item"] }, { type: i3.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { type: ChipKeyboardNavigationDirective, selector: "[kendoChipKeyboardNavigation]", outputs: ["reorder"] }] });
2505
+ `, isInline: true, components: [{ type: i4.TreeViewComponent, selector: "kendo-treeview", inputs: ["filterInputPlaceholder", "expandDisabledNodes", "animate", "nodeTemplate", "loadMoreButtonTemplate", "trackBy", "nodes", "textField", "hasChildren", "isChecked", "isDisabled", "isExpanded", "isSelected", "isVisible", "navigable", "children", "loadOnDemand", "filterable", "filter", "size", "disableParentNodesOnly"], outputs: ["childrenLoaded", "blur", "focus", "expand", "collapse", "nodeDragStart", "nodeDrag", "filterStateChange", "nodeDrop", "nodeDragEnd", "addItem", "removeItem", "checkedChange", "selectionChange", "filterChange", "nodeClick", "nodeDblClick"], exportAs: ["kendoTreeView"] }, { type: i5.ChipListComponent, selector: "kendo-chiplist, kendo-chip-list", inputs: ["selection", "size"], outputs: ["selectedChange", "remove"] }, { type: i5.ChipComponent, selector: "kendo-chip", inputs: ["label", "icon", "svgIcon", "iconClass", "avatarClass", "selected", "removable", "removeIcon", "removeSvgIcon", "disabled", "size", "rounded", "fillMode", "themeColor"], outputs: ["remove", "contentClick"] }, { type: ChipMenuComponent, selector: "kendo-pivot-chip-menu", inputs: ["chip", "tabIndex"] }, { type: i5.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i7.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i4.ExpandDirective, selector: "[kendoTreeViewExpandable]", inputs: ["isExpanded", "expandBy", "expandOnFilter", "expandedKeys"], outputs: ["expandedKeysChange"] }, { type: i4.NodeTemplateDirective, selector: "[kendoTreeViewNodeTemplate]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { type: i7.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["item", "axes"] }, { type: i7.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: DraggableChipDirective, selector: "[kendoChipDraggable]", inputs: ["item"] }, { type: i1$1.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { type: ChipKeyboardNavigationDirective, selector: "[kendoChipKeyboardNavigation]", outputs: ["reorder"] }] });
2480
2506
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PivotGridConfiguratorComponent, decorators: [{
2481
2507
  type: Component,
2482
2508
  args: [{
@@ -2825,6 +2851,10 @@ class PivotGridComponent {
2825
2851
  * @default false
2826
2852
  */
2827
2853
  this.navigable = false;
2854
+ /**
2855
+ * @hidden
2856
+ */
2857
+ this.gearSVGIcon = gearIcon;
2828
2858
  this.resizeObservers = [];
2829
2859
  this._loaderSettings = DEFAULT_LOADER_SETTINGS;
2830
2860
  this.subs = new Subscription();
@@ -3010,7 +3040,7 @@ class PivotGridComponent {
3010
3040
  }
3011
3041
  }
3012
3042
  }
3013
- PivotGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PivotGridComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: PivotGridDataService }, { token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i3.ScrollbarWidthService }], target: i0.ɵɵFactoryTarget.Component });
3043
+ PivotGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PivotGridComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: PivotGridDataService }, { token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i1$1.ScrollbarWidthService }], target: i0.ɵɵFactoryTarget.Component });
3014
3044
  PivotGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PivotGridComponent, selector: "kendo-pivotgrid", inputs: { loaderSettings: "loaderSettings", configurator: "configurator", columnHeadersWidth: "columnHeadersWidth", navigable: "navigable" }, host: { properties: { "class.k-d-flex": "this.hostClass", "class.k-pos-relative": "this.hostClass", "class.k-flex-row": "this.rightPositionClass", "class.k-flex-row-reverse": "this.leftPositionClass", "class.k-flex-column": "this.bottomPositionClass", "class.k-flex-column-reverse": "this.topPositionClass", "attr.dir": "this.dir" } }, providers: [
3015
3045
  PivotGridDataService,
3016
3046
  LocalizationService,
@@ -3155,10 +3185,10 @@ PivotGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
3155
3185
  class="k-pivotgrid-configurator-button"
3156
3186
  aria-hidden="true"
3157
3187
  (click)="toggleConfigurator()">
3158
- <span>{{messageFor('configuratorButtonText')}}<span class="k-icon k-i-gear k-color-inherit"></span>
3188
+ <span>{{messageFor('configuratorButtonText')}}<kendo-icon-wrapper name="gear" innerCssClass="k-color-inherit" [svgIcon]="gearSVGIcon"></kendo-icon-wrapper>
3159
3189
  </span>
3160
3190
  </div>
3161
- `, isInline: true, components: [{ type: PivotGridTableComponent, selector: "kendo-pivotgrid-table", inputs: ["tableType", "colWidth"] }, { type: i5$1.LoaderComponent, selector: "kendo-loader", inputs: ["type", "themeColor", "size"] }, { type: PivotGridConfiguratorComponent, selector: "kendo-pivotgrid-configurator", inputs: ["orientation", "sort", "filter", "navigation"], outputs: ["close"] }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoPivotGridLocalizedMessages]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
3191
+ `, isInline: true, components: [{ type: PivotGridTableComponent, selector: "kendo-pivotgrid-table", inputs: ["tableType", "colWidth"] }, { type: i5$1.LoaderComponent, selector: "kendo-loader", inputs: ["type", "themeColor", "size"] }, { type: PivotGridConfiguratorComponent, selector: "kendo-pivotgrid-configurator", inputs: ["orientation", "sort", "filter", "navigation"], outputs: ["close"] }, { type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoPivotGridLocalizedMessages]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
3162
3192
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PivotGridComponent, decorators: [{
3163
3193
  type: Component,
3164
3194
  args: [{
@@ -3308,12 +3338,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3308
3338
  class="k-pivotgrid-configurator-button"
3309
3339
  aria-hidden="true"
3310
3340
  (click)="toggleConfigurator()">
3311
- <span>{{messageFor('configuratorButtonText')}}<span class="k-icon k-i-gear k-color-inherit"></span>
3341
+ <span>{{messageFor('configuratorButtonText')}}<kendo-icon-wrapper name="gear" innerCssClass="k-color-inherit" [svgIcon]="gearSVGIcon"></kendo-icon-wrapper>
3312
3342
  </span>
3313
3343
  </div>
3314
3344
  `
3315
3345
  }]
3316
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: PivotGridDataService }, { type: i1.LocalizationService }, { type: i0.Renderer2 }, { type: i3.ScrollbarWidthService }]; }, propDecorators: { hostClass: [{
3346
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: PivotGridDataService }, { type: i1.LocalizationService }, { type: i0.Renderer2 }, { type: i1$1.ScrollbarWidthService }]; }, propDecorators: { hostClass: [{
3317
3347
  type: HostBinding,
3318
3348
  args: ['class.k-d-flex']
3319
3349
  }, {
@@ -3807,6 +3837,7 @@ const MODULES = [
3807
3837
  CommonModule,
3808
3838
  DropDownsModule,
3809
3839
  InputsModule,
3840
+ IconsModule,
3810
3841
  ButtonsModule
3811
3842
  ];
3812
3843
  /**
@@ -3818,13 +3849,16 @@ SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "1
3818
3849
  SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, imports: [CommonModule,
3819
3850
  DropDownsModule,
3820
3851
  InputsModule,
3852
+ IconsModule,
3821
3853
  ButtonsModule], exports: [CommonModule,
3822
3854
  DropDownsModule,
3823
3855
  InputsModule,
3856
+ IconsModule,
3824
3857
  ButtonsModule] });
3825
3858
  SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, imports: [[MODULES], CommonModule,
3826
3859
  DropDownsModule,
3827
3860
  InputsModule,
3861
+ IconsModule,
3828
3862
  ButtonsModule] });
3829
3863
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, decorators: [{
3830
3864
  type: NgModule,
@@ -3906,7 +3940,8 @@ const IMPORTED_MODULES = [
3906
3940
  TreeViewModule,
3907
3941
  DraggableModule,
3908
3942
  ChipMenuModule,
3909
- SharedModule
3943
+ SharedModule,
3944
+ IconsModule
3910
3945
  ];
3911
3946
  const DECLARATIONS = [
3912
3947
  PivotGridComponent,
@@ -3950,7 +3985,8 @@ PivotGridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
3950
3985
  TreeViewModule,
3951
3986
  DraggableModule,
3952
3987
  ChipMenuModule,
3953
- SharedModule], exports: [PivotGridComponent,
3988
+ SharedModule,
3989
+ IconsModule], exports: [PivotGridComponent,
3954
3990
  PivotGridTableComponent,
3955
3991
  PivotGridCellDirective,
3956
3992
  PivotLocalBindingDirective,