@progress/kendo-angular-treelist 13.0.0-develop.19 → 13.0.0-develop.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/filtering/cell/autocomplete-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +18 -1
- package/esm2020/filtering/cell/date-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/filter-cell-operators.component.mjs +21 -1
- package/esm2020/filtering/cell/filter-cell-wrapper.component.mjs +3 -1
- package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/string-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/filter-input.directive.mjs +29 -3
- package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +22 -7
- package/esm2020/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/string-filter-menu-input.component.mjs +19 -8
- package/esm2020/localization/messages.mjs +11 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/cell.component.mjs +5 -0
- package/esm2020/rendering/header/header.component.mjs +5 -0
- package/esm2020/rendering/list.component.mjs +20 -18
- package/esm2020/treelist.component.mjs +44 -10
- package/fesm2015/progress-kendo-angular-treelist.mjs +246 -67
- package/fesm2020/progress-kendo-angular-treelist.mjs +246 -67
- package/filtering/cell/autocomplete-filter-cell.component.d.ts +4 -0
- package/filtering/cell/boolean-filter-cell.component.d.ts +8 -0
- package/filtering/cell/date-filter-cell.component.d.ts +4 -0
- package/filtering/cell/filter-cell-operators.component.d.ts +14 -1
- package/filtering/cell/numeric-filter-cell.component.d.ts +4 -0
- package/filtering/cell/string-filter-cell.component.d.ts +4 -0
- package/filtering/filter-input.directive.d.ts +7 -1
- package/filtering/menu/boolean-filter-menu.component.d.ts +8 -1
- package/filtering/menu/string-filter-menu-input.component.d.ts +4 -0
- package/localization/messages.d.ts +37 -1
- package/package.json +16 -16
- package/rendering/cell.component.d.ts +1 -0
- package/rendering/header/header.component.d.ts +1 -0
- package/schematics/ngAdd/index.js +3 -3
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
export class Messages extends ComponentMessages {
|
|
12
12
|
}
|
|
13
13
|
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
14
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItemsTotal: "pagerItemsTotal", selectPage: "selectPage", filter: "filter", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", loading: "loading", columnMenu: "columnMenu", columns: "columns", lock: "lock", unlock: "unlock", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", columnsApply: "columnsApply", columnsReset: "columnsReset", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", dragRowHandleLabel: "dragRowHandleLabel" }, usesInheritance: true, ngImport: i0 });
|
|
14
|
+
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItemsTotal: "pagerItemsTotal", selectPage: "selectPage", filter: "filter", filterInputLabel: "filterInputLabel", filterCellOperatorLabel: "filterCellOperatorLabel", booleanFilterCellLabel: "booleanFilterCellLabel", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", loading: "loading", columnMenu: "columnMenu", columns: "columns", lock: "lock", unlock: "unlock", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", columnsApply: "columnsApply", columnsReset: "columnsReset", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", dragRowHandleLabel: "dragRowHandleLabel", selectRowCheckboxLabel: "selectRowCheckboxLabel", selectAllRowsCheckboxLabel: "selectAllRowsCheckboxLabel" }, usesInheritance: true, ngImport: i0 });
|
|
15
15
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
|
|
16
16
|
type: Directive,
|
|
17
17
|
args: [{}]
|
|
@@ -43,6 +43,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
43
43
|
type: Input
|
|
44
44
|
}], filter: [{
|
|
45
45
|
type: Input
|
|
46
|
+
}], filterInputLabel: [{
|
|
47
|
+
type: Input
|
|
48
|
+
}], filterCellOperatorLabel: [{
|
|
49
|
+
type: Input
|
|
50
|
+
}], booleanFilterCellLabel: [{
|
|
51
|
+
type: Input
|
|
46
52
|
}], filterEqOperator: [{
|
|
47
53
|
type: Input
|
|
48
54
|
}], filterNotEqOperator: [{
|
|
@@ -125,4 +131,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
125
131
|
type: Input
|
|
126
132
|
}], dragRowHandleLabel: [{
|
|
127
133
|
type: Input
|
|
134
|
+
}], selectRowCheckboxLabel: [{
|
|
135
|
+
type: Input
|
|
136
|
+
}], selectAllRowsCheckboxLabel: [{
|
|
137
|
+
type: Input
|
|
128
138
|
}] } });
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-treelist',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.0.0-develop.
|
|
12
|
+
publishDate: 1685961291,
|
|
13
|
+
version: '13.0.0-develop.20',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -140,6 +140,9 @@ export class CellComponent {
|
|
|
140
140
|
this.caretAltDownIcon;
|
|
141
141
|
return icon;
|
|
142
142
|
}
|
|
143
|
+
messageFor(token) {
|
|
144
|
+
return this.localization.get(token);
|
|
145
|
+
}
|
|
143
146
|
}
|
|
144
147
|
CellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CellComponent, deps: [{ token: i1.EditService }, { token: i2.LocalizationService }, { token: i3.FocusGroup }], target: i0.ɵɵFactoryTarget.Component });
|
|
145
148
|
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: `
|
|
@@ -168,6 +171,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
168
171
|
<input
|
|
169
172
|
type="checkbox"
|
|
170
173
|
kendoTreeListFocusable
|
|
174
|
+
[attr.aria-label]="messageFor('selectRowCheckboxLabel')"
|
|
171
175
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
172
176
|
[checked]="selected" />
|
|
173
177
|
</ng-template>
|
|
@@ -248,6 +252,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
248
252
|
<input
|
|
249
253
|
type="checkbox"
|
|
250
254
|
kendoTreeListFocusable
|
|
255
|
+
[attr.aria-label]="messageFor('selectRowCheckboxLabel')"
|
|
251
256
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
252
257
|
[checked]="selected" />
|
|
253
258
|
</ng-template>
|
|
@@ -277,6 +277,9 @@ export class HeaderComponent {
|
|
|
277
277
|
get leafColumns() {
|
|
278
278
|
return this._leafColumns;
|
|
279
279
|
}
|
|
280
|
+
messageFor(token) {
|
|
281
|
+
return this.localization.get(token);
|
|
282
|
+
}
|
|
280
283
|
attachTargets() {
|
|
281
284
|
if (this.targetSubscription) {
|
|
282
285
|
this.targetSubscription.unsubscribe();
|
|
@@ -467,6 +470,7 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
467
470
|
<input
|
|
468
471
|
type="checkbox"
|
|
469
472
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
473
|
+
[attr.aria-label]="messageFor('selectAllRowsCheckboxLabel')"
|
|
470
474
|
kendoTreeListFocusable
|
|
471
475
|
(click)="selectAllClick($event)" />
|
|
472
476
|
</ng-template>
|
|
@@ -656,6 +660,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
656
660
|
<input
|
|
657
661
|
type="checkbox"
|
|
658
662
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
663
|
+
[attr.aria-label]="messageFor('selectAllRowsCheckboxLabel')"
|
|
659
664
|
kendoTreeListFocusable
|
|
660
665
|
(click)="selectAllClick($event)" />
|
|
661
666
|
</ng-template>
|
|
@@ -524,8 +524,8 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
524
524
|
class="k-table k-grid-table k-table-md"
|
|
525
525
|
role="presentation"
|
|
526
526
|
[style.width.px]="lockedWidth">
|
|
527
|
-
<colgroup
|
|
528
|
-
|
|
527
|
+
<colgroup
|
|
528
|
+
kendoTreeListColGroup
|
|
529
529
|
[columns]="$any(lockedLeafColumns)">
|
|
530
530
|
</colgroup>
|
|
531
531
|
<tbody kendoTreeListTableBody
|
|
@@ -548,16 +548,17 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
548
548
|
<div [style.height.px]="totalHeight"></div>
|
|
549
549
|
</div>
|
|
550
550
|
</div>
|
|
551
|
-
<div
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
551
|
+
<div
|
|
552
|
+
#container
|
|
553
|
+
class="k-grid-content k-virtual-content"
|
|
554
|
+
[kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
|
|
555
|
+
[lockedWidth]="lockedWidth + 1"
|
|
556
|
+
>
|
|
556
557
|
<div role="presentation" class="k-grid-table-wrap">
|
|
557
558
|
<table [style.width.px]="nonLockedWidth" #table [virtualColumns]="virtualColumns"
|
|
558
559
|
class="k-table k-grid-table k-table-md" role="presentation">
|
|
559
|
-
<colgroup
|
|
560
|
-
|
|
560
|
+
<colgroup
|
|
561
|
+
kendoTreeListColGroup
|
|
561
562
|
[columns]="$any(nonLockedColumnsToRender)">
|
|
562
563
|
</colgroup>
|
|
563
564
|
<tbody kendoTreeListTableBody
|
|
@@ -609,8 +610,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
609
610
|
class="k-table k-grid-table k-table-md"
|
|
610
611
|
role="presentation"
|
|
611
612
|
[style.width.px]="lockedWidth">
|
|
612
|
-
<colgroup
|
|
613
|
-
|
|
613
|
+
<colgroup
|
|
614
|
+
kendoTreeListColGroup
|
|
614
615
|
[columns]="$any(lockedLeafColumns)">
|
|
615
616
|
</colgroup>
|
|
616
617
|
<tbody kendoTreeListTableBody
|
|
@@ -633,16 +634,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
633
634
|
<div [style.height.px]="totalHeight"></div>
|
|
634
635
|
</div>
|
|
635
636
|
</div>
|
|
636
|
-
<div
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
637
|
+
<div
|
|
638
|
+
#container
|
|
639
|
+
class="k-grid-content k-virtual-content"
|
|
640
|
+
[kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
|
|
641
|
+
[lockedWidth]="lockedWidth + 1"
|
|
642
|
+
>
|
|
641
643
|
<div role="presentation" class="k-grid-table-wrap">
|
|
642
644
|
<table [style.width.px]="nonLockedWidth" #table [virtualColumns]="virtualColumns"
|
|
643
645
|
class="k-table k-grid-table k-table-md" role="presentation">
|
|
644
|
-
<colgroup
|
|
645
|
-
|
|
646
|
+
<colgroup
|
|
647
|
+
kendoTreeListColGroup
|
|
646
648
|
[columns]="$any(nonLockedColumnsToRender)">
|
|
647
649
|
</colgroup>
|
|
648
650
|
<tbody kendoTreeListTableBody
|
|
@@ -1777,6 +1777,12 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
1777
1777
|
i18n-pagerItemsTotal="kendo.treelist.pagerItemsTotal|The label after the total items count in the TreeList pager"
|
|
1778
1778
|
pagerItemsTotal="items total"
|
|
1779
1779
|
|
|
1780
|
+
i18n-filterCellOperatorLabel="kendo.treelist.filterCellOperatorLabel|The label of the filter cell operators dropdown"
|
|
1781
|
+
filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
|
|
1782
|
+
|
|
1783
|
+
i18n-booleanFilterCellLabel="kendo.treelist.booleanFilterCellLabel|The label of the boolean filter cell dropdown"
|
|
1784
|
+
booleanFilterCellLabel="{{ 'Boolean filter cell for {columnName}' }}"
|
|
1785
|
+
|
|
1780
1786
|
i18n-filter="kendo.treelist.filter|The label of the filter cell or icon"
|
|
1781
1787
|
filter="Filter"
|
|
1782
1788
|
|
|
@@ -1858,6 +1864,9 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
1858
1864
|
i18n-loading="kendo.treelist.loading|The loading text"
|
|
1859
1865
|
loading="Loading"
|
|
1860
1866
|
|
|
1867
|
+
i18n-filterInputLabel="kendo.treelist.filterInputLabel|The label of the filter row and menu inputs"
|
|
1868
|
+
filterInputLabel="{{ '{columnName} Filter' }}"
|
|
1869
|
+
|
|
1861
1870
|
i18n-columnMenu="kendo.treelist.columnMenu|The title of the column menu icon"
|
|
1862
1871
|
columnMenu="Column Menu"
|
|
1863
1872
|
|
|
@@ -1902,8 +1911,15 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
1902
1911
|
|
|
1903
1912
|
i18n-bottomToolbarLabel="kendo.treelist.bottomToolbarLabel|The label of the TreeList bottom toolbar"
|
|
1904
1913
|
bottomToolbarLabel="Bottom toolbar"
|
|
1914
|
+
|
|
1905
1915
|
i18n-dragRowHandleLabel="kendo.treelist.dragRowHandleLabel|The label for the TreeList drag row handle"
|
|
1906
1916
|
dragRowHandleLabel="Drag row"
|
|
1917
|
+
|
|
1918
|
+
i18n-selectRowCheckboxLabel="kendo.treelist.selectRowCheckboxLabel|The label for the select row checkbox"
|
|
1919
|
+
selectRowCheckboxLabel="Select row"
|
|
1920
|
+
|
|
1921
|
+
i18n-selectAllRowsCheckboxLabel="kendo.treelist.selectAllRowsCheckboxLabel|The label for the select all rows checkbox"
|
|
1922
|
+
selectAllRowsCheckboxLabel="Select all rows"
|
|
1907
1923
|
>
|
|
1908
1924
|
</ng-container>
|
|
1909
1925
|
<kendo-treelist-toolbar
|
|
@@ -1954,8 +1970,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
1954
1970
|
role="presentation"
|
|
1955
1971
|
[style.width.px]="lockedWidth"
|
|
1956
1972
|
class="k-grid-header-table k-table k-table-md">
|
|
1957
|
-
<colgroup
|
|
1958
|
-
|
|
1973
|
+
<colgroup
|
|
1974
|
+
kendoTreeListColGroup
|
|
1959
1975
|
[columns]="$any(lockedLeafColumns)">
|
|
1960
1976
|
</colgroup>
|
|
1961
1977
|
<thead kendoTreeListHeader
|
|
@@ -1982,8 +1998,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
1982
1998
|
[style.width.px]="nonLockedWidth"
|
|
1983
1999
|
[virtualColumns]="virtualColumns"
|
|
1984
2000
|
class="k-grid-header-table k-table k-table-md">
|
|
1985
|
-
<colgroup
|
|
1986
|
-
|
|
2001
|
+
<colgroup
|
|
2002
|
+
kendoTreeListColGroup
|
|
1987
2003
|
[columns]="headerLeafColumns">
|
|
1988
2004
|
</colgroup>
|
|
1989
2005
|
<thead kendoTreeListHeader
|
|
@@ -2035,7 +2051,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
2035
2051
|
<table
|
|
2036
2052
|
class="k-table k-table-md k-grid-header-table"
|
|
2037
2053
|
[style.table-layout]="resizable ? 'fixed' : null">
|
|
2038
|
-
<colgroup
|
|
2054
|
+
<colgroup
|
|
2055
|
+
kendoTreeListColGroup
|
|
2039
2056
|
[columns]="$any(leafColumns)">
|
|
2040
2057
|
</colgroup>
|
|
2041
2058
|
<thead kendoTreeListHeader
|
|
@@ -2187,6 +2204,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2187
2204
|
i18n-pagerItemsTotal="kendo.treelist.pagerItemsTotal|The label after the total items count in the TreeList pager"
|
|
2188
2205
|
pagerItemsTotal="items total"
|
|
2189
2206
|
|
|
2207
|
+
i18n-filterCellOperatorLabel="kendo.treelist.filterCellOperatorLabel|The label of the filter cell operators dropdown"
|
|
2208
|
+
filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
|
|
2209
|
+
|
|
2210
|
+
i18n-booleanFilterCellLabel="kendo.treelist.booleanFilterCellLabel|The label of the boolean filter cell dropdown"
|
|
2211
|
+
booleanFilterCellLabel="{{ 'Boolean filter cell for {columnName}' }}"
|
|
2212
|
+
|
|
2190
2213
|
i18n-filter="kendo.treelist.filter|The label of the filter cell or icon"
|
|
2191
2214
|
filter="Filter"
|
|
2192
2215
|
|
|
@@ -2268,6 +2291,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2268
2291
|
i18n-loading="kendo.treelist.loading|The loading text"
|
|
2269
2292
|
loading="Loading"
|
|
2270
2293
|
|
|
2294
|
+
i18n-filterInputLabel="kendo.treelist.filterInputLabel|The label of the filter row and menu inputs"
|
|
2295
|
+
filterInputLabel="{{ '{columnName} Filter' }}"
|
|
2296
|
+
|
|
2271
2297
|
i18n-columnMenu="kendo.treelist.columnMenu|The title of the column menu icon"
|
|
2272
2298
|
columnMenu="Column Menu"
|
|
2273
2299
|
|
|
@@ -2312,8 +2338,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2312
2338
|
|
|
2313
2339
|
i18n-bottomToolbarLabel="kendo.treelist.bottomToolbarLabel|The label of the TreeList bottom toolbar"
|
|
2314
2340
|
bottomToolbarLabel="Bottom toolbar"
|
|
2341
|
+
|
|
2315
2342
|
i18n-dragRowHandleLabel="kendo.treelist.dragRowHandleLabel|The label for the TreeList drag row handle"
|
|
2316
2343
|
dragRowHandleLabel="Drag row"
|
|
2344
|
+
|
|
2345
|
+
i18n-selectRowCheckboxLabel="kendo.treelist.selectRowCheckboxLabel|The label for the select row checkbox"
|
|
2346
|
+
selectRowCheckboxLabel="Select row"
|
|
2347
|
+
|
|
2348
|
+
i18n-selectAllRowsCheckboxLabel="kendo.treelist.selectAllRowsCheckboxLabel|The label for the select all rows checkbox"
|
|
2349
|
+
selectAllRowsCheckboxLabel="Select all rows"
|
|
2317
2350
|
>
|
|
2318
2351
|
</ng-container>
|
|
2319
2352
|
<kendo-treelist-toolbar
|
|
@@ -2364,8 +2397,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2364
2397
|
role="presentation"
|
|
2365
2398
|
[style.width.px]="lockedWidth"
|
|
2366
2399
|
class="k-grid-header-table k-table k-table-md">
|
|
2367
|
-
<colgroup
|
|
2368
|
-
|
|
2400
|
+
<colgroup
|
|
2401
|
+
kendoTreeListColGroup
|
|
2369
2402
|
[columns]="$any(lockedLeafColumns)">
|
|
2370
2403
|
</colgroup>
|
|
2371
2404
|
<thead kendoTreeListHeader
|
|
@@ -2392,8 +2425,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2392
2425
|
[style.width.px]="nonLockedWidth"
|
|
2393
2426
|
[virtualColumns]="virtualColumns"
|
|
2394
2427
|
class="k-grid-header-table k-table k-table-md">
|
|
2395
|
-
<colgroup
|
|
2396
|
-
|
|
2428
|
+
<colgroup
|
|
2429
|
+
kendoTreeListColGroup
|
|
2397
2430
|
[columns]="headerLeafColumns">
|
|
2398
2431
|
</colgroup>
|
|
2399
2432
|
<thead kendoTreeListHeader
|
|
@@ -2445,7 +2478,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2445
2478
|
<table
|
|
2446
2479
|
class="k-table k-table-md k-grid-header-table"
|
|
2447
2480
|
[style.table-layout]="resizable ? 'fixed' : null">
|
|
2448
|
-
<colgroup
|
|
2481
|
+
<colgroup
|
|
2482
|
+
kendoTreeListColGroup
|
|
2449
2483
|
[columns]="$any(leafColumns)">
|
|
2450
2484
|
</colgroup>
|
|
2451
2485
|
<thead kendoTreeListHeader
|