@progress/kendo-angular-pivotgrid 17.0.0-develop.6 → 17.0.0-develop.8

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.
@@ -20,12 +20,12 @@ import * as i3 from '@angular/forms';
20
20
  import { NG_VALUE_ACCESSOR, ReactiveFormsModule, FormsModule } from '@angular/forms';
21
21
  import * as i1$2 from '@progress/kendo-angular-dropdowns';
22
22
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
23
- import { TextBoxDirective, CheckBoxDirective } from '@progress/kendo-angular-inputs';
23
+ import { TextBoxDirective, CheckBoxComponent } from '@progress/kendo-angular-inputs';
24
24
  import { trigger, state, style, transition, animate } from '@angular/animations';
25
25
  import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
26
26
  import * as i1$3 from '@progress/kendo-angular-popup';
27
27
  import { PopupService } from '@progress/kendo-angular-popup';
28
- import { TreeViewComponent, ExpandDirective, NodeTemplateDirective } from '@progress/kendo-angular-treeview';
28
+ import { TreeViewComponent, ExpandDirective, CheckDirective, NodeTemplateDirective } from '@progress/kendo-angular-treeview';
29
29
  import { validatePackage } from '@progress/kendo-licensing';
30
30
  import { LoaderComponent } from '@progress/kendo-angular-indicators';
31
31
  import { DialogContainerService, DialogService, WindowService, WindowContainerService } from '@progress/kendo-angular-dialog';
@@ -883,7 +883,7 @@ FilterMenuContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14
883
883
  </div>
884
884
  </div>
885
885
  </form>
