@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
|
@@ -28,72 +28,74 @@ import { ExpandableDirective } from './expand-state/expandable.directive';
|
|
|
28
28
|
import { SelectableDirective } from './selection/selectable.directive';
|
|
29
29
|
import { MarqueeDirective } from './selection/marquee.directive';
|
|
30
30
|
import { TreeListSpacerComponent } from './rendering/common/spacer.component';
|
|
31
|
+
import { DragAndDropModule } from '@progress/kendo-angular-utils';
|
|
31
32
|
import * as i0 from "@angular/core";
|
|
32
33
|
import * as i1 from "./columns/column.component";
|
|
33
34
|
import * as i2 from "./columns/span-column.component";
|
|
34
35
|
import * as i3 from "./columns/checkbox-column.component";
|
|
35
|
-
import * as i4 from "./columns/column
|
|
36
|
-
import * as i5 from "./
|
|
37
|
-
import * as i6 from "./
|
|
38
|
-
import * as i7 from "./
|
|
39
|
-
import * as i8 from "./rendering/
|
|
40
|
-
import * as i9 from "./
|
|
41
|
-
import * as i10 from "./editing/edit-
|
|
42
|
-
import * as i11 from "./editing/
|
|
43
|
-
import * as i12 from "./editing/
|
|
44
|
-
import * as i13 from "./editing/
|
|
45
|
-
import * as i14 from "./editing/
|
|
46
|
-
import * as i15 from "./
|
|
47
|
-
import * as i16 from "./rendering/
|
|
48
|
-
import * as i17 from "./
|
|
49
|
-
import * as i18 from "./pager/pager
|
|
50
|
-
import * as i19 from "./pager/pager-
|
|
51
|
-
import * as i20 from "./pager/pager-
|
|
52
|
-
import * as i21 from "./pager/pager-
|
|
53
|
-
import * as i22 from "./pager/pager-
|
|
54
|
-
import * as i23 from "./pager/pager-
|
|
55
|
-
import * as i24 from "./pager/pager-
|
|
56
|
-
import * as i25 from "./
|
|
57
|
-
import * as i26 from "./filtering/
|
|
58
|
-
import * as i27 from "./filtering/cell/filter-cell
|
|
59
|
-
import * as i28 from "./filtering/cell/filter-cell-
|
|
60
|
-
import * as i29 from "./filtering/cell/
|
|
61
|
-
import * as i30 from "./filtering/cell/
|
|
62
|
-
import * as i31 from "./filtering/cell/
|
|
63
|
-
import * as i32 from "./filtering/cell/
|
|
64
|
-
import * as i33 from "./filtering/cell/
|
|
65
|
-
import * as i34 from "./filtering/
|
|
66
|
-
import * as i35 from "./filtering/operators/
|
|
67
|
-
import * as i36 from "./filtering/operators/
|
|
68
|
-
import * as i37 from "./filtering/operators/
|
|
69
|
-
import * as i38 from "./filtering/operators/
|
|
70
|
-
import * as i39 from "./filtering/operators/is-
|
|
71
|
-
import * as i40 from "./filtering/operators/is-not-
|
|
72
|
-
import * as i41 from "./filtering/operators/
|
|
73
|
-
import * as i42 from "./filtering/operators/
|
|
74
|
-
import * as i43 from "./filtering/operators/
|
|
75
|
-
import * as i44 from "./filtering/operators/
|
|
76
|
-
import * as i45 from "./filtering/operators/
|
|
77
|
-
import * as i46 from "./filtering/operators/
|
|
78
|
-
import * as i47 from "./filtering/operators/
|
|
79
|
-
import * as i48 from "./filtering/operators/
|
|
80
|
-
import * as i49 from "./filtering/operators/after-
|
|
81
|
-
import * as i50 from "./filtering/operators/
|
|
82
|
-
import * as i51 from "./filtering/operators/before-filter-operator.component";
|
|
83
|
-
import * as i52 from "./filtering/
|
|
84
|
-
import * as i53 from "./filtering/menu/filter-menu
|
|
85
|
-
import * as i54 from "./filtering/menu/
|
|
86
|
-
import * as i55 from "./filtering/menu/
|
|
87
|
-
import * as i56 from "./filtering/menu/
|
|
88
|
-
import * as i57 from "./
|
|
89
|
-
import * as i58 from "./column-menu/column-
|
|
90
|
-
import * as i59 from "./column-menu/column-menu-
|
|
91
|
-
import * as i60 from "./column-menu/column-menu-item
|
|
92
|
-
import * as i61 from "./column-menu/column-menu-
|
|
93
|
-
import * as i62 from "./column-menu/column-menu-
|
|
94
|
-
import * as i63 from "./column-menu/column-menu-
|
|
95
|
-
import * as i64 from "./column-menu/column-menu-
|
|
96
|
-
import * as i65 from "./column-menu/column-menu.
|
|
36
|
+
import * as i4 from "./columns/rowreorder-column.component";
|
|
37
|
+
import * as i5 from "./columns/column-group.component";
|
|
38
|
+
import * as i6 from "./navigation/focusable.directive";
|
|
39
|
+
import * as i7 from "./columns/command-column.component";
|
|
40
|
+
import * as i8 from "./rendering/cell-template.directive";
|
|
41
|
+
import * as i9 from "./rendering/no-records-template.directive";
|
|
42
|
+
import * as i10 from "./editing/edit-template.directive";
|
|
43
|
+
import * as i11 from "./editing/edit-command.directive";
|
|
44
|
+
import * as i12 from "./editing/cancel-command.directive";
|
|
45
|
+
import * as i13 from "./editing/save-command.directive";
|
|
46
|
+
import * as i14 from "./editing/remove-command.directive";
|
|
47
|
+
import * as i15 from "./editing/add-command.directive";
|
|
48
|
+
import * as i16 from "./rendering/footer-template.directive";
|
|
49
|
+
import * as i17 from "./rendering/header/header-template.directive";
|
|
50
|
+
import * as i18 from "./pager/pager.component";
|
|
51
|
+
import * as i19 from "./pager/pager-prev-buttons.component";
|
|
52
|
+
import * as i20 from "./pager/pager-next-buttons.component";
|
|
53
|
+
import * as i21 from "./pager/pager-numeric-buttons.component";
|
|
54
|
+
import * as i22 from "./pager/pager-input.component";
|
|
55
|
+
import * as i23 from "./pager/pager-info.component";
|
|
56
|
+
import * as i24 from "./pager/pager-page-sizes.component";
|
|
57
|
+
import * as i25 from "./pager/pager-template.directive";
|
|
58
|
+
import * as i26 from "./filtering/filter-row.component";
|
|
59
|
+
import * as i27 from "./filtering/cell/filter-cell.component";
|
|
60
|
+
import * as i28 from "./filtering/cell/filter-cell-template.directive";
|
|
61
|
+
import * as i29 from "./filtering/cell/filter-cell-operators.component";
|
|
62
|
+
import * as i30 from "./filtering/cell/string-filter-cell.component";
|
|
63
|
+
import * as i31 from "./filtering/cell/numeric-filter-cell.component";
|
|
64
|
+
import * as i32 from "./filtering/cell/autocomplete-filter-cell.component";
|
|
65
|
+
import * as i33 from "./filtering/cell/boolean-filter-cell.component";
|
|
66
|
+
import * as i34 from "./filtering/cell/date-filter-cell.component";
|
|
67
|
+
import * as i35 from "./filtering/operators/contains-filter-operator.component";
|
|
68
|
+
import * as i36 from "./filtering/operators/not-contains-filter-operator.component";
|
|
69
|
+
import * as i37 from "./filtering/operators/ends-with-filter-operator.component";
|
|
70
|
+
import * as i38 from "./filtering/operators/eq-filter-operator.component";
|
|
71
|
+
import * as i39 from "./filtering/operators/is-empty-filter-operator.component";
|
|
72
|
+
import * as i40 from "./filtering/operators/is-not-empty-filter-operator.component";
|
|
73
|
+
import * as i41 from "./filtering/operators/is-not-null-filter-operator.component";
|
|
74
|
+
import * as i42 from "./filtering/operators/isnull-filter-operator.component";
|
|
75
|
+
import * as i43 from "./filtering/operators/neq-filter-operator.component";
|
|
76
|
+
import * as i44 from "./filtering/operators/starts-with-filter-operator.component";
|
|
77
|
+
import * as i45 from "./filtering/operators/gt-filter-operator.component";
|
|
78
|
+
import * as i46 from "./filtering/operators/gte-filter-operator.component";
|
|
79
|
+
import * as i47 from "./filtering/operators/lt-filter-operator.component";
|
|
80
|
+
import * as i48 from "./filtering/operators/lte-filter-operator.component";
|
|
81
|
+
import * as i49 from "./filtering/operators/after-filter-operator.component";
|
|
82
|
+
import * as i50 from "./filtering/operators/after-eq-filter-operator.component";
|
|
83
|
+
import * as i51 from "./filtering/operators/before-eq-filter-operator.component";
|
|
84
|
+
import * as i52 from "./filtering/operators/before-filter-operator.component";
|
|
85
|
+
import * as i53 from "./filtering/menu/string-filter-menu.component";
|
|
86
|
+
import * as i54 from "./filtering/menu/filter-menu-template.directive";
|
|
87
|
+
import * as i55 from "./filtering/menu/numeric-filter-menu.component";
|
|
88
|
+
import * as i56 from "./filtering/menu/date-filter-menu.component";
|
|
89
|
+
import * as i57 from "./filtering/menu/boolean-filter-menu.component";
|
|
90
|
+
import * as i58 from "./column-menu/column-chooser.component";
|
|
91
|
+
import * as i59 from "./column-menu/column-menu-filter.component";
|
|
92
|
+
import * as i60 from "./column-menu/column-menu-item.component";
|
|
93
|
+
import * as i61 from "./column-menu/column-menu-item-content-template.directive";
|
|
94
|
+
import * as i62 from "./column-menu/column-menu-sort.component";
|
|
95
|
+
import * as i63 from "./column-menu/column-menu-lock.component";
|
|
96
|
+
import * as i64 from "./column-menu/column-menu-chooser.component";
|
|
97
|
+
import * as i65 from "./column-menu/column-menu-template.directive";
|
|
98
|
+
import * as i66 from "./column-menu/column-menu.component";
|
|
97
99
|
const exportedModules = [
|
|
98
100
|
TreeListComponent,
|
|
99
101
|
ToolbarTemplateDirective,
|
|
@@ -181,7 +183,8 @@ TreeListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
|
|
|
181
183
|
RowFilterModule,
|
|
182
184
|
FilterMenuModule,
|
|
183
185
|
ResizeSensorModule,
|
|
184
|
-
ColumnMenuModule
|
|
186
|
+
ColumnMenuModule,
|
|
187
|
+
DragAndDropModule], exports: [TreeListComponent,
|
|
185
188
|
ToolbarTemplateDirective,
|
|
186
189
|
ToolbarComponent,
|
|
187
190
|
TreeListSpacerComponent,
|
|
@@ -193,7 +196,7 @@ TreeListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
|
|
|
193
196
|
FlatBindingDirective,
|
|
194
197
|
ExpandableDirective,
|
|
195
198
|
SelectableDirective,
|
|
196
|
-
TreeListToolbarFocusableDirective, i1.ColumnComponent, i2.SpanColumnComponent, i3.CheckboxColumnComponent, i4.
|
|
199
|
+
TreeListToolbarFocusableDirective, i1.ColumnComponent, i2.SpanColumnComponent, i3.CheckboxColumnComponent, i4.RowReorderColumnComponent, i5.ColumnGroupComponent, i6.FocusableDirective, i7.CommandColumnComponent, i8.CellTemplateDirective, i9.NoRecordsTemplateDirective, i10.EditTemplateDirective, i11.EditCommandDirective, i12.CancelCommandDirective, i13.SaveCommandDirective, i14.RemoveCommandDirective, i15.AddCommandDirective, i16.FooterTemplateDirective, i17.HeaderTemplateDirective, i18.PagerComponent, i19.PagerPrevButtonsComponent, i20.PagerNextButtonsComponent, i21.PagerNumericButtonsComponent, i22.PagerInputComponent, i23.PagerInfoComponent, i24.PagerPageSizesComponent, i25.PagerTemplateDirective, i26.FilterRowComponent, i27.FilterCellComponent, i28.FilterCellTemplateDirective, i29.FilterCellOperatorsComponent, i30.StringFilterCellComponent, i31.NumericFilterCellComponent, i32.AutoCompleteFilterCellComponent, i33.BooleanFilterCellComponent, i34.DateFilterCellComponent, i29.FilterCellOperatorsComponent, i35.ContainsFilterOperatorComponent, i36.DoesNotContainFilterOperatorComponent, i37.EndsWithFilterOperatorComponent, i38.EqualFilterOperatorComponent, i39.IsEmptyFilterOperatorComponent, i40.IsNotEmptyFilterOperatorComponent, i41.IsNotNullFilterOperatorComponent, i42.IsNullFilterOperatorComponent, i43.NotEqualFilterOperatorComponent, i44.StartsWithFilterOperatorComponent, i45.GreaterFilterOperatorComponent, i46.GreaterOrEqualToFilterOperatorComponent, i47.LessFilterOperatorComponent, i48.LessOrEqualToFilterOperatorComponent, i49.AfterFilterOperatorComponent, i50.AfterEqFilterOperatorComponent, i51.BeforeEqFilterOperatorComponent, i52.BeforeFilterOperatorComponent, i53.StringFilterMenuComponent, i54.FilterMenuTemplateDirective, i55.NumericFilterMenuComponent, i56.DateFilterMenuComponent, i57.BooleanFilterMenuComponent, i29.FilterCellOperatorsComponent, i35.ContainsFilterOperatorComponent, i36.DoesNotContainFilterOperatorComponent, i37.EndsWithFilterOperatorComponent, i38.EqualFilterOperatorComponent, i39.IsEmptyFilterOperatorComponent, i40.IsNotEmptyFilterOperatorComponent, i41.IsNotNullFilterOperatorComponent, i42.IsNullFilterOperatorComponent, i43.NotEqualFilterOperatorComponent, i44.StartsWithFilterOperatorComponent, i45.GreaterFilterOperatorComponent, i46.GreaterOrEqualToFilterOperatorComponent, i47.LessFilterOperatorComponent, i48.LessOrEqualToFilterOperatorComponent, i49.AfterFilterOperatorComponent, i50.AfterEqFilterOperatorComponent, i51.BeforeEqFilterOperatorComponent, i52.BeforeFilterOperatorComponent, i58.ColumnChooserComponent, i59.ColumnMenuFilterComponent, i60.ColumnMenuItemComponent, i61.ColumnMenuItemContentTemplateDirective, i62.ColumnMenuSortComponent, i63.ColumnMenuLockComponent, i64.ColumnMenuChooserComponent, i65.ColumnMenuTemplateDirective, i66.ColumnMenuComponent] });
|
|
197
200
|
TreeListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TreeListModule, imports: [[
|
|
198
201
|
CommonModule,
|
|
199
202
|
SharedModule,
|
|
@@ -203,7 +206,8 @@ TreeListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version:
|
|
|
203
206
|
RowFilterModule,
|
|
204
207
|
FilterMenuModule,
|
|
205
208
|
ResizeSensorModule,
|
|
206
|
-
ColumnMenuModule
|
|
209
|
+
ColumnMenuModule,
|
|
210
|
+
DragAndDropModule
|
|
207
211
|
]] });
|
|
208
212
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TreeListModule, decorators: [{
|
|
209
213
|
type: NgModule,
|
|
@@ -219,7 +223,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
219
223
|
RowFilterModule,
|
|
220
224
|
FilterMenuModule,
|
|
221
225
|
ResizeSensorModule,
|
|
222
|
-
ColumnMenuModule
|
|
226
|
+
ColumnMenuModule,
|
|
227
|
+
DragAndDropModule
|
|
223
228
|
]
|
|
224
229
|
}]
|
|
225
230
|
}] });
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Observable } from "rxjs";
|
|
6
6
|
/**
|
|
7
|
-
* The expected type of result for the treelist excel export fetchData function.
|
|
7
|
+
* The expected type of result for the treelist excel export [`fetchData function`](slug:api_treelist_excelcomponent#toc-fetchdata).
|
|
8
8
|
*/
|
|
9
9
|
export interface ExcelExportData {
|
|
10
10
|
/**
|
|
@@ -39,15 +39,17 @@ export declare class ExcelComponent implements OnDestroy {
|
|
|
39
39
|
forceProxy: boolean;
|
|
40
40
|
/**
|
|
41
41
|
* The URL of the server-side proxy which streams the file to the end user.
|
|
42
|
-
*
|
|
43
|
-
* Internet Explorer 9 and Safari. The responsibility for implementing the server-side proxy is yours.
|
|
42
|
+
* Using a proxy is required if the browser is not capable of saving files locally.
|
|
44
43
|
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
* - `fileName`—The file name, as requested by the caller.
|
|
44
|
+
* Optionally, set up a proxy to reduce memory usage. This avoids copying the file contents into memory,
|
|
45
|
+
* but transmits it over the network instead. For this use case, set [forceProxy](#toc-forceproxy) to `true`
|
|
46
|
+
* to skip client-side saving even in browsers that support it.
|
|
49
47
|
*
|
|
48
|
+
* In the request body, the proxy receives a POST request with the specific parameters. [See example](slug:server_proxy#toc-implementations).
|
|
50
49
|
* The proxy returns the decoded file with the `"Content-Disposition"` header set to `attachment; filename="<fileName.xslx>"`.
|
|
50
|
+
*
|
|
51
|
+
* For details on the server-side proxy usage and implementation, see the [File Saver]({% slug overview_filesaver %}) documentation.
|
|
52
|
+
*
|
|
51
53
|
*/
|
|
52
54
|
proxyURL: string;
|
|
53
55
|
/**
|
|
@@ -56,8 +58,7 @@ export declare class ExcelComponent implements OnDestroy {
|
|
|
56
58
|
*/
|
|
57
59
|
fetchData: (component: TreeListComponent) => ExcelExportData;
|
|
58
60
|
/**
|
|
59
|
-
* Specifies if the item levels in the Excel file are collapsible.
|
|
60
|
-
* > Applicable only if the treelist has footers.
|
|
61
|
+
* Specifies if the item levels in the Excel file are collapsible. Applicable only if the treelist has footers.
|
|
61
62
|
*/
|
|
62
63
|
collapsible: boolean;
|
|
63
64
|
/**
|