@progress/kendo-angular-treelist 13.0.0-develop.1 → 13.0.0-develop.10
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/binding-directives/base-binding.directive.d.ts +5 -1
- package/binding-directives/data-bound-tree-component.d.ts +9 -0
- package/binding-directives/flat-binding.directive.d.ts +14 -3
- package/binding-directives/hierarchy-binding.directive.d.ts +12 -3
- package/column-menu/column-chooser.component.d.ts +10 -6
- package/column-menu/column-menu-chooser.component.d.ts +6 -10
- package/column-menu/column-menu-filter.component.d.ts +6 -10
- package/column-menu/column-menu-item-content-template.directive.d.ts +1 -1
- package/column-menu/column-menu-item.component.d.ts +8 -6
- package/column-menu/column-menu-lock.component.d.ts +5 -11
- package/column-menu/column-menu-settings.interface.d.ts +7 -10
- package/column-menu/column-menu-sort.component.d.ts +5 -11
- package/column-menu/column-menu.component.d.ts +1 -1
- package/column-menu/column-menu.service.d.ts +1 -1
- package/column-resizing/column-resize.interface.d.ts +1 -1
- package/columns/checkbox-column.component.d.ts +1 -1
- package/columns/column-base.d.ts +4 -0
- package/columns/column-group.component.d.ts +9 -6
- package/columns/column.component.d.ts +16 -66
- package/columns/command-column.component.d.ts +13 -15
- package/columns/rowreorder-column.component.d.ts +19 -0
- package/columns/span-column.component.d.ts +10 -81
- package/data/change-event-args.interface.d.ts +2 -2
- package/data/data.collection.d.ts +6 -0
- package/dragdrop/column-reorder-config.d.ts +1 -1
- package/editing/add-command.directive.d.ts +1 -1
- package/editing/cancel-command.directive.d.ts +1 -1
- package/editing/edit-command.directive.d.ts +1 -1
- package/editing/edit-event-args.interface.d.ts +1 -1
- package/editing/edit-template.directive.d.ts +11 -0
- package/editing/remove-command.directive.d.ts +1 -1
- package/editing/remove-event-args.interface.d.ts +1 -1
- package/editing/save-command.directive.d.ts +1 -1
- package/editing/save-event-args.interface.d.ts +1 -1
- package/esm2020/binding-directives/base-binding.directive.mjs +9 -3
- package/esm2020/binding-directives/flat-binding.directive.mjs +56 -6
- package/esm2020/binding-directives/hierarchy-binding.directive.mjs +46 -6
- package/esm2020/column-menu/column-chooser.component.mjs +10 -6
- package/esm2020/column-menu/column-menu-chooser.component.mjs +8 -12
- package/esm2020/column-menu/column-menu-filter.component.mjs +6 -10
- package/esm2020/column-menu/column-menu-item-content-template.directive.mjs +1 -1
- package/esm2020/column-menu/column-menu-item.component.mjs +9 -7
- package/esm2020/column-menu/column-menu-lock.component.mjs +5 -11
- package/esm2020/column-menu/column-menu-sort.component.mjs +5 -11
- package/esm2020/column-menu/column-menu.component.mjs +2 -2
- package/esm2020/column-menu/column-menu.service.mjs +1 -1
- package/esm2020/columns/checkbox-column.component.mjs +1 -1
- package/esm2020/columns/column-base.mjs +4 -0
- package/esm2020/columns/column-group.component.mjs +9 -6
- package/esm2020/columns/column.component.mjs +16 -39
- package/esm2020/columns/command-column.component.mjs +13 -15
- package/esm2020/columns/rowreorder-column.component.mjs +47 -0
- package/esm2020/columns/span-column.component.mjs +10 -81
- package/esm2020/data/data.collection.mjs +41 -28
- package/esm2020/editing/add-command.directive.mjs +2 -2
- package/esm2020/editing/base-command.directive.mjs +1 -1
- package/esm2020/editing/cancel-command.directive.mjs +2 -2
- package/esm2020/editing/edit-command.directive.mjs +2 -2
- package/esm2020/editing/edit-template.directive.mjs +11 -0
- package/esm2020/editing/remove-command.directive.mjs +2 -2
- package/esm2020/editing/save-command.directive.mjs +2 -2
- package/esm2020/excel/excel-command.directive.mjs +2 -2
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +11 -11
- package/esm2020/filtering/cell/date-filter-cell.component.mjs +11 -11
- package/esm2020/filtering/cell/filter-cell-operators.component.mjs +15 -0
- package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +13 -12
- package/esm2020/filtering/cell/string-filter-cell.component.mjs +14 -13
- package/esm2020/filtering/date-filter.component.mjs +6 -1
- package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +11 -12
- package/esm2020/filtering/menu/date-filter-menu.component.mjs +12 -12
- package/esm2020/filtering/menu/filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +12 -12
- package/esm2020/filtering/menu/string-filter-menu.component.mjs +15 -0
- package/esm2020/filtering/numeric-filter.component.mjs +4 -1
- package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -5
- package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -5
- package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -5
- package/esm2020/filtering/operators/before-filter-operator.component.mjs +3 -6
- package/esm2020/filtering/operators/contains-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/eq-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/gt-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/gte-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -5
- package/esm2020/filtering/operators/lte-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/neq-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/string-filter.component.mjs +2 -1
- package/esm2020/index.mjs +2 -0
- package/esm2020/localization/custom-messages.component.mjs +1 -1
- package/esm2020/localization/messages.mjs +3 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pager/pager-element.component.mjs +17 -0
- package/esm2020/pager/pager-next-buttons.component.mjs +8 -11
- package/esm2020/pager/pager-numeric-buttons.component.mjs +1 -1
- package/esm2020/pager/pager-page-sizes.component.mjs +1 -1
- package/esm2020/pager/pager-prev-buttons.component.mjs +8 -11
- package/esm2020/pager/pager-template.directive.mjs +1 -1
- package/esm2020/pdf/pdf-command.directive.mjs +2 -2
- package/esm2020/pdf/pdf-margin.component.mjs +9 -0
- package/esm2020/rendering/cell-template.directive.mjs +1 -1
- package/esm2020/rendering/cell.component.mjs +68 -20
- package/esm2020/rendering/common/spacer.component.mjs +1 -1
- package/esm2020/rendering/constants.mjs +4 -0
- package/esm2020/rendering/header/header.component.mjs +1 -1
- package/esm2020/rendering/table-body.component.mjs +5 -3
- package/esm2020/row-reordering/flat-reorder.service.mjs +48 -0
- package/esm2020/row-reordering/hierarchical-reorder.service.mjs +55 -0
- package/esm2020/row-reordering/row-reorder.service.mjs +220 -0
- package/esm2020/row-reordering/types.mjs +5 -0
- package/esm2020/row-reordering/utils.mjs +129 -0
- package/esm2020/shared.module.mjs +8 -3
- package/esm2020/treelist.component.mjs +185 -311
- package/esm2020/treelist.module.mjs +71 -66
- package/excel/excel-command.directive.d.ts +1 -1
- package/excel/excel-export-data.interface.d.ts +1 -1
- package/excel/excel.component.d.ts +9 -8
- package/fesm2015/progress-kendo-angular-treelist.mjs +1215 -792
- package/fesm2020/progress-kendo-angular-treelist.mjs +1205 -791
- package/filtering/cell/boolean-filter-cell.component.d.ts +11 -11
- package/filtering/cell/date-filter-cell.component.d.ts +11 -11
- package/filtering/cell/filter-cell-operators.component.d.ts +15 -0
- package/filtering/cell/numeric-filter-cell.component.d.ts +13 -12
- package/filtering/cell/string-filter-cell.component.d.ts +12 -11
- package/filtering/date-filter.component.d.ts +7 -11
- package/filtering/menu/boolean-filter-menu.component.d.ts +11 -12
- package/filtering/menu/date-filter-menu.component.d.ts +12 -12
- package/filtering/menu/numeric-filter-menu.component.d.ts +12 -12
- package/filtering/menu/string-filter-menu.component.d.ts +15 -0
- package/filtering/numeric-filter.component.d.ts +4 -1
- package/filtering/operators/after-eq-filter-operator.component.d.ts +4 -0
- package/filtering/operators/after-filter-operator.component.d.ts +4 -0
- package/filtering/operators/before-eq-filter-operator.component.d.ts +4 -0
- package/filtering/operators/before-filter-operator.component.d.ts +4 -0
- package/filtering/operators/contains-filter-operator.component.d.ts +1 -4
- package/filtering/operators/ends-with-filter-operator.component.d.ts +1 -4
- package/filtering/operators/eq-filter-operator.component.d.ts +1 -4
- package/filtering/operators/gte-filter-operator.component.d.ts +1 -4
- package/filtering/operators/is-empty-filter-operator.component.d.ts +1 -4
- package/filtering/operators/is-not-empty-filter-operator.component.d.ts +1 -4
- package/filtering/operators/is-not-null-filter-operator.component.d.ts +1 -4
- package/filtering/operators/isnull-filter-operator.component.d.ts +1 -4
- package/filtering/operators/lt-filter-operator.component.d.ts +4 -0
- package/filtering/operators/neq-filter-operator.component.d.ts +1 -4
- package/filtering/operators/not-contains-filter-operator.component.d.ts +1 -4
- package/filtering/operators/starts-with-filter-operator.component.d.ts +1 -4
- package/filtering/string-filter.component.d.ts +2 -1
- package/index.d.ts +2 -0
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/messages.d.ts +6 -2
- package/navigation/navigation-cell.interface.d.ts +1 -4
- package/navigation/navigation-row.interface.d.ts +1 -4
- package/package.json +16 -15
- package/pager/pager-element.component.d.ts +9 -0
- package/pager/pager-next-buttons.component.d.ts +0 -3
- package/pager/pager-numeric-buttons.component.d.ts +1 -1
- package/pager/pager-prev-buttons.component.d.ts +0 -3
- package/pager/pager-settings.d.ts +1 -15
- package/pager/pager-template.directive.d.ts +1 -1
- package/pdf/pdf-command.directive.d.ts +1 -1
- package/pdf/pdf-margin.component.d.ts +9 -0
- package/rendering/cell-template.directive.d.ts +1 -1
- package/rendering/cell.component.d.ts +9 -1
- package/rendering/common/spacer.component.d.ts +1 -1
- package/rendering/constants.d.ts +4 -0
- package/row-reordering/flat-reorder.service.d.ts +16 -0
- package/row-reordering/hierarchical-reorder.service.d.ts +16 -0
- package/row-reordering/row-reorder.service.d.ts +61 -0
- package/row-reordering/types.d.ts +39 -0
- package/row-reordering/utils.d.ts +85 -0
- package/schematics/ngAdd/index.js +3 -3
- package/scrolling/content-scroll-event.d.ts +1 -1
- package/scrolling/scroll-bottom-event.d.ts +1 -1
- package/scrolling/scroll-request.service.d.ts +6 -0
- package/selection/selectable-settings.d.ts +5 -15
- package/selection/selectable.directive.d.ts +1 -1
- package/selection/selection-change-event.d.ts +1 -1
- package/shared.module.d.ts +5 -4
- package/treelist.component.d.ts +66 -289
- package/treelist.module.d.ts +68 -66
|
@@ -7,7 +7,7 @@ import { Messages } from './messages';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Custom component messages override default component messages
|
|
10
|
-
* ([see example](
|
|
10
|
+
* ([see example](slug:globalization_treelist#toc-custom-messages)).
|
|
11
11
|
*/
|
|
12
12
|
export declare class CustomMessagesComponent extends Messages {
|
|
13
13
|
protected service: LocalizationService;
|
|
@@ -174,7 +174,7 @@ export declare class Messages extends ComponentMessages {
|
|
|
174
174
|
/**
|
|
175
175
|
* The loading text.
|
|
176
176
|
*
|
|
177
|
-
*
|
|
177
|
+
* The `loading` property is part of the accessibility support of the TreeList.
|
|
178
178
|
* Its value is detectable by screen readers and is not otherwise visible.
|
|
179
179
|
*/
|
|
180
180
|
loading: string;
|
|
@@ -236,6 +236,10 @@ export declare class Messages extends ComponentMessages {
|
|
|
236
236
|
* The label of the TreeList bottom toolbar.
|
|
237
237
|
*/
|
|
238
238
|
bottomToolbarLabel: string;
|
|
239
|
+
/**
|
|
240
|
+
* The label for the TreeList drag row handle.
|
|
241
|
+
*/
|
|
242
|
+
dragRowHandleLabel: string;
|
|
239
243
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
240
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "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"; }, {}, never>;
|
|
244
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "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"; }, {}, never>;
|
|
241
245
|
}
|
|
@@ -21,10 +21,7 @@ export interface NavigationCell {
|
|
|
21
21
|
*/
|
|
22
22
|
colIndex: number;
|
|
23
23
|
/**
|
|
24
|
-
* The logical index of the row which contains this cell.
|
|
25
|
-
*
|
|
26
|
-
* * Header rows are included, starting at index 0.
|
|
27
|
-
* * The row indexing is absolute and does not change with paging.
|
|
24
|
+
* The logical index of the row which contains this cell. The row indexing is absolute and does not change with paging. Header rows are included, starting at index 0.
|
|
28
25
|
*/
|
|
29
26
|
rowIndex: number;
|
|
30
27
|
/**
|
|
@@ -13,10 +13,7 @@ export interface NavigationRow {
|
|
|
13
13
|
*/
|
|
14
14
|
uid: number;
|
|
15
15
|
/**
|
|
16
|
-
* The logical index of the focusable row.
|
|
17
|
-
*
|
|
18
|
-
* * Header rows are included, starting at index 0.
|
|
19
|
-
* * The row indexing is absolute and does not change with paging.
|
|
16
|
+
* The logical index of the focusable row. The row indexing is absolute and does not change with paging. Header rows are included, starting at index 0.
|
|
20
17
|
*/
|
|
21
18
|
index: number;
|
|
22
19
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "13.0.0-develop.
|
|
3
|
+
"version": "13.0.0-develop.10",
|
|
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",
|
|
@@ -30,24 +30,25 @@
|
|
|
30
30
|
"@progress/kendo-data-query": "^1.0.0",
|
|
31
31
|
"@progress/kendo-drawing": "^1.17.2",
|
|
32
32
|
"@progress/kendo-licensing": "^1.0.2",
|
|
33
|
-
"@progress/kendo-angular-buttons": "13.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-common": "13.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-dateinputs": "13.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-dropdowns": "13.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-excel-export": "13.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-icons": "13.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-inputs": "13.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-intl": "13.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-l10n": "13.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-label": "13.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-pdf-export": "13.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-popup": "13.0.0-develop.
|
|
33
|
+
"@progress/kendo-angular-buttons": "13.0.0-develop.10",
|
|
34
|
+
"@progress/kendo-angular-common": "13.0.0-develop.10",
|
|
35
|
+
"@progress/kendo-angular-dateinputs": "13.0.0-develop.10",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "13.0.0-develop.10",
|
|
37
|
+
"@progress/kendo-angular-excel-export": "13.0.0-develop.10",
|
|
38
|
+
"@progress/kendo-angular-icons": "13.0.0-develop.10",
|
|
39
|
+
"@progress/kendo-angular-inputs": "13.0.0-develop.10",
|
|
40
|
+
"@progress/kendo-angular-intl": "13.0.0-develop.10",
|
|
41
|
+
"@progress/kendo-angular-l10n": "13.0.0-develop.10",
|
|
42
|
+
"@progress/kendo-angular-label": "13.0.0-develop.10",
|
|
43
|
+
"@progress/kendo-angular-pdf-export": "13.0.0-develop.10",
|
|
44
|
+
"@progress/kendo-angular-popup": "13.0.0-develop.10",
|
|
45
|
+
"@progress/kendo-angular-utils": "13.0.0-develop.10",
|
|
45
46
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
46
|
-
"@progress/kendo-angular-listview": "13.0.0-develop.
|
|
47
|
+
"@progress/kendo-angular-listview": "13.0.0-develop.10"
|
|
47
48
|
},
|
|
48
49
|
"dependencies": {
|
|
49
50
|
"tslib": "^2.3.1",
|
|
50
|
-
"@progress/kendo-angular-schematics": "13.0.0-develop.
|
|
51
|
+
"@progress/kendo-angular-schematics": "13.0.0-develop.10",
|
|
51
52
|
"@progress/kendo-common": "^0.2.0",
|
|
52
53
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
53
54
|
},
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
6
6
|
import { PagerContextService, PagerContextChanges } from "./pager-context.service";
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
/**
|
|
10
11
|
* @hidden
|
|
@@ -17,6 +18,10 @@ export declare abstract class PagerElementComponent implements OnInit, OnDestroy
|
|
|
17
18
|
skip: number;
|
|
18
19
|
pageSize: number;
|
|
19
20
|
allCount: number;
|
|
21
|
+
caretAltLeftIcon: SVGIcon;
|
|
22
|
+
caretAltToLeftIcon: SVGIcon;
|
|
23
|
+
caretAltRightIcon: SVGIcon;
|
|
24
|
+
caretAltToRightIcon: SVGIcon;
|
|
20
25
|
/**
|
|
21
26
|
* @hidden
|
|
22
27
|
*
|
|
@@ -60,6 +65,10 @@ export declare abstract class PagerElementComponent implements OnInit, OnDestroy
|
|
|
60
65
|
ngOnInit(): void;
|
|
61
66
|
protected abstract onChanges(changes: PagerContextChanges): void;
|
|
62
67
|
ngOnDestroy(): void;
|
|
68
|
+
get prevArrowIcons(): string[];
|
|
69
|
+
get prevArrowSVGIcons(): SVGIcon[];
|
|
70
|
+
get nextArrowIcons(): string[];
|
|
71
|
+
get nextArrowSVGIcons(): SVGIcon[];
|
|
63
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagerElementComponent, never>;
|
|
64
73
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PagerElementComponent, never, never, {}, {}, never>;
|
|
65
74
|
}
|
|
@@ -6,7 +6,6 @@ import { ChangeDetectorRef } from '@angular/core';
|
|
|
6
6
|
import { PagerContextService, PagerContextChanges } from "./pager-context.service";
|
|
7
7
|
import { PagerElementComponent } from './pager-element.component';
|
|
8
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
9
|
import { NavigationService } from '../navigation/navigation.service';
|
|
11
10
|
import * as i0 from "@angular/core";
|
|
12
11
|
/**
|
|
@@ -26,8 +25,6 @@ export declare class PagerNextButtonsComponent extends PagerElementComponent {
|
|
|
26
25
|
* @hidden
|
|
27
26
|
*/
|
|
28
27
|
navigable: boolean;
|
|
29
|
-
caretAltRightIcon: SVGIcon;
|
|
30
|
-
caretAltToRightIcon: SVGIcon;
|
|
31
28
|
constructor(localization: LocalizationService, pagerContext: PagerContextService, cd: ChangeDetectorRef, navigationService: NavigationService);
|
|
32
29
|
/**
|
|
33
30
|
* @hidden
|
|
@@ -8,7 +8,7 @@ import { PagerContextChanges, PagerContextService } from './pager-context.servic
|
|
|
8
8
|
import { PagerElementComponent } from './pager-element.component';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
/**
|
|
11
|
-
* Displays numeric buttons to enable navigation between the pages.
|
|
11
|
+
* Displays numeric buttons to enable navigation between the pages ([see example]({% slug paging_treelist %}#toc-pager-templates)).
|
|
12
12
|
*/
|
|
13
13
|
export declare class PagerNumericButtonsComponent extends PagerElementComponent {
|
|
14
14
|
protected pagerContext: PagerContextService;
|
|
@@ -6,7 +6,6 @@ import { ChangeDetectorRef } from '@angular/core';
|
|
|
6
6
|
import { PagerContextService, PagerContextChanges } from "./pager-context.service";
|
|
7
7
|
import { PagerElementComponent } from './pager-element.component';
|
|
8
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
9
|
import { NavigationService } from '../navigation/navigation.service';
|
|
11
10
|
import * as i0 from "@angular/core";
|
|
12
11
|
/**
|
|
@@ -14,8 +13,6 @@ import * as i0 from "@angular/core";
|
|
|
14
13
|
*/
|
|
15
14
|
export declare class PagerPrevButtonsComponent extends PagerElementComponent {
|
|
16
15
|
navigationService: NavigationService;
|
|
17
|
-
caretAltLeftIcon: SVGIcon;
|
|
18
|
-
caretAltToLeftIcon: SVGIcon;
|
|
19
16
|
constructor(localization: LocalizationService, pagerContext: PagerContextService, cd: ChangeDetectorRef, navigationService: NavigationService);
|
|
20
17
|
/**
|
|
21
18
|
* @hidden
|
|
@@ -32,45 +32,31 @@ export declare type PagerType = 'numeric' | 'input';
|
|
|
32
32
|
export interface PagerSettings {
|
|
33
33
|
/**
|
|
34
34
|
* Sets the maximum numeric buttons count before the buttons are collapsed.
|
|
35
|
-
*
|
|
36
|
-
* @default 10
|
|
37
35
|
*/
|
|
38
36
|
buttonCount?: number;
|
|
39
37
|
/**
|
|
40
38
|
* A flag that indicates if child nodes should be fetched and counted for the pager total.
|
|
41
|
-
*
|
|
42
|
-
* @default true
|
|
43
39
|
*/
|
|
44
40
|
countChildren?: boolean;
|
|
45
41
|
/**
|
|
46
42
|
* Toggles the information about the current page and the total number of records.
|
|
47
|
-
*
|
|
48
|
-
* @default true
|
|
49
43
|
*/
|
|
50
44
|
info?: boolean;
|
|
51
45
|
/**
|
|
52
46
|
* Defines the type of the TreeList pager.
|
|
53
|
-
*
|
|
54
|
-
* @default 'numeric'
|
|
55
47
|
*/
|
|
56
48
|
type?: PagerType;
|
|
57
49
|
/**
|
|
58
50
|
* Shows a menu for selecting the page size.
|
|
59
|
-
*
|
|
60
|
-
* @default false
|
|
61
51
|
*/
|
|
62
52
|
pageSizes?: boolean | Array<number>;
|
|
63
53
|
/**
|
|
64
54
|
* Toggles the **Previous** and **Next** buttons.
|
|
65
|
-
*
|
|
66
|
-
* @default true
|
|
67
55
|
*/
|
|
68
56
|
previousNext?: boolean;
|
|
69
57
|
/**
|
|
70
58
|
* Toggles the built-in responsive behavior of the Pager.
|
|
71
|
-
* Available in version `3.0.0` and above ([see example]({% slug paging_treelist %})).
|
|
72
|
-
*
|
|
73
|
-
* @default true
|
|
59
|
+
* Available in version `3.0.0` and above ([see example]({% slug paging_treelist#toc-responsive-pager %})).
|
|
74
60
|
*/
|
|
75
61
|
responsive?: boolean;
|
|
76
62
|
}
|
|
@@ -4,6 +4,15 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { PDFExportMarginComponent } from '@progress/kendo-angular-pdf-export';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Represents the Kendo UI PDFMargin component for Angular.
|
|
9
|
+
* The supported units are:
|
|
10
|
+
* `"mm"`
|
|
11
|
+
* `"cm"`
|
|
12
|
+
* `"in"`
|
|
13
|
+
* `"pt"` (default).
|
|
14
|
+
* Numbers are considered to be points (`"pt"`).
|
|
15
|
+
*/
|
|
7
16
|
export declare class PDFMarginComponent extends PDFExportMarginComponent {
|
|
8
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDFMarginComponent, never>;
|
|
9
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<PDFMarginComponent, "kendo-treelist-pdf-margin", never, {}, {}, never, never>;
|
|
@@ -20,7 +20,7 @@ import * as i0 from "@angular/core";
|
|
|
20
20
|
* - `loading`—Specifies if the item children are currently loading.
|
|
21
21
|
* - `rowIndex`—The current row index. Use it as an alias for a template variable by utilizing the `let-rowIndex="rowIndex"` syntax.
|
|
22
22
|
*
|
|
23
|
-
*
|
|
23
|
+
* @example
|
|
24
24
|
* ```html
|
|
25
25
|
* <kendo-treelist ...>
|
|
26
26
|
* <kendo-treelist-column field="ProductName">
|
|
@@ -8,16 +8,20 @@ import { ColumnComponent } from '../columns/column.component';
|
|
|
8
8
|
import { FormGroup } from '@angular/forms';
|
|
9
9
|
import { FocusGroup } from '../navigation/focus-group';
|
|
10
10
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
11
|
+
import { LocalizationService } from "@progress/kendo-angular-l10n";
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
/**
|
|
13
14
|
* @hidden
|
|
14
15
|
*/
|
|
15
16
|
export declare class CellComponent implements AfterContentChecked, DoCheck {
|
|
16
17
|
private editService;
|
|
18
|
+
private localization;
|
|
17
19
|
focusGroup: FocusGroup;
|
|
18
20
|
get commandCellClass(): boolean;
|
|
19
21
|
get isCheckboxColumn(): boolean;
|
|
20
22
|
get textNoWrapClass(): boolean;
|
|
23
|
+
get dragHandleCellClass(): boolean;
|
|
24
|
+
get dragRowHandleLabel(): string;
|
|
21
25
|
column: any;
|
|
22
26
|
columnIndex: number;
|
|
23
27
|
isNew: boolean;
|
|
@@ -40,14 +44,18 @@ export declare class CellComponent implements AfterContentChecked, DoCheck {
|
|
|
40
44
|
get childColumns(): ColumnComponent[];
|
|
41
45
|
caretAltDownIcon: SVGIcon;
|
|
42
46
|
caretAltRightIcon: SVGIcon;
|
|
47
|
+
caretAltLeftIcon: SVGIcon;
|
|
48
|
+
reorderIcon: SVGIcon;
|
|
43
49
|
cellContext: any;
|
|
44
50
|
private _templateContext;
|
|
45
51
|
private _editTemplateContext;
|
|
46
52
|
private _viewItem;
|
|
47
|
-
constructor(editService: EditService, focusGroup: FocusGroup);
|
|
53
|
+
constructor(editService: EditService, localization: LocalizationService, focusGroup: FocusGroup);
|
|
48
54
|
ngDoCheck(): void;
|
|
49
55
|
ngAfterContentChecked(): void;
|
|
50
56
|
private updateTemplateContext;
|
|
57
|
+
get arrowIcon(): string;
|
|
58
|
+
get arrowSVGIcon(): SVGIcon;
|
|
51
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<CellComponent, never>;
|
|
52
60
|
static ɵcmp: i0.ɵɵComponentDeclaration<CellComponent, "[kendoTreeListCell]", never, { "column": "column"; "columnIndex": "columnIndex"; "isNew": "isNew"; "level": "level"; "hasChildren": "hasChildren"; "isExpanded": "isExpanded"; "loading": "loading"; "expandIcons": "expandIcons"; "selected": "selected"; "dataItem": "dataItem"; "viewItem": "viewItem"; }, {}, never, never>;
|
|
53
61
|
}
|
|
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
* Represents the Kendo UI TreeListSpacer component for Angular.
|
|
8
8
|
* Used to give additional white space between the Pager inner elements,
|
|
9
9
|
* and provides a way for customizing the spacer width.
|
|
10
|
-
* It can also be used in any flex container within the TreeList.
|
|
10
|
+
* It can also be used in any flex container within the TreeList. [See example](slug:toolbartemplate_treelist#toc-define-spacing-between-the-toolbar-elements).
|
|
11
11
|
*/
|
|
12
12
|
export declare class TreeListSpacerComponent {
|
|
13
13
|
hostClass: boolean;
|
package/rendering/constants.d.ts
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { RowReorderService } from './row-reorder.service';
|
|
6
|
+
import { RowReorderEvent } from "./types";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export declare class FlatRowReorderService extends RowReorderService {
|
|
12
|
+
isOverChild(targetItem: any): boolean;
|
|
13
|
+
reorderRows(ev: RowReorderEvent, collection: Array<any>): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlatRowReorderService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FlatRowReorderService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { RowReorderService } from './row-reorder.service';
|
|
6
|
+
import { RowReorderEvent } from "./types";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export declare class HierarchicalRowReorderService extends RowReorderService {
|
|
12
|
+
isOverChild(targetItem: any): boolean;
|
|
13
|
+
reorderRows(ev: RowReorderEvent, collection: Array<any>, field?: string): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HierarchicalRowReorderService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HierarchicalRowReorderService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { DragTargetPressEvent, DragTargetDragEvent, DropTargetEvent } from '@progress/kendo-angular-utils';
|
|
6
|
+
import { EventEmitter, Renderer2 } from '@angular/core';
|
|
7
|
+
import { RowReorderEvent } from './types';
|
|
8
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
9
|
+
import { ColumnList } from '../columns/column-list';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
export declare class RowReorderService {
|
|
15
|
+
private renderer;
|
|
16
|
+
defaultSelectors: {
|
|
17
|
+
handle: string;
|
|
18
|
+
dragTarget: string;
|
|
19
|
+
dropTarget: string;
|
|
20
|
+
};
|
|
21
|
+
dragTarget: HTMLElement;
|
|
22
|
+
dropTarget: HTMLElement;
|
|
23
|
+
view: any;
|
|
24
|
+
bindingDirective: any;
|
|
25
|
+
private offsetY;
|
|
26
|
+
private dropIndicator;
|
|
27
|
+
private lastDropPosition;
|
|
28
|
+
private hintElement;
|
|
29
|
+
rowReorder: EventEmitter<RowReorderEvent>;
|
|
30
|
+
constructor(renderer: Renderer2);
|
|
31
|
+
press(ev: DragTargetPressEvent): void;
|
|
32
|
+
dragStart(): void;
|
|
33
|
+
drag(ev: DragTargetDragEvent): void;
|
|
34
|
+
dragEnter(ev: DropTargetEvent): void;
|
|
35
|
+
dragLeave(): void;
|
|
36
|
+
dragEnd(): void;
|
|
37
|
+
drop(): void;
|
|
38
|
+
get hintIcon(): string;
|
|
39
|
+
get hintSVGIcon(): SVGIcon;
|
|
40
|
+
getDefaultHintText(columns: ColumnList, data: any): string;
|
|
41
|
+
rowReorderArgs(dragRow: HTMLElement, dropRow: HTMLElement, data: Array<any>): RowReorderEvent;
|
|
42
|
+
isOverChild(_item: any): boolean;
|
|
43
|
+
reorderRows(_ev: RowReorderEvent, _collection: Array<any>, _field?: string): void;
|
|
44
|
+
get parentIdField(): string;
|
|
45
|
+
get idField(): string;
|
|
46
|
+
get childrenField(): string;
|
|
47
|
+
get data(): any[];
|
|
48
|
+
private getDragRowPerElement;
|
|
49
|
+
private createDropIndicator;
|
|
50
|
+
private destroyDropIndicator;
|
|
51
|
+
private decorateHint;
|
|
52
|
+
private positionDropIndicator;
|
|
53
|
+
private decorateDropIndicator;
|
|
54
|
+
private getDropPosition;
|
|
55
|
+
private updateDropIndicatorPosition;
|
|
56
|
+
private shouldHideDropIndicator;
|
|
57
|
+
private hide;
|
|
58
|
+
private show;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RowReorderService, never>;
|
|
60
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RowReorderService>;
|
|
61
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The arguments for the `rowReorder` event
|
|
7
|
+
*/
|
|
8
|
+
export interface RowReorderEvent {
|
|
9
|
+
/**
|
|
10
|
+
* The rows that are currently dragged and the data associated with them.
|
|
11
|
+
*/
|
|
12
|
+
draggedRows: DragRow[];
|
|
13
|
+
/**
|
|
14
|
+
* The row over which the dragged rows are dropped.
|
|
15
|
+
*/
|
|
16
|
+
dropTargetRow?: DragRow;
|
|
17
|
+
/**
|
|
18
|
+
* The drop position of the dragged row.
|
|
19
|
+
*/
|
|
20
|
+
dropPosition: DropPosition;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Represents a reorderable data row with an associated data item.
|
|
24
|
+
*/
|
|
25
|
+
export interface DragRow {
|
|
26
|
+
/**
|
|
27
|
+
* The row data item.
|
|
28
|
+
*/
|
|
29
|
+
dataItem: any;
|
|
30
|
+
/**
|
|
31
|
+
* The data row index.
|
|
32
|
+
*/
|
|
33
|
+
rowIndex: number;
|
|
34
|
+
/**
|
|
35
|
+
* The row HTML element.
|
|
36
|
+
*/
|
|
37
|
+
element: HTMLElement;
|
|
38
|
+
}
|
|
39
|
+
export declare type DropPosition = 'before' | 'after' | 'over' | 'forbidden';
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export declare const isNextSibling: (dropTarget: HTMLElement, dragTarget: HTMLElement) => boolean;
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export declare const isPreviousSibling: (dropTarget: HTMLElement, dragTarget: HTMLElement) => boolean;
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
export declare function getOffset(element: any): {
|
|
17
|
+
top: number;
|
|
18
|
+
left: number;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
export declare const hintIcons: {
|
|
24
|
+
forbidden: string;
|
|
25
|
+
before: string;
|
|
26
|
+
after: string;
|
|
27
|
+
over: string;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* @hidden
|
|
31
|
+
*/
|
|
32
|
+
export declare const hintSVGIcons: {
|
|
33
|
+
forbidden: import("@progress/kendo-svg-icons").SVGIcon;
|
|
34
|
+
before: import("@progress/kendo-svg-icons").SVGIcon;
|
|
35
|
+
after: import("@progress/kendo-svg-icons").SVGIcon;
|
|
36
|
+
over: import("@progress/kendo-svg-icons").SVGIcon;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* @hidden
|
|
40
|
+
*/
|
|
41
|
+
export declare const dropPosition: {
|
|
42
|
+
forbidden: string;
|
|
43
|
+
before: string;
|
|
44
|
+
after: string;
|
|
45
|
+
over: string;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @hidden
|
|
49
|
+
*/
|
|
50
|
+
export declare const hintStyles: {
|
|
51
|
+
zIndex: string;
|
|
52
|
+
display: string;
|
|
53
|
+
position: string;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* @hidden
|
|
57
|
+
*/
|
|
58
|
+
export declare const hintClasses: string[];
|
|
59
|
+
/**
|
|
60
|
+
* @hidden
|
|
61
|
+
*/
|
|
62
|
+
export declare const dropIndicatorStyles: {
|
|
63
|
+
zIndex: string;
|
|
64
|
+
position: string;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* @hidden
|
|
68
|
+
*/
|
|
69
|
+
export declare const dropIndicatorClasses: string[];
|
|
70
|
+
/**
|
|
71
|
+
* @hidden
|
|
72
|
+
*/
|
|
73
|
+
export declare const defaultSelectors: {
|
|
74
|
+
handle: string;
|
|
75
|
+
dragTarget: string;
|
|
76
|
+
dropTarget: string;
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* @hidden
|
|
80
|
+
*/
|
|
81
|
+
export declare const rowIndexAttr = "data-treelist-view-index";
|
|
82
|
+
/**
|
|
83
|
+
* @hidden
|
|
84
|
+
*/
|
|
85
|
+
export declare const findParent: (collection: Array<any>, searchItem: any, field: string) => any;
|
|
@@ -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': '13.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '13.0.0-develop.10',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '13.0.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '13.0.0-develop.10',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^1.0.0',
|
|
12
12
|
// peer dependency of kendo-angular-dateinputs
|
|
13
|
-
'@progress/kendo-angular-navigation': '13.0.0-develop.
|
|
13
|
+
'@progress/kendo-angular-navigation': '13.0.0-develop.10',
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
|
-
* Arguments for the `contentScroll` event.
|
|
6
|
+
* Arguments for the [`contentScroll`](slug:api_treelist_treelistcomponent#toc-contentscroll) event.
|
|
7
7
|
*/
|
|
8
8
|
export interface ContentScrollEvent {
|
|
9
9
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TreeListComponent } from "../treelist.component";
|
|
6
6
|
/**
|
|
7
|
-
* Arguments for the `scrollBottom` event. [See example](slug:scrollmmodes_grid#toc-endless-scrolling).
|
|
7
|
+
* Arguments for the [`scrollBottom`](slug:api_treelist_treelistcomponent#toc-scrollbottom) event. [See example](slug:scrollmmodes_grid#toc-endless-scrolling).
|
|
8
8
|
*/
|
|
9
9
|
export interface ScrollBottomEvent {
|
|
10
10
|
/**
|
|
@@ -8,7 +8,13 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Arguments for the scrollTo method. Specifies to which row / column should the treelist scroll to.
|
|
9
9
|
*/
|
|
10
10
|
export interface ScrollRequest {
|
|
11
|
+
/**
|
|
12
|
+
* The row index to which the TreeList should scroll to, considering 0 as first row.
|
|
13
|
+
*/
|
|
11
14
|
row?: number;
|
|
15
|
+
/**
|
|
16
|
+
* The column index to which the TreeList should scroll to, considering 0 as first column.
|
|
17
|
+
*/
|
|
12
18
|
column?: number;
|
|
13
19
|
}
|
|
14
20
|
/**
|