@progress/kendo-angular-treelist 13.0.0-develop.5 → 13.0.0-develop.7

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.
Files changed (46) hide show
  1. package/column-menu/column-menu-settings.interface.d.ts +7 -10
  2. package/column-resizing/column-resize.interface.d.ts +1 -1
  3. package/data/change-event-args.interface.d.ts +2 -2
  4. package/data/data.collection.d.ts +6 -0
  5. package/dragdrop/column-reorder-config.d.ts +1 -1
  6. package/editing/edit-event-args.interface.d.ts +1 -1
  7. package/editing/remove-event-args.interface.d.ts +1 -1
  8. package/editing/save-event-args.interface.d.ts +1 -1
  9. package/esm2020/column-menu/column-menu-item.component.mjs +1 -1
  10. package/esm2020/column-menu/column-menu.component.mjs +1 -1
  11. package/esm2020/data/data.collection.mjs +41 -28
  12. package/esm2020/editing/add-command.directive.mjs +1 -1
  13. package/esm2020/editing/base-command.directive.mjs +1 -1
  14. package/esm2020/editing/cancel-command.directive.mjs +1 -1
  15. package/esm2020/editing/edit-command.directive.mjs +1 -1
  16. package/esm2020/editing/remove-command.directive.mjs +1 -1
  17. package/esm2020/editing/save-command.directive.mjs +1 -1
  18. package/esm2020/excel/excel-command.directive.mjs +1 -1
  19. package/esm2020/filtering/menu/filter-menu.component.mjs +1 -1
  20. package/esm2020/package-metadata.mjs +2 -2
  21. package/esm2020/pager/pager-element.component.mjs +17 -0
  22. package/esm2020/pager/pager-next-buttons.component.mjs +8 -11
  23. package/esm2020/pager/pager-page-sizes.component.mjs +1 -1
  24. package/esm2020/pager/pager-prev-buttons.component.mjs +8 -11
  25. package/esm2020/pdf/pdf-command.directive.mjs +1 -1
  26. package/esm2020/rendering/cell.component.mjs +23 -6
  27. package/esm2020/rendering/header/header.component.mjs +1 -1
  28. package/esm2020/treelist.component.mjs +1 -1
  29. package/excel/excel-export-data.interface.d.ts +1 -1
  30. package/fesm2015/progress-kendo-angular-treelist.mjs +112 -70
  31. package/fesm2020/progress-kendo-angular-treelist.mjs +112 -70
  32. package/navigation/navigation-cell.interface.d.ts +1 -4
  33. package/navigation/navigation-row.interface.d.ts +1 -4
  34. package/package.json +16 -16
  35. package/pager/pager-element.component.d.ts +9 -0
  36. package/pager/pager-next-buttons.component.d.ts +0 -3
  37. package/pager/pager-prev-buttons.component.d.ts +0 -3
  38. package/pager/pager-settings.d.ts +1 -15
  39. package/rendering/cell.component.d.ts +3 -0
  40. package/schematics/ngAdd/index.js +3 -3
  41. package/scrolling/content-scroll-event.d.ts +1 -1
  42. package/scrolling/scroll-bottom-event.d.ts +1 -1
  43. package/scrolling/scroll-request.service.d.ts +6 -0
  44. package/selection/selectable-settings.d.ts +5 -15
  45. package/selection/selectable.directive.d.ts +1 -1
  46. package/selection/selection-change-event.d.ts +1 -1
@@ -18,7 +18,7 @@ import * as i1$1 from '@progress/kendo-angular-l10n';
18
18
  import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
19
19
  import * as i1 from '@progress/kendo-angular-popup';
20
20
  import { PopupModule } from '@progress/kendo-angular-popup';
21
- import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon, filterIcon, sortAscSmallIcon, sortDescSmallIcon, columnsIcon, moreVerticalIcon, filterClearIcon, caretAltDownIcon, caretAltRightIcon, reorderIcon, caretAltLeftIcon, caretAltToLeftIcon, caretAltToRightIcon } from '@progress/kendo-svg-icons';
21
+ import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon, filterIcon, sortAscSmallIcon, sortDescSmallIcon, columnsIcon, moreVerticalIcon, filterClearIcon, caretAltDownIcon, caretAltRightIcon, caretAltLeftIcon, reorderIcon, caretAltToLeftIcon, caretAltToRightIcon } from '@progress/kendo-svg-icons';
22
22
  import * as i1$2 from '@angular/platform-browser';
23
23
  import * as i3 from '@progress/kendo-angular-icons';
24
24
  import { IconsModule } from '@progress/kendo-angular-icons';
@@ -48,8 +48,8 @@ const packageMetadata = {
48
48
  name: '@progress/kendo-angular-treelist',
49
49
  productName: 'Kendo UI for Angular',
50
50
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
51
- publishDate: 1685016622,
52
- version: '13.0.0-develop.5',
51
+ publishDate: 1685097058,
52
+ version: '13.0.0-develop.7',
53
53
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
54
54
  };
