@progress/kendo-angular-treelist 18.2.1-develop.2 → 18.3.0-develop.1
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/column-menu/column-chooser-item-checked.directive.d.ts +21 -0
- package/column-menu/column-chooser.component.d.ts +14 -3
- package/column-menu/column-list-kb-nav.service.d.ts +22 -0
- package/column-menu/column-list.component.d.ts +20 -5
- package/column-menu/column-menu-autosize-all.component.d.ts +39 -0
- package/column-menu/column-menu-autosize.component.d.ts +43 -0
- package/column-menu/column-menu-chooser.component.d.ts +16 -4
- package/column-menu/column-menu-container.component.d.ts +21 -0
- package/column-menu/column-menu-expandable-item.interface.d.ts +14 -0
- package/column-menu/column-menu-filter.component.d.ts +16 -3
- package/column-menu/column-menu-item.component.d.ts +11 -3
- package/column-menu/column-menu-item.directive.d.ts +45 -0
- package/column-menu/column-menu-settings.interface.d.ts +11 -2
- package/column-menu/column-menu.component.d.ts +40 -15
- package/column-menu/column-menu.service.d.ts +14 -0
- package/column-menu/utils.d.ts +13 -0
- package/columns/sort-settings.d.ts +12 -0
- package/common/error-messages.d.ts +8 -0
- package/common/id.service.d.ts +3 -0
- package/common/provider.service.d.ts +3 -1
- package/esm2022/column-menu/column-chooser-item-checked.directive.mjs +45 -0
- package/esm2022/column-menu/column-chooser.component.mjs +69 -14
- package/esm2022/column-menu/column-list-kb-nav.service.mjs +40 -0
- package/esm2022/column-menu/column-list.component.mjs +172 -50
- package/esm2022/column-menu/column-menu-autosize-all.component.mjs +79 -0
- package/esm2022/column-menu/column-menu-autosize.component.mjs +87 -0
- package/esm2022/column-menu/column-menu-chooser.component.mjs +44 -12
- package/esm2022/column-menu/column-menu-container.component.mjs +58 -0
- package/esm2022/column-menu/column-menu-expandable-item.interface.mjs +5 -0
- package/esm2022/column-menu/column-menu-filter.component.mjs +58 -25
- package/esm2022/column-menu/column-menu-item-base.mjs +2 -1
- package/esm2022/column-menu/column-menu-item.component.mjs +34 -5
- package/esm2022/column-menu/column-menu-item.directive.mjs +125 -0
- package/esm2022/column-menu/column-menu-lock.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-sort.component.mjs +1 -1
- package/esm2022/column-menu/column-menu.component.mjs +264 -67
- package/esm2022/column-menu/column-menu.service.mjs +18 -2
- package/esm2022/column-menu/utils.mjs +21 -1
- package/esm2022/common/error-messages.mjs +15 -0
- package/esm2022/common/id.service.mjs +9 -0
- package/esm2022/common/provider.service.mjs +7 -3
- package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +5 -2
- package/esm2022/filtering/cell/date-filter-cell.component.mjs +20 -3
- package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +17 -3
- package/esm2022/filtering/filter-row.component.mjs +1 -1
- package/esm2022/filtering/filter.service.mjs +17 -3
- package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +40 -14
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +47 -17
- package/esm2022/filtering/menu/date-filter-menu.component.mjs +27 -7
- package/esm2022/filtering/menu/filter-menu-container.component.mjs +83 -31
- package/esm2022/filtering/menu/filter-menu-dropdownlist.directive.mjs +44 -0
- package/esm2022/filtering/menu/filter-menu-host.directive.mjs +6 -1
- package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +52 -9
- package/esm2022/filtering/menu/filter-menu.component.mjs +111 -16
- package/esm2022/filtering/menu/menu-tabbing.service.mjs +22 -0
- package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +49 -35
- package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +37 -7
- package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +13 -4
- package/esm2022/filtering/menu/string-filter-menu.component.mjs +27 -8
- package/esm2022/filtering/operators/after-eq-filter-operator.component.mjs +2 -2
- package/esm2022/filtering/operators/after-filter-operator.component.mjs +2 -2
- package/esm2022/filtering/operators/before-eq-filter-operator.component.mjs +2 -2
- package/esm2022/filtering/operators/before-filter-operator.component.mjs +2 -2
- package/esm2022/filtering/operators/contains-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/ends-with-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/eq-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/filter-operator.base.mjs +18 -18
- package/esm2022/filtering/operators/gt-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/gte-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/is-empty-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/is-not-null-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/isnull-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/lt-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/lte-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/neq-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/not-contains-filter-operator.component.mjs +1 -1
- package/esm2022/filtering/operators/starts-with-filter-operator.component.mjs +1 -1
- package/esm2022/localization/messages.mjs +97 -3
- package/esm2022/navigation/logical-cell.directive.mjs +4 -1
- package/esm2022/navigation/navigation.service.mjs +4 -4
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/header/header.component.mjs +336 -178
- package/esm2022/rendering/table-body.component.mjs +1 -1
- package/esm2022/selection/selection.service.mjs +2 -2
- package/esm2022/treelist.component.mjs +73 -9
- package/fesm2022/progress-kendo-angular-treelist.mjs +2231 -628
- package/filtering/cell/date-filter-cell.component.d.ts +4 -0
- package/filtering/cell/numeric-filter-cell.component.d.ts +4 -0
- package/filtering/filter.service.d.ts +10 -1
- package/filtering/menu/boolean-filter-menu.component.d.ts +19 -7
- package/filtering/menu/date-filter-menu-input.component.d.ts +10 -3
- package/filtering/menu/date-filter-menu.component.d.ts +7 -1
- package/filtering/menu/filter-menu-container.component.d.ts +23 -6
- package/filtering/menu/filter-menu-dropdownlist.directive.d.ts +19 -0
- package/filtering/menu/filter-menu-host.directive.d.ts +3 -1
- package/filtering/menu/filter-menu-input-wrapper.component.d.ts +12 -2
- package/filtering/menu/filter-menu.component.d.ts +30 -7
- package/filtering/menu/menu-tabbing.service.d.ts +18 -0
- package/filtering/menu/numeric-filter-menu-input.component.d.ts +12 -26
- package/filtering/menu/numeric-filter-menu.component.d.ts +13 -1
- package/filtering/menu/string-filter-menu-input.component.d.ts +4 -1
- package/filtering/menu/string-filter-menu.component.d.ts +7 -1
- package/index.d.ts +1 -0
- package/localization/messages.d.ts +79 -3
- package/navigation/logical-cell.directive.d.ts +2 -1
- package/package.json +18 -18
- package/rendering/header/header.component.d.ts +43 -10
- package/schematics/ngAdd/index.js +3 -3
@@ -76,7 +76,15 @@ export declare class Messages extends ComponentMessages {
|
|
76
76
|
*/
|
77
77
|
filter: string;
|
78
78
|
/**
|
79
|
-
* The label of the filter
|
79
|
+
* The label of the filter input.
|
80
|
+
*
|
81
|
+
* The filter input label consists of a two-part message - the name of the column and a localizable string.
|
82
|
+
* For a column named **Product Name**, the default label will be **Product Name Filter**.
|
83
|
+
*
|
84
|
+
* To allow reordering the column name and the localizable part, the `filterInputLabel` accepts a string with a
|
85
|
+
* placeholder for the column name, for example, **filter for {columnName}**. The `{columnName}` placeholder will be replaced
|
86
|
+
* internally with the current column name, and the resulting label will be rendered as **filter for Product Name**.
|
87
|
+
* [See example](slug:globalization_grid#toc-custom-messages).
|
80
88
|
*/
|
81
89
|
filterInputLabel: string;
|
82
90
|
/**
|
@@ -203,6 +211,46 @@ export declare class Messages extends ComponentMessages {
|
|
203
211
|
* The text of the `Or` filter logic.
|
204
212
|
*/
|
205
213
|
filterOrLogic: string;
|
214
|
+
/**
|
215
|
+
* The text of the Today button of the Date filter.
|
216
|
+
*/
|
217
|
+
filterDateToday: string;
|
218
|
+
/**
|
219
|
+
* The title of the Toggle button of the Date filter.
|
220
|
+
*/
|
221
|
+
filterDateToggle: string;
|
222
|
+
/**
|
223
|
+
* The title of the Decrement button of the Numeric filter.
|
224
|
+
*/
|
225
|
+
filterNumericDecrement: string;
|
226
|
+
/**
|
227
|
+
* The title of the Increment button of the Numeric filter.
|
228
|
+
*/
|
229
|
+
filterNumericIncrement: string;
|
230
|
+
/**
|
231
|
+
* The label of the filter menu operators DropDownList.
|
232
|
+
*
|
233
|
+
* The label consists of a two-part message - the name of the column and a localizable string.
|
234
|
+
* For a column named **Product Name**, the default label will be **Product Name Filter Menu Operators**.
|
235
|
+
*
|
236
|
+
* To allow reordering the column name and the localizable part, the `filterMenuOperatorsDropDownLabel` accepts a string with a
|
237
|
+
* placeholder for the column name, for example, **filter operators for {columnName**'. The `{columnName}` placeholder will be replaced
|
238
|
+
* internally with the current column name, and the resulting label will be rendered as **filter operators for Product Name**.
|
239
|
+
* [See example](slug:globalization_treelist#toc-custom-messages).
|
240
|
+
*/
|
241
|
+
filterMenuOperatorsDropDownLabel: string;
|
242
|
+
/**
|
243
|
+
* The label of the filter menu logic DropDownList.
|
244
|
+
*
|
245
|
+
* The label consists of a two-part message - the name of the column and a localizable string.
|
246
|
+
* For a column named **Product Name**, the default label will be **Product Name Filter Menu Logic**.
|
247
|
+
*
|
248
|
+
* To allow reordering the column name and the localizable part, the `filterMenuLogicDropDownLabel` accepts a string with a
|
249
|
+
* placeholder for the column name, for example, **filter logic for {columnName}**. The `{columnName}` placeholder will be replaced
|
250
|
+
* internally with the current column name, and the resulting label will be rendered as **filter logic for Product Name**.
|
251
|
+
* [See example](slug:globalization_treelist#toc-custom-messages).
|
252
|
+
*/
|
253
|
+
filterMenuLogicDropDownLabel: string;
|
206
254
|
/**
|
207
255
|
* The loading text.
|
208
256
|
*
|
@@ -211,7 +259,15 @@ export declare class Messages extends ComponentMessages {
|
|
211
259
|
*/
|
212
260
|
loading: string;
|
213
261
|
/**
|
214
|
-
* The title of the
|
262
|
+
* The title of the column menu icon.
|
263
|
+
*
|
264
|
+
* The title consists of a two-part message - the name of the column and a localizable string.
|
265
|
+
* For a column named **Product Name**, the default title will be **Product Name Column Menu**.
|
266
|
+
*
|
267
|
+
* To allow reordering the column name and the localizable part, the `columnMenu` accepts a string with a
|
268
|
+
* placeholder for the column name, for example, **menu for {columnName}**. The `{columnName}` placeholder will be replaced
|
269
|
+
* internally with the current column name, and the resulting title will be rendered as **menu for Product Name**.
|
270
|
+
* [See example](slug:globalization_grid#toc-custom-messages).
|
215
271
|
*/
|
216
272
|
columnMenu: string;
|
217
273
|
/**
|
@@ -284,6 +340,26 @@ export declare class Messages extends ComponentMessages {
|
|
284
340
|
* The label for the select all rows checkbox
|
285
341
|
*/
|
286
342
|
selectAllRowsCheckboxLabel: string;
|
343
|
+
/**
|
344
|
+
* The text shown in the column menu for the autosize this column item.
|
345
|
+
*/
|
346
|
+
autosizeThisColumn: string;
|
347
|
+
/**
|
348
|
+
* The text shown in the column menu for the autosize all columns item.
|
349
|
+
*/
|
350
|
+
autosizeAllColumns: string;
|
351
|
+
/**
|
352
|
+
* The title of the filter menu icon.
|
353
|
+
*
|
354
|
+
* The title consists of a two-part message - the name of the column and a localizable string.
|
355
|
+
* For a column named **Product Name**, the default title will be **Product Name Filter Menu**.
|
356
|
+
*
|
357
|
+
* To allow reordering the column name and the localizable part, the `filterMenuTitle` accepts a string with a
|
358
|
+
* placeholder for the column name, for example, **filter for {columnName}**. The `{columnName}` placeholder will be replaced
|
359
|
+
* internally with the current column name, and the resulting title will be rendered as **filter for Product Name**.
|
360
|
+
* [See example](slug:globalization_treelist#toc-custom-messages).
|
361
|
+
*/
|
362
|
+
filterMenuTitle: string;
|
287
363
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
288
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItemsTotal": { "alias": "pagerItemsTotal"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "selectRowCheckboxLabel": { "alias": "selectRowCheckboxLabel"; "required": false; }; "selectAllRowsCheckboxLabel": { "alias": "selectAllRowsCheckboxLabel"; "required": false; }; }, {}, never, never, false, never>;
|
364
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItemsTotal": { "alias": "pagerItemsTotal"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "selectRowCheckboxLabel": { "alias": "selectRowCheckboxLabel"; "required": false; }; "selectAllRowsCheckboxLabel": { "alias": "selectAllRowsCheckboxLabel"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; }, {}, never, never, false, never>;
|
289
365
|
}
|
@@ -31,6 +31,7 @@ export declare class LogicalCellDirective implements LogicalCell, OnInit, OnChan
|
|
31
31
|
dataRowIndex: number;
|
32
32
|
dataItem: any;
|
33
33
|
expandable: boolean;
|
34
|
+
headerLabelText: string;
|
34
35
|
readonly uid: number;
|
35
36
|
get id(): string;
|
36
37
|
get ariaColIndex(): number;
|
@@ -48,5 +49,5 @@ export declare class LogicalCellDirective implements LogicalCell, OnInit, OnChan
|
|
48
49
|
private isFocusable;
|
49
50
|
private isFocused;
|
50
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogicalCellDirective, never>;
|
51
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LogicalCellDirective, "[kendoTreeListLogicalCell]", never, { "logicalColIndex": { "alias": "logicalColIndex"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "logicalSlaveCell": { "alias": "logicalSlaveCell"; "required": false; }; "column": { "alias": "column"; "required": false; }; "colIndex": { "alias": "colIndex"; "required": false; }; "colSpan": { "alias": "colSpan"; "required": false; }; "rowSpan": { "alias": "rowSpan"; "required": false; }; "dataRowIndex": { "alias": "dataRowIndex"; "required": false; }; "dataItem": { "alias": "dataItem"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; }, {}, never, never, true, never>;
|
52
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LogicalCellDirective, "[kendoTreeListLogicalCell]", never, { "logicalColIndex": { "alias": "logicalColIndex"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "logicalSlaveCell": { "alias": "logicalSlaveCell"; "required": false; }; "column": { "alias": "column"; "required": false; }; "colIndex": { "alias": "colIndex"; "required": false; }; "colSpan": { "alias": "colSpan"; "required": false; }; "rowSpan": { "alias": "rowSpan"; "required": false; }; "dataRowIndex": { "alias": "dataRowIndex"; "required": false; }; "dataItem": { "alias": "dataItem"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "headerLabelText": { "alias": "headerLabelText"; "required": false; }; }, {}, never, never, true, never>;
|
52
53
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.3.0-develop.1",
|
4
4
|
"description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
"package": {
|
25
25
|
"productName": "Kendo UI for Angular",
|
26
26
|
"productCode": "KENDOUIANGULAR",
|
27
|
-
"publishDate":
|
27
|
+
"publishDate": 1743106208,
|
28
28
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
29
29
|
}
|
30
30
|
},
|
@@ -37,26 +37,26 @@
|
|
37
37
|
"@progress/kendo-data-query": "^1.0.0",
|
38
38
|
"@progress/kendo-drawing": "^1.21.0",
|
39
39
|
"@progress/kendo-licensing": "^1.5.0",
|
40
|
-
"@progress/kendo-angular-buttons": "18.
|
41
|
-
"@progress/kendo-angular-common": "18.
|
42
|
-
"@progress/kendo-angular-dateinputs": "18.
|
43
|
-
"@progress/kendo-angular-dropdowns": "18.
|
44
|
-
"@progress/kendo-angular-excel-export": "18.
|
45
|
-
"@progress/kendo-angular-icons": "18.
|
46
|
-
"@progress/kendo-angular-inputs": "18.
|
47
|
-
"@progress/kendo-angular-intl": "18.
|
48
|
-
"@progress/kendo-angular-l10n": "18.
|
49
|
-
"@progress/kendo-angular-label": "18.
|
50
|
-
"@progress/kendo-angular-pager": "18.
|
51
|
-
"@progress/kendo-angular-pdf-export": "18.
|
52
|
-
"@progress/kendo-angular-popup": "18.
|
53
|
-
"@progress/kendo-angular-toolbar": "18.
|
54
|
-
"@progress/kendo-angular-utils": "18.
|
40
|
+
"@progress/kendo-angular-buttons": "18.3.0-develop.1",
|
41
|
+
"@progress/kendo-angular-common": "18.3.0-develop.1",
|
42
|
+
"@progress/kendo-angular-dateinputs": "18.3.0-develop.1",
|
43
|
+
"@progress/kendo-angular-dropdowns": "18.3.0-develop.1",
|
44
|
+
"@progress/kendo-angular-excel-export": "18.3.0-develop.1",
|
45
|
+
"@progress/kendo-angular-icons": "18.3.0-develop.1",
|
46
|
+
"@progress/kendo-angular-inputs": "18.3.0-develop.1",
|
47
|
+
"@progress/kendo-angular-intl": "18.3.0-develop.1",
|
48
|
+
"@progress/kendo-angular-l10n": "18.3.0-develop.1",
|
49
|
+
"@progress/kendo-angular-label": "18.3.0-develop.1",
|
50
|
+
"@progress/kendo-angular-pager": "18.3.0-develop.1",
|
51
|
+
"@progress/kendo-angular-pdf-export": "18.3.0-develop.1",
|
52
|
+
"@progress/kendo-angular-popup": "18.3.0-develop.1",
|
53
|
+
"@progress/kendo-angular-toolbar": "18.3.0-develop.1",
|
54
|
+
"@progress/kendo-angular-utils": "18.3.0-develop.1",
|
55
55
|
"rxjs": "^6.5.3 || ^7.0.0"
|
56
56
|
},
|
57
57
|
"dependencies": {
|
58
58
|
"tslib": "^2.3.1",
|
59
|
-
"@progress/kendo-angular-schematics": "18.
|
59
|
+
"@progress/kendo-angular-schematics": "18.3.0-develop.1",
|
60
60
|
"@progress/kendo-common": "^1.0.1",
|
61
61
|
"@progress/kendo-file-saver": "^1.0.0"
|
62
62
|
},
|
@@ -21,6 +21,12 @@ import { SortService } from '../../common/sort.service';
|
|
21
21
|
import { SelectionService } from '../../selection/selection.service';
|
22
22
|
import { ColumnMenuSettings } from '../../column-menu/column-menu-settings.interface';
|
23
23
|
import { ColumnsContainer } from '../../columns/columns-container';
|
24
|
+
import { ColumnMenuComponent } from '../../column-menu/column-menu.component';
|
25
|
+
import { FilterMenuComponent } from '../../filtering/menu/filter-menu.component';
|
26
|
+
import { ColumnInfoService } from '../../common/column-info.service';
|
27
|
+
import { ContextService } from '../../common/provider.service';
|
28
|
+
import { NavigationService } from '../../navigation/navigation.service';
|
29
|
+
import { IdService } from '../../common/id.service';
|
24
30
|
import * as i0 from "@angular/core";
|
25
31
|
/**
|
26
32
|
* @hidden
|
@@ -30,10 +36,14 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
30
36
|
private hint;
|
31
37
|
private cue;
|
32
38
|
private reorderService;
|
39
|
+
private idService;
|
33
40
|
private sortService;
|
34
41
|
private selectionService;
|
35
42
|
private localization;
|
36
43
|
private cd;
|
44
|
+
private columnInfoService;
|
45
|
+
private contextService;
|
46
|
+
private navigationService;
|
37
47
|
/**
|
38
48
|
* @hidden
|
39
49
|
*/
|
@@ -51,31 +61,51 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
51
61
|
columnMenuTemplate: TemplateRef<any>;
|
52
62
|
totalColumnsCount: number;
|
53
63
|
totalColumns: ColumnsContainer;
|
64
|
+
tabIndex: string;
|
65
|
+
get isNavigable(): boolean;
|
54
66
|
sortedFields: any;
|
55
67
|
get headerClass(): boolean;
|
56
68
|
hostClass: boolean;
|
57
69
|
get sortableLabel(): string;
|
58
70
|
get columnMenuSettings(): ColumnMenuSettings;
|
59
71
|
dropTargets: QueryList<DropTargetDirective>;
|
72
|
+
filterMenus: QueryList<FilterMenuComponent>;
|
73
|
+
columnMenus: QueryList<ColumnMenuComponent>;
|
60
74
|
get unlockedColumnsCount(): number;
|
61
75
|
sortAscSmallIcon: SVGIcon;
|
62
76
|
sortDescSmallIcon: SVGIcon;
|
63
77
|
private subscription;
|
64
78
|
private targetSubscription;
|
79
|
+
private stopSorting;
|
65
80
|
private _leafColumns;
|
66
|
-
constructor(popupService: SinglePopupService, hint: DragHintService, cue: DropCueService, reorderService: ColumnReorderService, sortService: SortService, selectionService: SelectionService, localization: LocalizationService, cd: ChangeDetectorRef);
|
67
|
-
getColumnComponent(column: ColumnBase): ColumnComponent;
|
68
|
-
sortColumn(column: ColumnComponent, event: any, link: any): boolean;
|
69
|
-
onHeaderKeydown(column: ColumnComponent, args: KeyboardEvent): void;
|
70
|
-
showSortNumbering(column: ColumnComponent): boolean;
|
71
|
-
sortOrder(field: string): number;
|
72
|
-
sortState(column: ColumnComponent): string;
|
73
|
-
toggleSort(column: ColumnComponent): Array<SortDescriptor>;
|
81
|
+
constructor(popupService: SinglePopupService, hint: DragHintService, cue: DropCueService, reorderService: ColumnReorderService, idService: IdService, sortService: SortService, selectionService: SelectionService, localization: LocalizationService, cd: ChangeDetectorRef, columnInfoService: ColumnInfoService, contextService: ContextService, navigationService: NavigationService);
|
74
82
|
ngAfterViewInit(): void;
|
75
83
|
ngDoCheck(): void;
|
76
84
|
ngOnChanges(changes: any): void;
|
77
85
|
ngOnInit(): void;
|
78
86
|
ngOnDestroy(): void;
|
87
|
+
getColumnComponent(column: ColumnBase): ColumnComponent;
|
88
|
+
onSortClick(column: ColumnComponent, event: MouseEvent, link: Element): void;
|
89
|
+
selectAllCheckboxId(): string;
|
90
|
+
get selectAllCheckboxLabel(): string;
|
91
|
+
sortColumn(descriptor: SortDescriptor[]): void;
|
92
|
+
/**
|
93
|
+
*
|
94
|
+
* Determines whether the modifier key (if any) passed
|
95
|
+
* with a click/keyboard event matches the user-defined multiSortKey.
|
96
|
+
*/
|
97
|
+
matchModifier(event: MouseEvent | KeyboardEvent): boolean;
|
98
|
+
onHeaderKeydown(column: ColumnComponent, args: KeyboardEvent): void;
|
99
|
+
showSortNumbering(column: ColumnComponent): boolean;
|
100
|
+
sortOrder(field: string): number;
|
101
|
+
sortState(column: ColumnComponent): string;
|
102
|
+
/**
|
103
|
+
*
|
104
|
+
* @param column
|
105
|
+
* @param modifier - Indicates whether the client-defined `multiSortKey` modifier is met. Defaults to `true`.
|
106
|
+
* @returns - SortDescriptor[]
|
107
|
+
*/
|
108
|
+
toggleSort(column: ColumnComponent, modifier?: boolean): Array<SortDescriptor>;
|
79
109
|
isFirstOnRow(column: ColumnComponent, index: number): boolean;
|
80
110
|
logicalColumnIndex(column: any): number;
|
81
111
|
get showFilterMenu(): boolean;
|
@@ -83,9 +113,12 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
83
113
|
showColumnMenu(column: any): boolean;
|
84
114
|
isFilterable(column: ColumnComponent): boolean;
|
85
115
|
canDrop(draggable: DraggableColumnDirective, target: DropTargetDirective): boolean;
|
86
|
-
shouldActivate(column: ColumnBase): boolean;
|
87
116
|
isSortable(column: ColumnComponent): boolean;
|
88
117
|
trackByIndex(index: number, _item: any): any;
|
118
|
+
shouldActivate(column: ColumnBase): boolean;
|
119
|
+
isInteractive(column: ColumnComponent, prop: string): boolean;
|
120
|
+
isCheckboxColumn(column: any): boolean;
|
121
|
+
private isReorderable;
|
89
122
|
protected toggleDirection(field: string, allowUnsort: boolean, initialDirection: "asc" | "desc"): SortDescriptor;
|
90
123
|
columnsForLevel(level: number): Array<ColumnBase>;
|
91
124
|
isColumnGroupComponent(column: ColumnBase): boolean;
|
@@ -103,5 +136,5 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
103
136
|
private leave;
|
104
137
|
private drop;
|
105
138
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
106
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "[kendoTreeListHeader]", never, { "totalColumnLevels": { "alias": "totalColumnLevels"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columnMenuTemplate": { "alias": "columnMenuTemplate"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; }, {}, never, never, true, never>;
|
139
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "[kendoTreeListHeader]", never, { "totalColumnLevels": { "alias": "totalColumnLevels"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columnMenuTemplate": { "alias": "columnMenuTemplate"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, {}, never, never, true, never>;
|
107
140
|
}
|
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
4
4
|
function default_1(options) {
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
6
6
|
// peer dep of the dropdowns
|
7
|
-
'@progress/kendo-angular-treeview': '18.
|
7
|
+
'@progress/kendo-angular-treeview': '18.3.0-develop.1',
|
8
8
|
// peer dependency of kendo-angular-inputs
|
9
|
-
'@progress/kendo-angular-dialog': '18.
|
9
|
+
'@progress/kendo-angular-dialog': '18.3.0-develop.1',
|
10
10
|
// peer dependency of kendo-angular-icons
|
11
11
|
'@progress/kendo-svg-icons': '^4.0.0',
|
12
12
|
// peer dependency of kendo-angular-dateinputs
|
13
|
-
'@progress/kendo-angular-navigation': '18.
|
13
|
+
'@progress/kendo-angular-navigation': '18.3.0-develop.1',
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|