886
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: StringFilterMenuComponent, selector: "kendo-pivot-string-filter-menu", inputs: ["chip", "menuTabbingService"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
886
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: StringFilterMenuComponent, selector: "kendo-pivot-string-filter-menu", inputs: ["chip", "menuTabbingService"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
887
887
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuContainerComponent, decorators: [{
888
888
  type: Component,
889
889
  args: [{
@@ -1640,22 +1640,22 @@ class ChipMenuComponent {
1640
1640
  this.close();
1641
1641
  this.closeSubscription.unsubscribe();
1642
1642
  }
1643
- toggle(e, template) {
1644
- if (e) {
1645
- e.preventDefault();
1646
- e.stopImmediatePropagation();
1643
+ toggle(e) {
1644
+ if (e?.originalEvent) {
1645
+ e.originalEvent.preventDefault();
1646
+ e.originalEvent.stopImmediatePropagation();
1647
1647
  }
1648
- const anchor = this.anchor.nativeElement;
1649
- this.popupRef = this.popupService.open(anchor, template, this.popupRef, POPUP_CLASS);
1648
+ const anchorElement = this.anchor.element.nativeElement;
1649
+ this.popupRef = this.popupService.open(anchorElement, this.template, this.popupRef, POPUP_CLASS);
1650
1650
  this.popupRef && this.renderer.setAttribute(this.popupRef.popupElement, 'dir', this.localization.rtl ? 'rtl' : 'ltr');
1651
1651
  if (!this.popupRef) {
1652
- anchor.focus();
1652
+ anchorElement.focus();
1653
1653
  }
1654
1654
  }
1655
1655
  close() {
1656
1656
  this.popupService.destroy();
1657
1657
  this.popupRef = null;
1658
- this.anchor.nativeElement.closest('.k-chip').focus();
1658
+ this.anchor.element.nativeElement.closest('.k-chip').focus();
1659
1659
  }
1660
1660
  get chipMenuTitle() {
1661
1661
  const localizationMsg = this.localization.get('chipMenuIconTitle') || '';
@@ -1664,19 +1664,10 @@ class ChipMenuComponent {
1664
1664
  }
1665
1665
  }
1666
1666
  ChipMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipMenuComponent, deps: [{ token: SinglePopupService }, { token: PivotLocalizationService }, { token: ChipMenuService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
1667
- ChipMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChipMenuComponent, isStandalone: true, selector: "kendo-pivot-chip-menu", inputs: { chip: "chip", tabIndex: "tabIndex", isMeasureField: "isMeasureField" }, providers: [
1667
+ ChipMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChipMenuComponent, isStandalone: true, selector: "kendo-pivot-chip-menu", inputs: { chip: "chip", tabIndex: "tabIndex", isMeasureField: "isMeasureField", anchor: "anchor" }, providers: [
1668
1668
  ChipMenuService,
1669
1669
  MenuTabbingService
1670
- ], viewQueries: [{ propertyName: "anchor", first: true, predicate: ["anchor"], descendants: true, read: ElementRef, static: true }], ngImport: i0, template: `
1671
- <kendo-icon-wrapper
1672
- #anchor
1673
- name="more-vertical"
1674
- [svgIcon]="menuItemSVGIcon"
1675
- (click)="toggle($event, template)"
1676
- [tabindex]="tabIndex"
1677
- [attr.title]="chipMenuTitle"
1678
- >
1679
- </kendo-icon-wrapper>
1670
+ ], viewQueries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true, static: true }], ngImport: i0, template: `
1680
1671
  <ng-template #template>
1681
1672
  <kendo-pivot-chipmenu-container
1682
1673
  (keydown.escape)="close()"
@@ -1705,7 +1696,7 @@ ChipMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
1705
1696
  [service]="service"></kendo-pivot-chipmenu-reorder>
1706
1697
  </kendo-pivot-chipmenu-container>
1707
1698
  </ng-template>
1708
- `, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: ChipMenuContainerComponent, selector: "kendo-pivot-chipmenu-container" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ChipMenuSortComponent, selector: "kendo-pivot-chipmenu-sort", inputs: ["chip"] }, { kind: "directive", type: ChipMenuItemDirective, selector: "[kendoPivotChipMenuItem]", inputs: ["kendoPivotChipMenuItem"] }, { kind: "component", type: ChipMenuFilterComponent, selector: "kendo-pivot-chipmenu-filter", inputs: ["chip", "expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ChipMenuReorderComponent, selector: "kendo-pivot-chipmenu-reorder", inputs: ["chip"] }] });
1699
+ `, isInline: true, dependencies: [{ kind: "component", type: ChipMenuContainerComponent, selector: "kendo-pivot-chipmenu-container" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ChipMenuSortComponent, selector: "kendo-pivot-chipmenu-sort", inputs: ["chip"] }, { kind: "directive", type: ChipMenuItemDirective, selector: "[kendoPivotChipMenuItem]", inputs: ["kendoPivotChipMenuItem"] }, { kind: "component", type: ChipMenuFilterComponent, selector: "kendo-pivot-chipmenu-filter", inputs: ["chip", "expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ChipMenuReorderComponent, selector: "kendo-pivot-chipmenu-reorder", inputs: ["chip"] }] });
1709
1700
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipMenuComponent, decorators: [{
1710
1701
  type: Component,
1711
1702
  args: [{
@@ -1715,15 +1706,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1715
1706
  ],
1716
1707
  selector: 'kendo-pivot-chip-menu',
1717
1708
  template: `
1718
- <kendo-icon-wrapper
1719
- #anchor
1720
- name="more-vertical"
1721
- [svgIcon]="menuItemSVGIcon"
1722
- (click)="toggle($event, template)"
1723
- [tabindex]="tabIndex"
1724
- [attr.title]="chipMenuTitle"
1725
- >
1726
- </kendo-icon-wrapper>
1727
1709
  <ng-template #template>
1728
1710
  <kendo-pivot-chipmenu-container
1729
1711
  (keydown.escape)="close()"
@@ -1763,8 +1745,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1763
1745
  }], isMeasureField: [{
1764
1746
  type: Input
1765
1747
  }], anchor: [{
1748
+ type: Input
1749
+ }], template: [{
1766
1750
  type: ViewChild,
1767
- args: ['anchor', { static: true, read: ElementRef }]
1751
+ args: ['template', { static: true }]
1768
1752
  }] } });
1769
1753
 
1770
1754
  /**
@@ -2133,6 +2117,9 @@ class PivotGridConfiguratorComponent {
2133
2117
  * A function which determines if a specific node has child nodes.
2134
2118
  */
2135
2119
  this.hasChildren = (node) => !('hierarchyUniqueName' in node) && !('aggregator' in node);
2120
+ this.checkItemBy = (context) => {
2121
+ return context.dataItem;
2122
+ };
2136
2123
  /**
2137
2124
  * A function which provides the child nodes for a given parent node.
2138
2125
  */
@@ -2287,16 +2274,6 @@ class PivotGridConfiguratorComponent {
2287
2274
  ].some((h) => (h === f.uniqueName || h === f.defaultHierarchy)));
2288
2275
  this.checked = checked;
2289
2276
  }
2290
- /**
2291
- * A function which determines if a specific node is checked/
2292
- */
2293
- isItemChecked(node) {
2294
- const res = this.checked.some(s => node.defaultHierarchy
2295
- ? s.defaultHierarchy === node.defaultHierarchy
2296
- : s.uniqueName === node.uniqueName)
2297
- || (node.children?.length && node.children?.every((c) => c.checked));
2298
- return res || null;
2299
- }
2300
2277
  /**
2301
2278
  * Determines if a checkbox should be rendered.
2302
2279
  */
@@ -2317,21 +2294,14 @@ class PivotGridConfiguratorComponent {
2317
2294
  const fields = event.children.map(item => item.dataItem);
2318
2295
  this.setChecked(fields);
2319
2296
  }
2320
- handleCheckedChange(event, item) {
2321
- if (event.target.checked) {
2322
- this.checked = [...this.checked, item];
2323
- }
2324
- else {
2325
- const itemIndex = this.checked.findIndex(checkedItem => checkedItem.uniqueName === item.uniqueName);
2326
- this.checked.splice(itemIndex, 1);
2327
- }
2297
+ handleCheckedChange(event) {
2298
+ const itemIndex = this.checked.findIndex(checkedItem => checkedItem.uniqueName === event.item.dataItem.uniqueName);
2299
+ this.checked.splice(itemIndex, 1);
2328
2300
  const action = {
2329
2301
  type: 'PIVOT_CONFIGURATOR_ACTION_TOGGLE_SELECTION',
2330
- payload: item
2302
+ payload: event.item.dataItem
2331
2303
  };
2332
2304
  this.configuratorService.parseConfiguratorState(action);
2333
- const closestItem = event.target.closest('.k-treeview-item');
2334
- this.zone.runOutsideAngular(() => setTimeout(() => closestItem.focus()));
2335
2305
  }
2336
2306
  onTreeViewSelect(ev) {
2337
2307
  const closestItem = ev.target.closest('.k-treeview-item');
@@ -2420,7 +2390,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2420
2390
  </div>
2421
2391
 
2422
2392
  <div class="k-pivotgrid-configurator-content">
2423
- <div class="k-form" [class.k-form-horizontal]="isHorizontal" role="form">
2393
+ <div class="k-form k-form-md" [class.k-form-horizontal]="isHorizontal" [class.k-form-vertical]="!isHorizontal" role="form">
2424
2394
  <div class="k-form-field-wrapper" [ngStyle]="isHorizontal ? {'padding-left': 0 } : null">
2425
2395
  <div class="k-form-field" [style]="'padding-top: 1em; margin-top: 0;'" [ngStyle]="isHorizontal ? {'padding-top': 0, 'padding-left': '16px' } : null">
2426
2396
  <span [id]="contentLabelId('fields')" class="k-label">{{messageFor('configuratorFieldsText')}}</span>
@@ -2435,21 +2405,14 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2435
2405
  textField="caption"
2436
2406
  [children]="children"
2437
2407
  [hasChildren]="hasChildren"
2408
+ kendoTreeViewCheckable
2409
+ [hasCheckbox]="isSelectable"
2410
+ [(checkedKeys)]="checked"
2411
+ [checkBy]="checkItemBy"
2412
+ (checkedChange)="handleCheckedChange($event)"
2438
2413
  kendoTreeViewExpandable
2439
2414
  (childrenLoaded)="handleChildrenLoaded($event)"
2440
2415
  (keydown.space)="onTreeViewSelect($event)">
2441
- <ng-template kendoTreeViewNodeTemplate let-dataItem>
2442
- <input kendoCheckBox
2443
- *ngIf="isSelectable(dataItem)"
2444
- type="checkbox"
2445
- kendoCheckBox
2446
- tabindex="-1"
2447
- role="none"
2448
- aria-hidden="true"
2449
- [checked]="isItemChecked(dataItem)"
2450
- (change)="handleCheckedChange($event, dataItem)"/>
2451
- {{ dataItem.caption }}
2452
- </ng-template>
2453
2416
  </kendo-treeview>
2454
2417
 
2455
2418
  </div>
@@ -2469,6 +2432,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2469
2432
  *ngIf="state.columnAxes && state.columnAxes.length; else noColumnAxes"
2470
2433
  #columnsChiplist
2471
2434
  kendoDropTarget
2435
+ class="k-column-fields"
2472
2436
  axes="columnAxes"
2473
2437
  [style.width.%]="100"
2474
2438
  [attr.aria-labelledby]="headerTextId + ' ' + contentLabelId('columns')"
@@ -2476,20 +2440,25 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2476
2440
  >
2477
2441
  <ng-container *ngFor="let item of state.columnAxes">
2478
2442
  <kendo-chip *ngIf="item.name.length === 1"
2443
+ #chip
2479
2444
  kendoChipDraggable
2480
2445
  kendoDraggable
2481
2446
  kendoDropTarget
2482
2447
  kendoChipKeyboardNavigation
2483
2448
  [item]="item"
2449
+ [label]="getName(item.name)"
2484
2450
  axes="columnAxes"
2485
- rounded="full"
2486
2451
  [removable]="true"
2452
+ [hasMenu]="true"
2453
+ (menuToggle)="chipMenuColumns.toggle($event)"
2487
2454
  (remove)="onChipRemove($event, item, 'column')"
2488
2455
  (reorder)="onReorder($event, 'column', item)"
2489
- >{{ getName(item.name) }}
2456
+ >
2490
2457
  <kendo-pivot-chip-menu
2491
- [chip]="item">
2492
- </kendo-pivot-chip-menu>
2458
+ #chipMenuColumns
2459
+ [chip]="item"
2460
+ [anchor]="chip"
2461
+ ></kendo-pivot-chip-menu>
2493
2462
  </kendo-chip>
2494
2463
  </ng-container>
2495
2464
  </kendo-chiplist>
@@ -2506,6 +2475,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2506
2475
  *ngIf="state.rowAxes && state.rowAxes.length; else noRowAxes"
2507
2476
  #rowsChiplist
2508
2477
  kendoDropTarget
2478
+ class="k-row-fields"
2509
2479
  axes="rowAxes"
2510
2480
  [attr.aria-labelledby]="headerTextId + ' ' + contentLabelId('rows')"
2511
2481
  [ngStyle]="isHorizontal ? {'padding-top': 0, 'padding-left': '16px' } : null"
@@ -2513,22 +2483,25 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2513
2483
  >
2514
2484
  <ng-container *ngFor="let item of state.rowAxes">
2515
2485
  <kendo-chip *ngIf="item.name.length === 1"
2486
+ #chip
2516
2487
  kendoChipDraggable
2517
2488
  kendoDraggable
2518
2489
  kendoDropTarget
2519
2490
  kendoChipKeyboardNavigation
2520
2491
  [item]="item"
2492
+ [label]="getName(item.name)"
2521
2493
  axes="rowAxes"
2522
- rounded="full"
2523
2494
  [removable]="true"
2495
+ [hasMenu]="true"
2496
+ (menuToggle)="chipMenuRows.toggle($event)"
2524
2497
  (remove)="onChipRemove($event, item, 'row')"
2525
2498
  (reorder)="onReorder($event, 'row', item)"
2526
2499
  >
2527
- {{ getName(item.name) }}
2528
-
2529
2500
  <kendo-pivot-chip-menu
2530
- [chip]="item">
2531
- </kendo-pivot-chip-menu>
2501
+ #chipMenuRows
2502
+ [chip]="item"
2503
+ [anchor]="chip"
2504
+ ></kendo-pivot-chip-menu>
2532
2505
  </kendo-chip>
2533
2506
  </ng-container>
2534
2507
  </kendo-chiplist>
@@ -2550,29 +2523,32 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2550
2523
  <kendo-chiplist
2551
2524
  *ngIf="state.measureAxes && state.measureAxes.length; else noMeasureAxes"
2552
2525
  kendoDropTarget
2526
+ class="k-filter-fields"
2553
2527
  axes="measureAxes"
2554
2528
  [attr.aria-labelledby]="headerTextId + ' ' + contentLabelId('values')"
2555
2529
  [ngStyle]="isHorizontal ? {'padding-top': 0, 'padding-left': '16px' } : null"
2556
2530
  [style.width.%]="100"
2557
2531
  >
2558
2532
  <kendo-chip *ngFor="let item of state.measureAxes"
2533
+ #chip
2559
2534
  kendoChipDraggable
2560
2535
  kendoDraggable
2561
2536
  kendoDropTarget
2562
2537
  kendoChipKeyboardNavigation
2563
2538
  [item]="item"
2539
+ [label]="getName(item.name)"
2564
2540
  axes="measureAxes"
2565
- rounded="full"
2566
2541
  [removable]="true"
2542
+ [hasMenu]="true"
2543
+ (menuToggle)="chipMenuValues.toggle($event)"
2567
2544
  (remove)="onChipRemove($event, item, 'measure')"
2568
2545
  (reorder)="onReorder($event, 'measure', item)"
2569
2546
  >
2570
- {{ getName(item.name) }}
2571
-
2572
- <kendo-pivot-chip-menu
2573
- [isMeasureField]="true"
2574
- [chip]="item">
2575
- </kendo-pivot-chip-menu>
2547
+ <kendo-pivot-chip-menu
2548
+ #chipMenuValues
2549
+ [chip]="item"
2550
+ [anchor]="chip"
2551
+ ></kendo-pivot-chip-menu>
2576
2552
  </kendo-chip>
2577
2553
  </kendo-chiplist>
2578
2554
 
@@ -2583,12 +2559,12 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
2583
2559
 
2584
2560
  </div>
2585
2561
  </div>
2586
- <div class="k-pivotgrid-configurator-actions k-actions k-hstack k-justify-content-end">
2562
+ <div class="k-pivotgrid-configurator-actions k-actions k-actions-end k-actions-horizontal">
2587
2563
  <button kendoButton type="button" (click)="handleReset()">{{messageFor('configuratorCancelButtonText')}}</button>
2588
2564
  <button kendoButton themeColor="primary" type="button" (click)="handleSubmit()">{{messageFor('configuratorApplyButtonText')}}</button>
2589
2565
  </div>
2590
2566
  </div>
2591
- `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: TreeViewComponent, selector: "kendo-treeview", inputs: ["filterInputPlaceholder", "expandDisabledNodes", "animate", "nodeTemplate", "loadMoreButtonTemplate", "trackBy", "nodes", "textField", "hasChildren", "isChecked", "isDisabled", "hasCheckbox", "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"] }, { kind: "directive", type: ExpandDirective, selector: "[kendoTreeViewExpandable]", inputs: ["isExpanded", "expandBy", "expandOnFilter", "expandedKeys"], outputs: ["expandedKeysChange"] }, { kind: "directive", type: NodeTemplateDirective, selector: "[kendoTreeViewNodeTemplate]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["item", "axes"] }, { kind: "component", type: ChipListComponent, selector: "kendo-chiplist, kendo-chip-list", inputs: ["selection", "size", "role", "navigable"], outputs: ["selectedChange", "remove"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ChipComponent, selector: "kendo-chip", inputs: ["label", "icon", "svgIcon", "iconClass", "avatarClass", "selected", "removable", "removeIcon", "removeSvgIcon", "hasMenu", "menuIcon", "menuSvgIcon", "disabled", "size", "rounded", "fillMode", "themeColor"], outputs: ["remove", "menuToggle", "contentClick"] }, { kind: "directive", type: DraggableChipDirective, selector: "[kendoChipDraggable]", inputs: ["item"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: ChipKeyboardNavigationDirective, selector: "[kendoChipKeyboardNavigation]", outputs: ["reorder"] }, { kind: "component", type: ChipMenuComponent, selector: "kendo-pivot-chip-menu", inputs: ["chip", "tabIndex", "isMeasureField"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
2567
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: TreeViewComponent, selector: "kendo-treeview", inputs: ["filterInputPlaceholder", "expandDisabledNodes", "animate", "nodeTemplate", "loadMoreButtonTemplate", "trackBy", "nodes", "textField", "hasChildren", "isChecked", "isDisabled", "hasCheckbox", "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"] }, { kind: "directive", type: ExpandDirective, selector: "[kendoTreeViewExpandable]", inputs: ["isExpanded", "expandBy", "expandOnFilter", "expandedKeys"], outputs: ["expandedKeysChange"] }, { kind: "directive", type: CheckDirective, selector: "[kendoTreeViewCheckable]", inputs: ["isChecked", "checkBy", "checkedKeys", "kendoTreeViewCheckable"], outputs: ["checkedKeysChange"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["item", "axes"] }, { kind: "component", type: ChipListComponent, selector: "kendo-chiplist, kendo-chip-list", inputs: ["selection", "size", "role", "navigable"], outputs: ["selectedChange", "remove"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ChipComponent, selector: "kendo-chip", inputs: ["label", "icon", "svgIcon", "iconClass", "avatarClass", "selected", "removable", "removeIcon", "removeSvgIcon", "hasMenu", "menuIcon", "menuSvgIcon", "disabled", "size", "rounded", "fillMode", "themeColor"], outputs: ["remove", "menuToggle", "contentClick"] }, { kind: "directive", type: DraggableChipDirective, selector: "[kendoChipDraggable]", inputs: ["item"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: ChipKeyboardNavigationDirective, selector: "[kendoChipKeyboardNavigation]", outputs: ["reorder"] }, { kind: "component", type: ChipMenuComponent, selector: "kendo-pivot-chip-menu", inputs: ["chip", "tabIndex", "isMeasureField", "anchor"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
2592
2568
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PivotGridConfiguratorComponent, decorators: [{
2593
2569
  type: Component,
2594
2570
  args: [{
@@ -2613,7 +2589,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2613
2589
  </div>
2614
2590
 
2615
2591
  <div class="k-pivotgrid-configurator-content">
2616
- <div class="k-form" [class.k-form-horizontal]="isHorizontal" role="form">
2592
+ <div class="k-form k-form-md" [class.k-form-horizontal]="isHorizontal" [class.k-form-vertical]="!isHorizontal" role="form">
2617
2593
  <div class="k-form-field-wrapper" [ngStyle]="isHorizontal ? {'padding-left': 0 } : null">
2618
2594
  <div class="k-form-field" [style]="'padding-top: 1em; margin-top: 0;'" [ngStyle]="isHorizontal ? {'padding-top': 0, 'padding-left': '16px' } : null">
2619
2595
  <span [id]="contentLabelId('fields')" class="k-label">{{messageFor('configuratorFieldsText')}}</span>
@@ -2628,21 +2604,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2628
2604
  textField="caption"
2629
2605
  [children]="children"
2630
2606
  [hasChildren]="hasChildren"
2607
+ kendoTreeViewCheckable
2608
+ [hasCheckbox]="isSelectable"
2609
+ [(checkedKeys)]="checked"
2610
+ [checkBy]="checkItemBy"
2611
+ (checkedChange)="handleCheckedChange($event)"
2631
2612
  kendoTreeViewExpandable
2632
2613
  (childrenLoaded)="handleChildrenLoaded($event)"
2633
2614
  (keydown.space)="onTreeViewSelect($event)">
2634
- <ng-template kendoTreeViewNodeTemplate let-dataItem>
2635
- <input kendoCheckBox
2636
- *ngIf="isSelectable(dataItem)"
2637
- type="checkbox"
2638
- kendoCheckBox
2639
- tabindex="-1"
2640
- role="none"
2641
- aria-hidden="true"
2642
- [checked]="isItemChecked(dataItem)"
2643
- (change)="handleCheckedChange($event, dataItem)"/>
2644
- {{ dataItem.caption }}
2645
- </ng-template>
2646
2615
  </kendo-treeview>
2647
2616
 
2648
2617
  </div>
@@ -2662,6 +2631,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2662
2631
  *ngIf="state.columnAxes && state.columnAxes.length; else noColumnAxes"
2663
2632
  #columnsChiplist
2664
2633
  kendoDropTarget
2634
+ class="k-column-fields"
2665
2635
  axes="columnAxes"
2666
2636
  [style.width.%]="100"
2667
2637
  [attr.aria-labelledby]="headerTextId + ' ' + contentLabelId('columns')"
@@ -2669,20 +2639,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2669
2639
  >
2670
2640
  <ng-container *ngFor="let item of state.columnAxes">
2671
2641
  <kendo-chip *ngIf="item.name.length === 1"
2642
+ #chip
2672
2643
  kendoChipDraggable
2673
2644
  kendoDraggable
2674
2645
  kendoDropTarget
2675
2646
  kendoChipKeyboardNavigation
2676
2647
  [item]="item"
2648
+ [label]="getName(item.name)"
2677
2649
  axes="columnAxes"
2678
- rounded="full"
2679
2650
  [removable]="true"
2651
+ [hasMenu]="true"
2652
+ (menuToggle)="chipMenuColumns.toggle($event)"
2680
2653
  (remove)="onChipRemove($event, item, 'column')"
2681
2654
  (reorder)="onReorder($event, 'column', item)"
2682
- >{{ getName(item.name) }}
2655
+ >
2683
2656
  <kendo-pivot-chip-menu
2684
- [chip]="item">
2685
- </kendo-pivot-chip-menu>
2657
+ #chipMenuColumns
2658
+ [chip]="item"
2659
+ [anchor]="chip"
2660
+ ></kendo-pivot-chip-menu>
2686
2661
  </kendo-chip>
2687
2662
  </ng-container>
2688
2663
  </kendo-chiplist>
@@ -2699,6 +2674,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2699
2674
  *ngIf="state.rowAxes && state.rowAxes.length; else noRowAxes"
2700
2675
  #rowsChiplist
2701
2676
  kendoDropTarget
2677
+ class="k-row-fields"
2702
2678
  axes="rowAxes"
2703
2679
  [attr.aria-labelledby]="headerTextId + ' ' + contentLabelId('rows')"
2704
2680
  [ngStyle]="isHorizontal ? {'padding-top': 0, 'padding-left': '16px' } : null"
@@ -2706,22 +2682,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2706
2682
  >
2707
2683
  <ng-container *ngFor="let item of state.rowAxes">
2708
2684
  <kendo-chip *ngIf="item.name.length === 1"
2685
+ #chip
2709
2686
  kendoChipDraggable
2710
2687
  kendoDraggable
2711
2688
  kendoDropTarget
2712
2689
  kendoChipKeyboardNavigation
2713
2690
  [item]="item"
2691
+ [label]="getName(item.name)"
2714
2692
  axes="rowAxes"
2715
- rounded="full"
2716
2693
  [removable]="true"
2694
+ [hasMenu]="true"
2695
+ (menuToggle)="chipMenuRows.toggle($event)"
2717
2696
  (remove)="onChipRemove($event, item, 'row')"
2718
2697
  (reorder)="onReorder($event, 'row', item)"
2719
2698
  >
2720
- {{ getName(item.name) }}
2721
-
2722
2699
  <kendo-pivot-chip-menu
2723
- [chip]="item">
2724
- </kendo-pivot-chip-menu>
2700
+ #chipMenuRows
2701
+ [chip]="item"
2702
+ [anchor]="chip"
2703
+ ></kendo-pivot-chip-menu>
2725
2704
  </kendo-chip>
2726
2705
  </ng-container>
2727
2706
  </kendo-chiplist>
@@ -2743,29 +2722,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2743
2722
  <kendo-chiplist
2744
2723
  *ngIf="state.measureAxes && state.measureAxes.length; else noMeasureAxes"
2745
2724
  kendoDropTarget
2725
+ class="k-filter-fields"
2746
2726
  axes="measureAxes"
2747
2727
  [attr.aria-labelledby]="headerTextId + ' ' + contentLabelId('values')"
2748
2728
  [ngStyle]="isHorizontal ? {'padding-top': 0, 'padding-left': '16px' } : null"
2749
2729
  [style.width.%]="100"
2750
2730
  >
2751
2731
  <kendo-chip *ngFor="let item of state.measureAxes"
2732
+ #chip
2752
2733
  kendoChipDraggable
2753
2734
  kendoDraggable
2754
2735
  kendoDropTarget
2755
2736
  kendoChipKeyboardNavigation
2756
2737
  [item]="item"
2738
+ [label]="getName(item.name)"
2757
2739
  axes="measureAxes"
2758
- rounded="full"
2759
2740
  [removable]="true"
2741
+ [hasMenu]="true"
2742
+ (menuToggle)="chipMenuValues.toggle($event)"
2760
2743
  (remove)="onChipRemove($event, item, 'measure')"
2761
2744
  (reorder)="onReorder($event, 'measure', item)"
2762
2745
  >
2763
- {{ getName(item.name) }}
2764
-
2765
- <kendo-pivot-chip-menu
2766
- [isMeasureField]="true"
2767
- [chip]="item">
2768
- </kendo-pivot-chip-menu>
2746
+ <kendo-pivot-chip-menu
2747
+ #chipMenuValues
2748
+ [chip]="item"
2749
+ [anchor]="chip"
2750
+ ></kendo-pivot-chip-menu>
2769
2751
  </kendo-chip>
2770
2752
  </kendo-chiplist>
2771
2753
 
@@ -2776,7 +2758,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2776
2758
 
2777
2759
  </div>
2778
2760
  </div>
2779
- <div class="k-pivotgrid-configurator-actions k-actions k-hstack k-justify-content-end">
2761
+ <div class="k-pivotgrid-configurator-actions k-actions k-actions-end k-actions-horizontal">
2780
2762
  <button kendoButton type="button" (click)="handleReset()">{{messageFor('configuratorCancelButtonText')}}</button>
2781
2763
  <button kendoButton themeColor="primary" type="button" (click)="handleSubmit()">{{messageFor('configuratorApplyButtonText')}}</button>
2782
2764
  </div>
@@ -2784,7 +2766,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2784
2766
  `,
2785
2767
  standalone: true,
2786
2768
  imports: [
2787
- NgClass, NgStyle, TreeViewComponent, ExpandDirective, NodeTemplateDirective, NgIf, CheckBoxDirective,
2769
+ NgClass, NgStyle, TreeViewComponent, ExpandDirective, CheckDirective, NodeTemplateDirective, NgIf, CheckBoxComponent,
2788
2770
  NgTemplateOutlet, DropTargetDirective, ChipListComponent, NgFor, ChipComponent, DraggableChipDirective,
2789
2771
  DraggableDirective, ChipKeyboardNavigationDirective, ChipMenuComponent, ButtonComponent
2790
2772
  ]
@@ -3371,8 +3353,8 @@ const packageMetadata = {
3371
3353
  name: '@progress/kendo-angular-pivotgrid',
3372
3354
  productName: 'Kendo UI for Angular',
3373
3355
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
3374
- publishDate: 1729020318,
3375
- version: '17.0.0-develop.6',
3356
+ publishDate: 1729170378,
3357
+ version: '17.0.0-develop.8',
3376
3358
  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'
3377
3359
  };
3378
3360
 
@@ -3666,9 +3648,10 @@ class PivotGridCellDirective {
3666
3648
  this.renderer.setAttribute(nativeElement, 'rowspan', this.kendoPivotGridCell.rowSpan || 1);
3667
3649
  this.renderer.setAttribute(nativeElement, 'colspan', this.kendoPivotGridCell.colSpan || 1);
3668
3650
  const classesToAdd = {
3669
- 'k-pivotgrid-header-total': this.kendoPivotGridCell?.total || (this.tableType === 'values'
3651
+ 'k-pivotgrid-header-total': this.kendoPivotGridCell?.total,
3652
+ 'k-pivotgrid-total': this.tableType === 'values'
3670
3653
  && (this.dataService.rowHeaderLeaves[this.rowIndex].total ||
3671
- this.dataService.columnHeaderLeaves[this.colIndex].total)),
3654
+ this.dataService.columnHeaderLeaves[this.colIndex].total),
3672
3655
  'k-pivotgrid-header-root': this.kendoPivotGridCell?.levelNum === 0,
3673
3656
  'k-pivotgrid-expanded': this.kendoPivotGridCell?.hasChildren && this.kendoPivotGridCell.children.length,
3674
3657
  'k-first': this.colIndex > 0
@@ -3738,10 +3721,10 @@ PivotGridCellDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
3738
3721
  }">
3739
3722
  </ng-template>
3740
3723
  <!--default cell content-->
3741
- <span *ngIf="!customCellTemplate && isNotProvidedCellTemplatePerType">
3724
+ <span *ngIf="!customCellTemplate && isNotProvidedCellTemplatePerType" [ngClass]="{'k-pivotgrid-header-title': !kendoPivotGridCell.data, 'k-pivotgrid-content': kendoPivotGridCell.data}">
3742
3725
  {{ kendoPivotGridCell.data ? kendoPivotGridCell.data.fmtValue : kendoPivotGridCell.caption }}
3743
3726
  </span>
3744
- `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
3727
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
3745
3728
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PivotGridCellDirective, decorators: [{
3746
3729
  type: Component,
3747
3730
  args: [{
@@ -3804,12 +3787,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3804
3787
  }">
3805
3788
  </ng-template>
3806
3789
  <!--default cell content-->
3807
- <span *ngIf="!customCellTemplate && isNotProvidedCellTemplatePerType">
3790
+ <span *ngIf="!customCellTemplate && isNotProvidedCellTemplatePerType" [ngClass]="{'k-pivotgrid-header-title': !kendoPivotGridCell.data, 'k-pivotgrid-content': kendoPivotGridCell.data}">
3808
3791
  {{ kendoPivotGridCell.data ? kendoPivotGridCell.data.fmtValue : kendoPivotGridCell.caption }}
3809
3792
  </span>
3810
3793
  `,
3811
3794
  standalone: true,
3812
- imports: [NgIf, IconWrapperComponent, EventsOutsideAngularDirective, TemplateContextDirective]
3795
+ imports: [NgIf, IconWrapperComponent, EventsOutsideAngularDirective, TemplateContextDirective, NgClass]
3813
3796
  }]
3814
3797
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: PivotGridDataService }]; }, propDecorators: { cellClass: [{
3815
3798
  type: HostBinding,
@@ -4227,7 +4210,7 @@ class PivotGridComponent {
4227
4210
  this.scrollService.pivotGrid = this;
4228
4211
  }
4229
4212
  get rightPositionClass() {
4230
- return this.configuratorSettings?.position === 'right';
4213
+ return !this.configuratorSettings || this.configuratorSettings.position === 'right';
4231
4214
  }
4232
4215
  get leftPositionClass() {
4233
4216
  return this.configuratorSettings?.position === 'left';
@@ -4555,7 +4538,7 @@ PivotGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
4555
4538
  class="k-pivotgrid-configurator-button"
4556
4539
  aria-hidden="true"
4557
4540
  (click)="toggleConfigurator()">
4558
- <span>{{messageFor('configuratorButtonText')}}<kendo-icon-wrapper name="gear" innerCssClass="k-color-inherit" [svgIcon]="gearSVGIcon"></kendo-icon-wrapper>
4541
+ <span>{{messageFor('configuratorButtonText')}}<kendo-icon-wrapper name="gear" [svgIcon]="gearSVGIcon"></kendo-icon-wrapper>
4559
4542
  </span>
4560
4543
  </div>
4561
4544
  `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoPivotGridLocalizedMessages]" }, { kind: "component", type: PivotGridTableComponent, selector: "kendo-pivotgrid-table", inputs: ["tableType", "colWidth", "customCellTemplate", "valueCellTemplate", "rowHeaderCellTemplate", "columnHeaderCellTemplate", "scrollableSettings"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: LoaderComponent, selector: "kendo-loader", inputs: ["type", "themeColor", "size"] }, { kind: "component", type: PivotGridConfiguratorComponent, selector: "kendo-pivotgrid-configurator", inputs: ["orientation", "sort", "filter", "navigation"], outputs: ["close"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
@@ -4728,7 +4711,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4728
4711
  class="k-pivotgrid-configurator-button"
4729
4712
  aria-hidden="true"
4730
4713
  (click)="toggleConfigurator()">
4731
- <span>{{messageFor('configuratorButtonText')}}<kendo-icon-wrapper name="gear" innerCssClass="k-color-inherit" [svgIcon]="gearSVGIcon"></kendo-icon-wrapper>
4714
+ <span>{{messageFor('configuratorButtonText')}}<kendo-icon-wrapper name="gear" [svgIcon]="gearSVGIcon"></kendo-icon-wrapper>
4732
4715
  </span>
4733
4716
  </div>
4734
4717
  `,