55
55
 
@@ -1295,22 +1295,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1295
1295
  * @hidden
1296
1296
  */
1297
1297
  const EXPANDED_STATE = {
1298
- isExpanded: () => true
1298
+ isExpanded: () => true,
1299
1299
  };
1300
1300
  /**
1301
1301
  * @hidden
1302
1302
  */
1303
1303
  const UNSELECTED_STATE = {
1304
- isRowSelected: () => false
1304
+ isRowSelected: () => false,
1305
1305
  };
1306
1306
  /**
1307
1307
  * @hidden
1308
1308
  */
1309
1309
  const NOT_EDITED_STATE = {
1310
1310
  hasNew: () => false,
1311
- context: () => null
1311
+ context: () => null,
1312
1312
  };
1313
- const identity$1 = item => item;
1313
+ const identity$1 = (item) => item;
1314
1314
  function loadView(view, subject) {
1315
1315
  view.loadData();
1316
1316
  if (view.loading) {
@@ -1355,10 +1355,11 @@ class ViewRange {
1355
1355
  return true;
1356
1356
  }
1357
1357
  includeParents(_children) {
1358
+ // eslint-disable-next-line no-empty
1358
1359
  }
1359
1360
  }
1360
1361
  function isPagerSettings(pageable) {
1361
- return typeof pageable === "object";
1362
+ return typeof pageable === 'object';
1362
1363
  }
1363
1364
  class PagerRange extends ViewRange {
1364
1365
  constructor(skip, pageSize, pageable) {
@@ -1372,8 +1373,8 @@ class PagerRange extends ViewRange {
1372
1373
  return this.skip <= index && index < this.skip + this.pageSize;
1373
1374
  }
1374
1375
  levelInRange(parent, items, _rowIndex) {
1375
- return parent.level === -1 ||
1376
- (this.skip <= parent.index + items.length && parent.index + 1 < this.skip + this.pageSize);
1376
+ return (parent.level === -1 ||
1377
+ (this.skip <= parent.index + items.length && parent.index + 1 < this.skip + this.pageSize));
1377
1378
  }
1378
1379
  includeParents(children) {
1379
1380
  let parentLevel = children.parentLevel;
@@ -1416,7 +1417,7 @@ class ViewItemFactory {
1416
1417
  this.rootLevel = this.dataLevel({
1417
1418
  level: -1,
1418
1419
  id: null,
1419
- expanded: true
1420
+ expanded: true,
1420
1421
  }, options.data);
1421
1422
  }
1422
1423
  }
@@ -1431,7 +1432,8 @@ class ViewItemFactory {
1431
1432
  while (dataLevels[0] && dataLevels[0].idx >= dataLevels[0].items.length) {
1432
1433
  const dataLevel = dataLevels.shift();
1433
1434
  if (this.hasFooter && dataLevel.expanded && dataLevel.items.length) {
1434
- if (dataLevel.inRange || this.viewRange.levelInRange(dataLevel.parent, dataLevel.items, this.rowIndex)) {
1435
+ if (dataLevel.inRange ||
1436
+ this.viewRange.levelInRange(dataLevel.parent, dataLevel.items, this.rowIndex)) {
1435
1437
  result.push({
1436
1438
  type: 'footer',
1437
1439
  items: dataLevel.items,
@@ -1439,7 +1441,7 @@ class ViewItemFactory {
1439
1441
  level: dataLevel.level,
1440
1442
  parentItem: dataLevel.parent.data,
1441
1443
  parentIndex: dataLevel.parentIndex,
1442
- rowIndex: this.rowIndex
1444
+ rowIndex: this.rowIndex,
1443
1445
  });
1444
1446
  this.viewRange.includeParents(dataLevel);
1445
1447
  }
@@ -1459,7 +1461,7 @@ class ViewItemFactory {
1459
1461
  index: itemIndex,
1460
1462
  level: currentLevel.level,
1461
1463
  hasChildren: this.hasChildren(dataItem),
1462
- parent: currentLevel.parent
1464
+ parent: currentLevel.parent,
1463
1465
  };
1464
1466
  if (currentLevel.expanded) {
1465
1467
  this.rowIndex++;
@@ -1492,7 +1494,7 @@ class ViewItemFactory {
1492
1494
  observables: this.observables,
1493
1495
  total: itemCount,
1494
1496
  totalVisible: itemIndex,
1495
- totalRows: this.rowIndex
1497
+ totalRows: this.rowIndex,
1496
1498
  };
1497
1499
  }
1498
1500
  loadChildren(parent) {
@@ -1511,7 +1513,7 @@ class ViewItemFactory {
1511
1513
  if (isObservable(children)) {
1512
1514
  this.observables.push({
1513
1515
  observable: children,
1514
- parentId: parentId
1516
+ parentId: parentId,
1515
1517
  });
1516
1518
  parent.loading = true;
1517
1519
  }
@@ -1532,7 +1534,7 @@ class ViewItemFactory {
1532
1534
  aggregates: children.aggregates,
1533
1535
  expanded: parent.expanded,
1534
1536
  parentIndex: parent.index,
1535
- parent: parent
1537
+ parent: parent,
1536
1538
  };
1537
1539
  }
1538
1540
  addNew(result, parent) {
@@ -1545,7 +1547,7 @@ class ViewItemFactory {
1545
1547
  type: 'data',
1546
1548
  data: this.editState.newItem.dataItem,
1547
1549
  editContext: this.editState.newItem,
1548
- rowIndex: rowIndex
1550
+ rowIndex: rowIndex,
1549
1551
  });
1550
1552
  if (parent || inRange) {
1551
1553
  this.rowIndex++;
@@ -1581,7 +1583,7 @@ class ViewCollection {
1581
1583
  idGetter: identity$1,
1582
1584
  pageable: false,
1583
1585
  isVirtual: false,
1584
- skip: 0
1586
+ skip: 0,
1585
1587
  }, options.fields);
1586
1588
  const childrenView = new ViewCollection(viewFields, options.expandState || EXPANDED_STATE, options.editState || NOT_EDITED_STATE, options.selectionState || UNSELECTED_STATE);
1587
1589
  if (options.loaded) {
@@ -1602,20 +1604,28 @@ class ViewCollection {
1602
1604
  }
1603
1605
  return this._data;
1604
1606
  }
1605
- get length() { return this.data.length; }
1606
- get first() { return this.data[0]; }
1607
+ get length() {
1608
+ return this.data.length;
1609
+ }
1610
+ get first() {
1611
+ return this.data[0];
1612
+ }
1607
1613
  get firstItem() {
1608
- return this.find(item => item.type === 'data');
1614
+ return this.find((item) => item.type === 'data');
1615
+ }
1616
+ get last() {
1617
+ return this.data[this.data.length - 1];
1609
1618
  }
1610
- get last() { return this.data[this.data.length - 1]; }
1611
1619
  at(index) {
1612
1620
  return this.data[index];
1613
1621
  }
1614
1622
  itemIndex(item) {
1615
1623
  const idGetter = this.fieldAccessor().idGetter;
1616
- return this.data.findIndex(i => i.id === idGetter(item));
1624
+ return this.data.findIndex((i) => i.id === idGetter(item));
1625
+ }
1626
+ map(fn) {
1627
+ return this.data.map(fn);
1617
1628
  }
1618
- map(fn) { return this.data.map(fn); }
1619
1629
  filter(fn) {
1620
1630
  return this.data.filter(fn);
1621
1631
  }
@@ -1634,16 +1644,18 @@ class ViewCollection {
1634
1644
  find(fn) {
1635
1645
  return this.data.find(fn);
1636
1646
  }
1637
- toString() { return this.data.toString(); }
1647
+ toString() {
1648
+ return this.data.toString();
1649
+ }
1638
1650
  updateSelectedState() {
1639
- this.forEach(item => {
1651
+ this.forEach((item) => {
1640
1652
  if (item.type === 'data') {
1641
1653
  item.selected = this.selectionState.isRowSelected(item.data);
1642
1654
  }
1643
1655
  });
1644
1656
  }
1645
1657
  updateEditedState() {
1646
- this.forEach(item => {
1658
+ this.forEach((item) => {
1647
1659
  if (item.type === 'data') {
1648
1660
  item.editContext = this.editState.context(item.data);
1649
1661
  }
@@ -1676,7 +1688,7 @@ class ViewCollection {
1676
1688
  loadData() {
1677
1689
  const itemFactory = new ViewItemFactory(this.expandState, this.editState, this.selectionState, this.loaded, this.fieldAccessor);
1678
1690
  let result = itemFactory.generate();
1679
- if (!result.loading && result.total && (!result.items.length || !result.items.some(i => i.type === 'data'))) {
1691
+ if (!result.loading && result.total && (!result.items.length || !result.items.some((i) => i.type === 'data'))) {
1680
1692
  this.resetPage.emit();
1681
1693
  result = new ViewItemFactory(this.expandState, this.editState, this.selectionState, this.loaded, this.fieldAccessor).generate();
1682
1694
  }
@@ -1690,9 +1702,10 @@ class ViewCollection {
1690
1702
  if (!this.childrenSubscription) {
1691
1703
  this.childrenSubscription = new Subscription();
1692
1704
  }
1693
- result.observables.forEach(o => {
1705
+ result.observables.forEach((o) => {
1694
1706
  this.loaded.set(o.parentId, LOADING);
1695
- this.childrenSubscription.add(o.observable.subscribe(children => {
1707
+ this.childrenSubscription.add(o.observable.subscribe((children) => {
1708
+ // handle error, might show reload icon
1696
1709
  this.clear();
1697
1710
  this.loaded.set(o.parentId, children);
1698
1711
  this.childrenLoaded.emit();
@@ -7804,7 +7817,7 @@ FilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
7804
7817
  >
7805
7818
  </kendo-treelist-filter-menu-container>
7806
7819
  </ng-template>
7807
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: FilterMenuContainerComponent, selector: "kendo-treelist-filter-menu-container", inputs: ["column", "filter", "actionsClass"], outputs: ["close"] }] });
7820
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: FilterMenuContainerComponent, selector: "kendo-treelist-filter-menu-container", inputs: ["column", "filter", "actionsClass"], outputs: ["close"] }] });
7808
7821
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterMenuComponent, decorators: [{
7809
7822
  type: Component,
7810
7823
  args: [{
@@ -8007,7 +8020,7 @@ ColumnMenuItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
8007
8020
  <ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
8008
8021
  </ng-container>
8009
8022
  <div>
8010
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], animations: [
8023
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], animations: [
8011
8024
  trigger('state', [
8012
8025
  state('collapsed', style({ display: 'none' })),
8013
8026
  state('expanded', style({ display: 'block' })),
@@ -8815,7 +8828,7 @@ ColumnMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
8815
8828
  [expanded]="expandedFilter" (expand)="onFilterExpand()">
8816
8829
  </kendo-treelist-columnmenu-filter>
8817
8830
  </ng-template>
8818
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: ColumnMenuSortComponent, selector: "kendo-treelist-columnmenu-sort" }, { type: ColumnMenuLockComponent, selector: "kendo-treelist-columnmenu-lock" }, { type: ColumnMenuChooserComponent, selector: "kendo-treelist-columnmenu-chooser", inputs: ["expanded"], outputs: ["expand", "collapse"] }, { type: ColumnMenuFilterComponent, selector: "kendo-treelist-columnmenu-filter", inputs: ["expanded"], outputs: ["expand", "collapse"] }], directives: [{ type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
8831
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: ColumnMenuSortComponent, selector: "kendo-treelist-columnmenu-sort" }, { type: ColumnMenuLockComponent, selector: "kendo-treelist-columnmenu-lock" }, { type: ColumnMenuChooserComponent, selector: "kendo-treelist-columnmenu-chooser", inputs: ["expanded"], outputs: ["expand", "collapse"] }, { type: ColumnMenuFilterComponent, selector: "kendo-treelist-columnmenu-filter", inputs: ["expanded"], outputs: ["expand", "collapse"] }], directives: [{ type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
8819
8832
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnMenuComponent, decorators: [{
8820
8833
  type: Component,
8821
8834
  args: [{
@@ -10674,7 +10687,7 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
10674
10687
  [logicalSlaveCellsCount]="unlockedColumnsCount"
10675
10688
  >
10676
10689
  </tr>
10677
- `, isInline: true, components: [{ type: FilterMenuComponent, selector: "kendo-treelist-filter-menu", inputs: ["column", "filter"] }, { type: ColumnMenuComponent, selector: "kendo-treelist-column-menu", inputs: ["standalone", "column", "settings", "sort", "filter", "sortable", "columnMenuTemplate"] }, { type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: FilterRowComponent, selector: "[kendoTreeListFilterRow]", inputs: ["columns", "filter", "logicalRowIndex", "lockedColumnsCount"] }], directives: [{ type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["context"], outputs: ["enter", "leave", "drop"] }, { type: i1$3.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { type: DraggableColumnDirective, selector: "[kendoDraggableColumn]", inputs: ["context", "enableDrag"], outputs: ["drag"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: ColumnHandleDirective, selector: "[kendoTreeListColumnHandle]", inputs: ["columns", "column"] }] });
10690
+ `, isInline: true, components: [{ type: FilterMenuComponent, selector: "kendo-treelist-filter-menu", inputs: ["column", "filter"] }, { type: ColumnMenuComponent, selector: "kendo-treelist-column-menu", inputs: ["standalone", "column", "settings", "sort", "filter", "sortable", "columnMenuTemplate"] }, { type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: FilterRowComponent, selector: "[kendoTreeListFilterRow]", inputs: ["columns", "filter", "logicalRowIndex", "lockedColumnsCount"] }], directives: [{ type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["context"], outputs: ["enter", "leave", "drop"] }, { type: i1$3.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { type: DraggableColumnDirective, selector: "[kendoDraggableColumn]", inputs: ["context", "enableDrag"], outputs: ["drag"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: ColumnHandleDirective, selector: "[kendoTreeListColumnHandle]", inputs: ["columns", "column"] }] });
10678
10691
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: HeaderComponent, decorators: [{
10679
10692
  type: Component,
10680
10693
  args: [{
@@ -11123,6 +11136,7 @@ class CellComponent {
11123
11136
  this.level = 0;
11124
11137
  this.caretAltDownIcon = caretAltDownIcon;
11125
11138
  this.caretAltRightIcon = caretAltRightIcon;
11139
+ this.caretAltLeftIcon = caretAltLeftIcon;
11126
11140
  this.reorderIcon = reorderIcon;
11127
11141
  this.cellContext = {};
11128
11142
  this._templateContext = {};
@@ -11211,6 +11225,22 @@ class CellComponent {
11211
11225
  context.loading = this.loading;
11212
11226
  context.rowIndex = this.viewItem.rowIndex;
11213
11227
  }
11228
+ get arrowIcon() {
11229
+ const icon = !this.isExpanded ?
11230
+ !this.localization.rtl ?
11231
+ 'caret-alt-right' :
11232
+ 'caret-alt-left' :
11233
+ 'caret-alt-down';
11234
+ return icon;
11235
+ }
11236
+ get arrowSVGIcon() {
11237
+ const icon = !this.isExpanded ?
11238
+ !this.localization.rtl ?
11239
+ this.caretAltRightIcon :
11240
+ this.caretAltLeftIcon :
11241
+ this.caretAltDownIcon;
11242
+ return icon;
11243
+ }
11214
11244
  }
11215
11245
  CellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CellComponent, deps: [{ token: EditService }, { token: i1$1.LocalizationService }, { token: FocusGroup }], target: i0.ɵɵFactoryTarget.Component });
11216
11246
  CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: CellComponent, selector: "[kendoTreeListCell]", inputs: { column: "column", columnIndex: "columnIndex", isNew: "isNew", level: "level", hasChildren: "hasChildren", isExpanded: "isExpanded", loading: "loading", expandIcons: "expandIcons", selected: "selected", dataItem: "dataItem", viewItem: "viewItem" }, host: { properties: { "class.k-command-cell": "this.commandCellClass", "class.k-checkbox-cell": "this.isCheckboxColumn", "class.k-text-nowrap": "this.textNoWrapClass", "class.k-drag-cell": "this.dragHandleCellClass", "class.k-touch-action-none": "this.dragHandleCellClass", "attr.aria-label": "this.dragRowHandleLabel" } }, ngImport: i0, template: `
@@ -11221,8 +11251,8 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
11221
11251
  <kendo-icon-wrapper
11222
11252
  aria-hidden="true"
11223
11253
  *ngIf="hasChildren && expandIcons && !loading"
11224
- [name]="isExpanded ? 'caret-alt-down' : 'caret-alt-right'"
11225
- [svgIcon]="isExpanded ? caretAltDownIcon : caretAltRightIcon"></kendo-icon-wrapper>
11254
+ [name]="arrowIcon"
11255
+ [svgIcon]="arrowSVGIcon"></kendo-icon-wrapper>
11226
11256
  <span class="k-icon k-i-loading" *ngIf="hasChildren && expandIcons && loading"></span>
11227
11257
  </ng-container>
11228
11258
  <ng-container *ngIf="column.templateRef"
@@ -11288,7 +11318,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
11288
11318
  </ng-container>
11289
11319
  </ng-container>
11290
11320
  </ng-container>
11291
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i2.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }, { type: i3$3.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: i4.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i4.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: i3$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i3$2.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i4.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { type: i3$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }], pipes: { "levelItems": LevelItemsPipe, "valueOf": FieldAccessorPipe } });
11321
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i2.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }, { type: i3$3.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: i4.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i4.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: i3$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i3$2.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i4.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { type: i3$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }], pipes: { "levelItems": LevelItemsPipe, "valueOf": FieldAccessorPipe } });
11292
11322
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CellComponent, decorators: [{
11293
11323
  type: Component,
11294
11324
  args: [{
@@ -11301,8 +11331,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
11301
11331
  <kendo-icon-wrapper
11302
11332
  aria-hidden="true"
11303
11333
  *ngIf="hasChildren && expandIcons && !loading"
11304
- [name]="isExpanded ? 'caret-alt-down' : 'caret-alt-right'"
11305
- [svgIcon]="isExpanded ? caretAltDownIcon : caretAltRightIcon"></kendo-icon-wrapper>
11334
+ [name]="arrowIcon"
11335
+ [svgIcon]="arrowSVGIcon"></kendo-icon-wrapper>
11306
11336
  <span class="k-icon k-i-loading" *ngIf="hasChildren && expandIcons && loading"></span>
11307
11337
  </ng-container>
11308
11338
  <ng-container *ngIf="column.templateRef"
@@ -12874,6 +12904,10 @@ class PagerElementComponent {
12874
12904
  this.skip = this.pagerContext.skip;
12875
12905
  this.pageSize = this.pagerContext.pageSize;
12876
12906
  this.allCount = this.pagerContext.allCount;
12907
+ this.caretAltLeftIcon = caretAltLeftIcon;
12908
+ this.caretAltToLeftIcon = caretAltToLeftIcon;
12909
+ this.caretAltRightIcon = caretAltRightIcon;
12910
+ this.caretAltToRightIcon = caretAltToRightIcon;
12877
12911
  }
12878
12912
  /**
12879
12913
  * @hidden
@@ -12931,6 +12965,18 @@ class PagerElementComponent {
12931
12965
  this.subscriptions.unsubscribe();
12932
12966
  }
12933
12967
  }
12968
+ get prevArrowIcons() {
12969
+ return !this.localization.rtl ? ['caret-alt-to-left', 'caret-alt-left'] : ['caret-alt-to-right', 'caret-alt-right'];
12970
+ }
12971
+ get prevArrowSVGIcons() {
12972
+ return !this.localization.rtl ? [this.caretAltToLeftIcon, this.caretAltLeftIcon] : [this.caretAltToRightIcon, this.caretAltRightIcon];
12973
+ }
12974
+ get nextArrowIcons() {
12975
+ return !this.localization.rtl ? ['caret-alt-right', 'caret-alt-to-right'] : ['caret-alt-left', 'caret-alt-to-left'];
12976
+ }
12977
+ get nextArrowSVGIcons() {
12978
+ return !this.localization.rtl ? [this.caretAltRightIcon, this.caretAltToRightIcon] : [this.caretAltLeftIcon, this.caretAltToLeftIcon];
12979
+ }
12934
12980
  }
12935
12981
  PagerElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerElementComponent, deps: [{ token: i1$1.LocalizationService }, { token: PagerContextService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
12936
12982
  PagerElementComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: PagerElementComponent, ngImport: i0 });
@@ -12947,8 +12993,6 @@ class PagerPrevButtonsComponent extends PagerElementComponent {
12947
12993
  constructor(localization, pagerContext, cd, navigationService) {
12948
12994
  super(localization, pagerContext, cd);
12949
12995
  this.navigationService = navigationService;
12950
- this.caretAltLeftIcon = caretAltLeftIcon;
12951
- this.caretAltToLeftIcon = caretAltToLeftIcon;
12952
12996
  }
12953
12997
  /**
12954
12998
  * @hidden
@@ -12987,8 +13031,8 @@ PagerPrevButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
12987
13031
  [attr.aria-label]="textFor('pagerFirstPage')"
12988
13032
  (click)="onButtonClick('firstPage')"
12989
13033
  role="button"
12990
- icon="caret-alt-to-left"
12991
- [svgIcon]="caretAltToLeftIcon"
13034
+ [icon]="prevArrowIcons[0]"
13035
+ [svgIcon]="prevArrowSVGIcons[0]"
12992
13036
  class="k-pager-nav k-pager-first"
12993
13037
  [disabled]="disabled"
12994
13038
  fillMode="flat"
@@ -13001,8 +13045,8 @@ PagerPrevButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
13001
13045
  [enabled]="!disabled"
13002
13046
  class="k-pager-nav"
13003
13047
  [disabled]="disabled"
13004
- icon="caret-alt-left"
13005
- [svgIcon]="caretAltLeftIcon"
13048
+ [icon]="prevArrowIcons[1]"
13049
+ [svgIcon]="prevArrowSVGIcons[1]"
13006
13050
  fillMode="flat"
13007
13051
  rounded="none"
13008
13052
  [title]="textFor('pagerPreviousPage')"
@@ -13025,8 +13069,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13025
13069
  [attr.aria-label]="textFor('pagerFirstPage')"
13026
13070
  (click)="onButtonClick('firstPage')"
13027
13071
  role="button"
13028
- icon="caret-alt-to-left"
13029
- [svgIcon]="caretAltToLeftIcon"
13072
+ [icon]="prevArrowIcons[0]"
13073
+ [svgIcon]="prevArrowSVGIcons[0]"
13030
13074
  class="k-pager-nav k-pager-first"
13031
13075
  [disabled]="disabled"
13032
13076
  fillMode="flat"
@@ -13039,8 +13083,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13039
13083
  [enabled]="!disabled"
13040
13084
  class="k-pager-nav"
13041
13085
  [disabled]="disabled"
13042
- icon="caret-alt-left"
13043
- [svgIcon]="caretAltLeftIcon"
13086
+ [icon]="prevArrowIcons[1]"
13087
+ [svgIcon]="prevArrowSVGIcons[1]"
13044
13088
  fillMode="flat"
13045
13089
  rounded="none"
13046
13090
  [title]="textFor('pagerPreviousPage')"
@@ -13408,8 +13452,6 @@ class PagerNextButtonsComponent extends PagerElementComponent {
13408
13452
  constructor(localization, pagerContext, cd, navigationService) {
13409
13453
  super(localization, pagerContext, cd);
13410
13454
  this.navigationService = navigationService;
13411
- this.caretAltRightIcon = caretAltRightIcon;
13412
- this.caretAltToRightIcon = caretAltToRightIcon;
13413
13455
  }
13414
13456
  /**
13415
13457
  * @hidden
@@ -13444,8 +13486,8 @@ PagerNextButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
13444
13486
  type="button"
13445
13487
  kendoTreeListFocusable
13446
13488
  [enabled]="!disabled"
13447
- icon="caret-alt-right"
13448
- [svgIcon]="caretAltRightIcon"
13489
+ [icon]="nextArrowIcons[0]"
13490
+ [svgIcon]="nextArrowSVGIcons[0]"
13449
13491
  fillMode="flat"
13450
13492
  rounded="none"
13451
13493
  class="k-pager-nav"
@@ -13459,8 +13501,8 @@ PagerNextButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
13459
13501
  type="button"
13460
13502
  kendoTreeListFocusable
13461
13503
  [enabled]="!disabled"
13462
- icon="caret-alt-to-right"
13463
- [svgIcon]="caretAltToRightIcon"
13504
+ [icon]="nextArrowIcons[1]"
13505
+ [svgIcon]="nextArrowSVGIcons[1]"
13464
13506
  fillMode="flat"
13465
13507
  rounded="none"
13466
13508
  class="k-pager-nav k-pager-last"
@@ -13481,8 +13523,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13481
13523
  type="button"
13482
13524
  kendoTreeListFocusable
13483
13525
  [enabled]="!disabled"
13484
- icon="caret-alt-right"
13485
- [svgIcon]="caretAltRightIcon"
13526
+ [icon]="nextArrowIcons[0]"
13527
+ [svgIcon]="nextArrowSVGIcons[0]"
13486
13528
  fillMode="flat"
13487
13529
  rounded="none"
13488
13530
  class="k-pager-nav"
@@ -13496,8 +13538,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13496
13538
  type="button"
13497
13539
  kendoTreeListFocusable
13498
13540
  [enabled]="!disabled"
13499
- icon="caret-alt-to-right"
13500
- [svgIcon]="caretAltToRightIcon"
13541
+ [icon]="nextArrowIcons[1]"
13542
+ [svgIcon]="nextArrowSVGIcons[1]"
13501
13543
  fillMode="flat"
13502
13544
  rounded="none"
13503
13545
  class="k-pager-nav k-pager-last"
@@ -13669,7 +13711,7 @@ PagerPageSizesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
13669
13711
  [attr.aria-label]="textFor('pagerItemsPerPage')"
13670
13712
  (valueChange)="pageSizeChange($event)"></kendo-dropdownlist>
13671
13713
  <kendo-label [for]="dropdownlist" [text]="textFor('pagerItemsPerPage')"></kendo-label>
13672
- `, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "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"] }, { type: i4$2.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional"], exportAs: ["kendoLabel"] }], directives: [{ type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
13714
+ `, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "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"] }, { type: i4$2.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }], directives: [{ type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
13673
13715
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPageSizesComponent, decorators: [{
13674
13716
  type: Component,
13675
13717
  args: [{
@@ -16742,7 +16784,7 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
16742
16784
  </kendo-icon-wrapper>
16743
16785
  {{hintText}}
16744
16786
  </ng-template>
16745
- `, isInline: true, components: [{ type: ToolbarComponent, selector: "kendo-treelist-toolbar", inputs: ["position", "navigable"] }, { type: ColGroupComponent, selector: "[kendoTreeListColGroup]", inputs: ["columns"] }, { type: HeaderComponent, selector: "[kendoTreeListHeader]", inputs: ["totalColumnLevels", "columns", "scrollable", "filterable", "sort", "filter", "sortable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount"] }, { type: ListComponent, selector: "kendo-treelist-list", inputs: ["view", "total", "rowHeight", "take", "skip", "columns", "noRecordsTemplate", "filterable", "rowClass", "loading", "trackBy", "virtualColumns", "isVirtual", "expandIcons"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { type: TableBodyComponent, selector: "[kendoTreeListTableBody]", inputs: ["columns", "allColumns", "noRecordsTemplate", "view", "skip", "filterable", "noRecordsText", "isLocked", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "expandIcons", "trackBy", "rowClass"] }, { type: LoadingComponent, selector: "[kendoTreeListLoading]" }, { type: PagerComponent, selector: "kendo-treelist-pager", inputs: ["allCount", "total", "skip", "navigable", "pageSize", "options", "template"], outputs: ["pageChange"] }, { type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoTreeListLocalizedMessages]" }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i32.DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { type: i32.DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { type: TableDirective, selector: "table", inputs: ["locked", "virtualColumns"] }, { type: ResizableContainerDirective, selector: "[kendoTreeListResizableContainer]", inputs: ["lockedWidth", "kendoTreeListResizableContainer"] }, { type: i1$3.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { type: MarqueeDirective, selector: "[kendoTreeListSelectionMarquee]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
16787
+ `, isInline: true, components: [{ type: ToolbarComponent, selector: "kendo-treelist-toolbar", inputs: ["position", "navigable"] }, { type: ColGroupComponent, selector: "[kendoTreeListColGroup]", inputs: ["columns"] }, { type: HeaderComponent, selector: "[kendoTreeListHeader]", inputs: ["totalColumnLevels", "columns", "scrollable", "filterable", "sort", "filter", "sortable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount"] }, { type: ListComponent, selector: "kendo-treelist-list", inputs: ["view", "total", "rowHeight", "take", "skip", "columns", "noRecordsTemplate", "filterable", "rowClass", "loading", "trackBy", "virtualColumns", "isVirtual", "expandIcons"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { type: TableBodyComponent, selector: "[kendoTreeListTableBody]", inputs: ["columns", "allColumns", "noRecordsTemplate", "view", "skip", "filterable", "noRecordsText", "isLocked", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "expandIcons", "trackBy", "rowClass"] }, { type: LoadingComponent, selector: "[kendoTreeListLoading]" }, { type: PagerComponent, selector: "kendo-treelist-pager", inputs: ["allCount", "total", "skip", "navigable", "pageSize", "options", "template"], outputs: ["pageChange"] }, { type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoTreeListLocalizedMessages]" }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i32.DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { type: i32.DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { type: TableDirective, selector: "table", inputs: ["locked", "virtualColumns"] }, { type: ResizableContainerDirective, selector: "[kendoTreeListResizableContainer]", inputs: ["lockedWidth", "kendoTreeListResizableContainer"] }, { type: i1$3.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { type: MarqueeDirective, selector: "[kendoTreeListSelectionMarquee]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
16746
16788
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TreeListComponent, decorators: [{
16747
16789
  type: Component,
16748
16790
  args: [{
@@ -18917,7 +18959,7 @@ BaseCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
18917
18959
  </span>
18918
18960
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
18919
18961
  <span class="k-button-text"><ng-content></ng-content></span>
18920
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
18962
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
18921
18963
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseCommandDirective, decorators: [{
18922
18964
  type: Component,
18923
18965
  args: [{
@@ -18989,7 +19031,7 @@ EditCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
18989
19031
  </span>
18990
19032
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
18991
19033
  <span class="k-button-text"><ng-content></ng-content></span>
18992
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19034
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
18993
19035
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditCommandDirective, decorators: [{
18994
19036
  type: Component,
18995
19037
  args: [{
@@ -19061,7 +19103,7 @@ CancelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
19061
19103
  </span>
19062
19104
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
19063
19105
  <span class="k-button-text"><ng-content></ng-content></span>
19064
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19106
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19065
19107
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CancelCommandDirective, decorators: [{
19066
19108
  type: Component,
19067
19109
  args: [{
@@ -19132,7 +19174,7 @@ SaveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
19132
19174
  </span>
19133
19175
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
19134
19176
  <span class="k-button-text"><ng-content></ng-content></span>
19135
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19177
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19136
19178
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SaveCommandDirective, decorators: [{
19137
19179
  type: Component,
19138
19180
  args: [{
@@ -19203,7 +19245,7 @@ RemoveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
19203
19245
  </span>
19204
19246
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
19205
19247
  <span class="k-button-text"><ng-content></ng-content></span>
19206
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19248
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19207
19249
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RemoveCommandDirective, decorators: [{
19208
19250
  type: Component,
19209
19251
  args: [{
@@ -19275,7 +19317,7 @@ AddCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
19275
19317
  </span>
19276
19318
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
19277
19319
  <span class="k-button-text"><ng-content></ng-content></span>
19278
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19320
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19279
19321
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AddCommandDirective, decorators: [{
19280
19322
  type: Component,
19281
19323
  args: [{
@@ -21220,7 +21262,7 @@ PDFCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
21220
21262
  </span>
21221
21263
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
21222
21264
  <span class="k-button-text"><ng-content></ng-content></span>
21223
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
21265
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
21224
21266
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, decorators: [{
21225
21267
  type: Component,
21226
21268
  args: [{
@@ -21561,7 +21603,7 @@ ExcelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
21561
21603
  </span>
21562
21604
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
21563
21605
  <span class="k-button-text"><ng-content></ng-content></span>
21564
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
21606
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
21565
21607
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ExcelCommandDirective, decorators: [{
21566
21608
  type: Component,
21567
21609
  args: [{