@progress/kendo-angular-grid 19.0.0-develop.9 → 19.0.1-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/adaptiveness/adaptive-mode.d.ts +12 -0
- package/adaptiveness/adaptive-renderer.component.d.ts +89 -0
- package/codemods/template-transformer/index.js +94 -0
- package/codemods/utils.js +553 -0
- package/codemods/v19/grid-kendogridgroupbinding.js +51 -0
- package/column-menu/column-chooser.component.d.ts +4 -0
- package/column-menu/column-list.component.d.ts +10 -3
- package/column-menu/column-menu-item.component.d.ts +48 -3
- package/column-menu/column-menu-item.directive.d.ts +5 -2
- package/column-menu/column-menu.component.d.ts +4 -2
- package/columns/column-base.d.ts +5 -0
- package/columns/span-column.component.d.ts +2 -2
- package/common/adaptiveness.service.d.ts +50 -0
- package/common/single-popup.service.d.ts +3 -1
- package/common/toolbar-tool-base.directive.d.ts +26 -0
- package/directives.d.ts +13 -5
- package/editing/add-command-tool.directive.d.ts +7 -6
- package/editing/cancel-command-tool.directive.d.ts +38 -0
- package/editing/edit-command-tool.directive.d.ts +38 -0
- package/editing/edit.service.d.ts +1 -1
- package/editing/remove-command-tool.directive.d.ts +39 -0
- package/editing/save-command-tool.directive.d.ts +38 -0
- package/editing/toolbar-editing-tool-base.directive.d.ts +29 -0
- package/editing-directives/editing-directive-base.d.ts +4 -1
- package/editing-directives/external-editing.directive.d.ts +3 -1
- package/esm2022/adaptiveness/adaptive-mode.mjs +5 -0
- package/esm2022/adaptiveness/adaptive-renderer.component.mjs +1197 -0
- package/esm2022/column-menu/column-chooser.component.mjs +13 -11
- package/esm2022/column-menu/column-list.component.mjs +51 -8
- package/esm2022/column-menu/column-menu-autosize-all.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-autosize.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-chooser.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-container.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-filter.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-item.component.mjs +123 -12
- package/esm2022/column-menu/column-menu-item.directive.mjs +14 -5
- package/esm2022/column-menu/column-menu-lock.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-position.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-sort.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-stick.component.mjs +1 -1
- package/esm2022/column-menu/column-menu.component.mjs +68 -44
- package/esm2022/column-resizing/column-handle.directive.mjs +2 -2
- package/esm2022/columns/column-base.mjs +9 -0
- package/esm2022/columns/columns-container.mjs +1 -1
- package/esm2022/columns/span-column.component.mjs +9 -9
- package/esm2022/common/adaptiveness.service.mjs +72 -0
- package/esm2022/common/single-popup.service.mjs +9 -3
- package/esm2022/common/toolbar-tool-base.directive.mjs +81 -0
- package/esm2022/directives.mjs +21 -4
- package/esm2022/editing/add-command-tool.directive.mjs +12 -15
- package/esm2022/editing/cancel-command-tool.directive.mjs +64 -0
- package/esm2022/editing/edit-command-tool.directive.mjs +59 -0
- package/esm2022/editing/remove-command-tool.directive.mjs +60 -0
- package/esm2022/editing/remove-command.directive.mjs +1 -0
- package/esm2022/editing/save-command-tool.directive.mjs +64 -0
- package/esm2022/editing/toolbar-editing-tool-base.directive.mjs +94 -0
- package/esm2022/editing-directives/editing-directive-base.mjs +5 -2
- package/esm2022/editing-directives/external-editing.directive.mjs +28 -14
- package/esm2022/excel/excel-command-tool.directive.mjs +12 -17
- package/esm2022/filtering/filter-input.directive.mjs +14 -2
- package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +4 -2
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +4 -0
- package/esm2022/filtering/menu/date-filter-menu.component.mjs +6 -0
- package/esm2022/filtering/menu/filter-menu-container.component.mjs +24 -10
- package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +26 -4
- package/esm2022/filtering/menu/filter-menu.component.mjs +44 -29
- package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +2 -0
- package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +6 -0
- package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +2 -0
- package/esm2022/filtering/menu/string-filter-menu.component.mjs +10 -1
- package/esm2022/grid.component.mjs +376 -82
- package/esm2022/grid.module.mjs +115 -101
- package/esm2022/index.mjs +11 -1
- package/esm2022/localization/messages.mjs +128 -2
- package/esm2022/navigation/toolbar-tool-name.mjs +17 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/pdf/pdf-command-tool.directive.mjs +12 -15
- package/esm2022/rendering/cell.component.mjs +3 -3
- package/esm2022/rendering/header/header.component.mjs +1 -1
- package/esm2022/rendering/list.component.mjs +1 -1
- package/esm2022/rendering/table-body.component.mjs +1 -1
- package/esm2022/rendering/toolbar/tools/column-chooser-tool.directive.mjs +210 -0
- package/esm2022/rendering/toolbar/tools/filter-command-tool.directive.mjs +69 -34
- package/esm2022/rendering/toolbar/tools/filter-tool-wrapper.component.mjs +29 -8
- package/esm2022/rendering/toolbar/tools/filter-toolbar-tool.component.mjs +78 -8
- package/esm2022/rendering/toolbar/tools/group-command-tool.directive.mjs +206 -0
- package/esm2022/rendering/toolbar/tools/group-toolbar-tool.component.mjs +425 -0
- package/esm2022/rendering/toolbar/tools/sort-command-tool.directive.mjs +54 -20
- package/esm2022/rendering/toolbar/tools/sort-toolbar-tool.component.mjs +24 -8
- package/esm2022/selection/selection.service.mjs +11 -0
- package/esm2022/state-management/grid-state.models.mjs +26 -0
- package/esm2022/state-management/redo-command-tool.mjs +66 -0
- package/esm2022/state-management/undo-command-tool.mjs +66 -0
- package/esm2022/state-management/undo-redo.directive.mjs +178 -0
- package/esm2022/state-management/undo-redo.service.mjs +22 -0
- package/esm2022/state-management/undo-redo.stack.mjs +232 -0
- package/esm2022/utils.mjs +13 -13
- package/excel/excel-command-tool.directive.d.ts +5 -5
- package/fesm2022/progress-kendo-angular-grid.mjs +7384 -3773
- package/filtering/filter-input.directive.d.ts +1 -0
- package/filtering/menu/date-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/filter-menu-container.component.d.ts +15 -4
- package/filtering/menu/filter-menu-input-wrapper.component.d.ts +8 -3
- package/filtering/menu/filter-menu.component.d.ts +6 -3
- package/filtering/menu/numeric-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/string-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/string-filter-menu.component.d.ts +1 -0
- package/grid.component.d.ts +86 -33
- package/grid.module.d.ts +108 -100
- package/index.d.ts +10 -1
- package/localization/messages.d.ts +86 -2
- package/navigation/toolbar-tool-name.d.ts +17 -0
- package/package.json +35 -20
- package/pdf/pdf-command-tool.directive.d.ts +6 -5
- package/rendering/cell.component.d.ts +1 -1
- package/{column-menu → rendering/toolbar/tools}/column-chooser-tool.directive.d.ts +18 -6
- package/rendering/toolbar/tools/filter-command-tool.directive.d.ts +10 -1
- package/rendering/toolbar/tools/filter-tool-wrapper.component.d.ts +6 -5
- package/rendering/toolbar/tools/filter-toolbar-tool.component.d.ts +11 -2
- package/rendering/toolbar/tools/group-command-tool.directive.d.ts +51 -0
- package/rendering/toolbar/tools/group-toolbar-tool.component.d.ts +61 -0
- package/rendering/toolbar/tools/sort-command-tool.directive.d.ts +10 -1
- package/rendering/toolbar/tools/sort-toolbar-tool.component.d.ts +5 -1
- package/schematics/ngAdd/index.js +4 -4
- package/selection/selection.service.d.ts +1 -0
- package/state-management/grid-state.models.d.ts +58 -0
- package/state-management/redo-command-tool.d.ts +38 -0
- package/state-management/undo-command-tool.d.ts +38 -0
- package/state-management/undo-redo.directive.d.ts +51 -0
- package/state-management/undo-redo.service.d.ts +19 -0
- package/state-management/undo-redo.stack.d.ts +104 -0
- package/utils.d.ts +11 -5
- package/esm2022/column-menu/column-chooser-tool.directive.mjs +0 -172
package/grid.module.d.ts
CHANGED
|
@@ -38,105 +38,113 @@ import * as i32 from "./editing/save-command.directive";
|
|
|
38
38
|
import * as i33 from "./editing/remove-command.directive";
|
|
39
39
|
import * as i34 from "./editing/add-command.directive";
|
|
40
40
|
import * as i35 from "./editing/add-command-tool.directive";
|
|
41
|
-
import * as i36 from "./
|
|
42
|
-
import * as i37 from "./
|
|
43
|
-
import * as i38 from "./
|
|
44
|
-
import * as i39 from "./
|
|
45
|
-
import * as i40 from "./rendering/
|
|
46
|
-
import * as i41 from "./rendering/
|
|
47
|
-
import * as i42 from "./
|
|
48
|
-
import * as i43 from "./
|
|
49
|
-
import * as i44 from "./
|
|
50
|
-
import * as i45 from "./rendering/
|
|
51
|
-
import * as i46 from "
|
|
52
|
-
import * as i47 from "
|
|
53
|
-
import * as i48 from "./
|
|
54
|
-
import * as i49 from "./
|
|
55
|
-
import * as i50 from "./
|
|
56
|
-
import * as i51 from "
|
|
57
|
-
import * as i52 from "
|
|
58
|
-
import * as i53 from "./filtering/
|
|
59
|
-
import * as i54 from "./filtering/cell/
|
|
60
|
-
import * as i55 from "./filtering/cell/filter-cell-
|
|
61
|
-
import * as i56 from "./filtering/cell/filter-cell
|
|
62
|
-
import * as i57 from "./filtering/cell/
|
|
63
|
-
import * as i58 from "./filtering/cell/filter-cell
|
|
64
|
-
import * as i59 from "./filtering/
|
|
65
|
-
import * as i60 from "./filtering/
|
|
66
|
-
import * as i61 from "./filtering/
|
|
67
|
-
import * as i62 from "./filtering/
|
|
68
|
-
import * as i63 from "./filtering/
|
|
69
|
-
import * as i64 from "./filtering/operators/
|
|
70
|
-
import * as i65 from "./filtering/operators/
|
|
71
|
-
import * as i66 from "./filtering/operators/
|
|
72
|
-
import * as i67 from "./filtering/operators/
|
|
73
|
-
import * as i68 from "./filtering/operators/
|
|
74
|
-
import * as i69 from "./filtering/operators/
|
|
75
|
-
import * as i70 from "./filtering/operators/
|
|
76
|
-
import * as i71 from "./filtering/operators/
|
|
77
|
-
import * as i72 from "./filtering/operators/
|
|
78
|
-
import * as i73 from "./filtering/operators/
|
|
79
|
-
import * as i74 from "./filtering/operators/
|
|
80
|
-
import * as i75 from "./filtering/operators/
|
|
81
|
-
import * as i76 from "./filtering/operators/
|
|
82
|
-
import * as i77 from "./filtering/filter-
|
|
83
|
-
import * as i78 from "./filtering/
|
|
84
|
-
import * as i79 from "./filtering/
|
|
85
|
-
import * as i80 from "./filtering/
|
|
86
|
-
import * as i81 from "./filtering/
|
|
87
|
-
import * as i82 from "./filtering/
|
|
88
|
-
import * as i83 from "./filtering/menu/filter-menu
|
|
89
|
-
import * as i84 from "./filtering/menu/
|
|
90
|
-
import * as i85 from "./filtering/menu/
|
|
91
|
-
import * as i86 from "./filtering/menu/
|
|
92
|
-
import * as i87 from "./filtering/menu/
|
|
93
|
-
import * as i88 from "./filtering/menu/filter-menu-
|
|
94
|
-
import * as i89 from "./filtering/menu/
|
|
95
|
-
import * as i90 from "./filtering/menu/filter-menu-
|
|
96
|
-
import * as i91 from "./filtering/menu/filter-
|
|
97
|
-
import * as i92 from "./
|
|
98
|
-
import * as i93 from "./
|
|
99
|
-
import * as i94 from "./
|
|
100
|
-
import * as i95 from "./
|
|
101
|
-
import * as i96 from "./
|
|
102
|
-
import * as i97 from "./column-menu/column-
|
|
103
|
-
import * as i98 from "./column-menu/column-
|
|
104
|
-
import * as i99 from "./column-menu/column-
|
|
105
|
-
import * as i100 from "./
|
|
106
|
-
import * as i101 from "./column-menu/column-menu.component";
|
|
107
|
-
import * as i102 from "./column-menu/column-menu-
|
|
108
|
-
import * as i103 from "./column-menu/column-menu-
|
|
109
|
-
import * as i104 from "./column-menu/column-menu-
|
|
110
|
-
import * as i105 from "./column-menu/column-menu-
|
|
111
|
-
import * as i106 from "./column-menu/column-menu
|
|
112
|
-
import * as i107 from "./column-menu/column-menu-
|
|
113
|
-
import * as i108 from "./column-menu/column-menu-
|
|
114
|
-
import * as i109 from "./column-menu/column-menu-
|
|
115
|
-
import * as i110 from "./
|
|
116
|
-
import * as i111 from "./
|
|
117
|
-
import * as i112 from "./
|
|
118
|
-
import * as i113 from "./
|
|
119
|
-
import * as i114 from "./
|
|
120
|
-
import * as i115 from "./
|
|
121
|
-
import * as i116 from "./rendering/
|
|
122
|
-
import * as i117 from "./
|
|
123
|
-
import * as i118 from "./
|
|
124
|
-
import * as i119 from "./
|
|
125
|
-
import * as i120 from "./
|
|
126
|
-
import * as i121 from "./
|
|
127
|
-
import * as i122 from "./
|
|
128
|
-
import * as i123 from "./
|
|
129
|
-
import * as i124 from "./
|
|
130
|
-
import * as i125 from "./
|
|
131
|
-
import * as i126 from "./
|
|
132
|
-
import * as i127 from "./rendering/
|
|
133
|
-
import * as i128 from "./
|
|
134
|
-
import * as i129 from "./
|
|
135
|
-
import * as i130 from "./
|
|
136
|
-
import * as i131 from "./
|
|
137
|
-
import * as i132 from "./
|
|
138
|
-
import * as i133 from "./
|
|
139
|
-
import * as i134 from "./
|
|
41
|
+
import * as i36 from "./editing/edit-command-tool.directive";
|
|
42
|
+
import * as i37 from "./editing/save-command-tool.directive";
|
|
43
|
+
import * as i38 from "./editing/remove-command-tool.directive";
|
|
44
|
+
import * as i39 from "./editing/cancel-command-tool.directive";
|
|
45
|
+
import * as i40 from "./rendering/cell-loading.template.directive";
|
|
46
|
+
import * as i41 from "./rendering/loading-template.directive";
|
|
47
|
+
import * as i42 from "./columns/reorder-column.component";
|
|
48
|
+
import * as i43 from "./rendering/toolbar/tools/sort-command-tool.directive";
|
|
49
|
+
import * as i44 from "./rendering/toolbar/tools/filter-command-tool.directive";
|
|
50
|
+
import * as i45 from "./rendering/toolbar/tools/group-command-tool.directive";
|
|
51
|
+
import * as i46 from "./rendering/header/header.component";
|
|
52
|
+
import * as i47 from "./rendering/header/header-template.directive";
|
|
53
|
+
import * as i48 from "./column-resizing/column-handle.directive";
|
|
54
|
+
import * as i49 from "./selection/selectall-checkbox.directive";
|
|
55
|
+
import * as i50 from "./rendering/footer/footer.component";
|
|
56
|
+
import * as i51 from "@progress/kendo-angular-pager";
|
|
57
|
+
import * as i52 from "@progress/kendo-angular-toolbar";
|
|
58
|
+
import * as i53 from "./filtering/filter-row.component";
|
|
59
|
+
import * as i54 from "./filtering/cell/filter-cell.component";
|
|
60
|
+
import * as i55 from "./filtering/cell/filter-cell-template.directive";
|
|
61
|
+
import * as i56 from "./filtering/cell/string-filter-cell.component";
|
|
62
|
+
import * as i57 from "./filtering/cell/numeric-filter-cell.component";
|
|
63
|
+
import * as i58 from "./filtering/cell/autocomplete-filter-cell.component";
|
|
64
|
+
import * as i59 from "./filtering/cell/boolean-filter-cell.component";
|
|
65
|
+
import * as i60 from "./filtering/cell/filter-cell-host.directive";
|
|
66
|
+
import * as i61 from "./filtering/cell/filter-cell-wrapper.component";
|
|
67
|
+
import * as i62 from "./filtering/cell/date-filter-cell.component";
|
|
68
|
+
import * as i63 from "./filtering/cell/filter-cell-operators.component";
|
|
69
|
+
import * as i64 from "./filtering/operators/contains-filter-operator.component";
|
|
70
|
+
import * as i65 from "./filtering/operators/not-contains-filter-operator.component";
|
|
71
|
+
import * as i66 from "./filtering/operators/ends-with-filter-operator.component";
|
|
72
|
+
import * as i67 from "./filtering/operators/eq-filter-operator.component";
|
|
73
|
+
import * as i68 from "./filtering/operators/is-empty-filter-operator.component";
|
|
74
|
+
import * as i69 from "./filtering/operators/is-not-empty-filter-operator.component";
|
|
75
|
+
import * as i70 from "./filtering/operators/is-not-null-filter-operator.component";
|
|
76
|
+
import * as i71 from "./filtering/operators/isnull-filter-operator.component";
|
|
77
|
+
import * as i72 from "./filtering/operators/neq-filter-operator.component";
|
|
78
|
+
import * as i73 from "./filtering/operators/starts-with-filter-operator.component";
|
|
79
|
+
import * as i74 from "./filtering/operators/gt-filter-operator.component";
|
|
80
|
+
import * as i75 from "./filtering/operators/gte-filter-operator.component";
|
|
81
|
+
import * as i76 from "./filtering/operators/lt-filter-operator.component";
|
|
82
|
+
import * as i77 from "./filtering/operators/lte-filter-operator.component";
|
|
83
|
+
import * as i78 from "./filtering/operators/after-filter-operator.component";
|
|
84
|
+
import * as i79 from "./filtering/operators/after-eq-filter-operator.component";
|
|
85
|
+
import * as i80 from "./filtering/operators/before-eq-filter-operator.component";
|
|
86
|
+
import * as i81 from "./filtering/operators/before-filter-operator.component";
|
|
87
|
+
import * as i82 from "./filtering/filter-input.directive";
|
|
88
|
+
import * as i83 from "./filtering/menu/filter-menu.component";
|
|
89
|
+
import * as i84 from "./filtering/menu/filter-menu-container.component";
|
|
90
|
+
import * as i85 from "./filtering/menu/filter-menu-input-wrapper.component";
|
|
91
|
+
import * as i86 from "./filtering/menu/string-filter-menu-input.component";
|
|
92
|
+
import * as i87 from "./filtering/menu/string-filter-menu.component";
|
|
93
|
+
import * as i88 from "./filtering/menu/filter-menu-template.directive";
|
|
94
|
+
import * as i89 from "./filtering/menu/numeric-filter-menu.component";
|
|
95
|
+
import * as i90 from "./filtering/menu/numeric-filter-menu-input.component";
|
|
96
|
+
import * as i91 from "./filtering/menu/date-filter-menu-input.component";
|
|
97
|
+
import * as i92 from "./filtering/menu/date-filter-menu.component";
|
|
98
|
+
import * as i93 from "./filtering/menu/filter-menu-host.directive";
|
|
99
|
+
import * as i94 from "./filtering/menu/boolean-filter-menu.component";
|
|
100
|
+
import * as i95 from "./filtering/menu/filter-menu-dropdownlist.directive";
|
|
101
|
+
import * as i96 from "./filtering/menu/filter-radio-button.directive";
|
|
102
|
+
import * as i97 from "./column-menu/column-chooser-item-checked.directive";
|
|
103
|
+
import * as i98 from "./column-menu/column-list.component";
|
|
104
|
+
import * as i99 from "./column-menu/column-chooser.component";
|
|
105
|
+
import * as i100 from "./rendering/toolbar/tools/column-chooser-tool.directive";
|
|
106
|
+
import * as i101 from "./column-menu/column-menu-chooser.component";
|
|
107
|
+
import * as i102 from "./column-menu/column-menu-filter.component";
|
|
108
|
+
import * as i103 from "./column-menu/column-menu-item.component";
|
|
109
|
+
import * as i104 from "./column-menu/column-menu-item-content-template.directive";
|
|
110
|
+
import * as i105 from "./column-menu/column-menu-sort.component";
|
|
111
|
+
import * as i106 from "./column-menu/column-menu.component";
|
|
112
|
+
import * as i107 from "./column-menu/column-menu-lock.component";
|
|
113
|
+
import * as i108 from "./column-menu/column-menu-template.directive";
|
|
114
|
+
import * as i109 from "./column-menu/column-menu-container.component";
|
|
115
|
+
import * as i110 from "./column-menu/column-menu-item.directive";
|
|
116
|
+
import * as i111 from "./column-menu/column-menu-stick.component";
|
|
117
|
+
import * as i112 from "./column-menu/column-menu-position.component";
|
|
118
|
+
import * as i113 from "./column-menu/column-menu-autosize.component";
|
|
119
|
+
import * as i114 from "./column-menu/column-menu-autosize-all.component";
|
|
120
|
+
import * as i115 from "./grid.component";
|
|
121
|
+
import * as i116 from "./rendering/list.component";
|
|
122
|
+
import * as i117 from "./rendering/toolbar/toolbar.component";
|
|
123
|
+
import * as i118 from "./localization/localized-messages.directive";
|
|
124
|
+
import * as i119 from "./localization/custom-messages.component";
|
|
125
|
+
import * as i120 from "./databinding.directive";
|
|
126
|
+
import * as i121 from "./rendering/toolbar/toolbar-template.directive";
|
|
127
|
+
import * as i122 from "./selection/selection.directive";
|
|
128
|
+
import * as i123 from "./editing-directives/template-editing.directive";
|
|
129
|
+
import * as i124 from "./editing-directives/reactive-editing.directive";
|
|
130
|
+
import * as i125 from "./editing-directives/in-cell-editing.directive";
|
|
131
|
+
import * as i126 from "./editing-directives/external-editing.directive";
|
|
132
|
+
import * as i127 from "./rendering/details-expand.directive";
|
|
133
|
+
import * as i128 from "./rendering/groups-expand.directive";
|
|
134
|
+
import * as i129 from "./grouping/group-scroll-binding.directive";
|
|
135
|
+
import * as i130 from "./selection/marquee.directive";
|
|
136
|
+
import * as i131 from "./rendering/common/spacer.component";
|
|
137
|
+
import * as i132 from "./rendering/toolbar/toolbar-focusable.directive";
|
|
138
|
+
import * as i133 from "./aggregates/status-bar.component";
|
|
139
|
+
import * as i134 from "./aggregates/status-bar-template.directive";
|
|
140
|
+
import * as i135 from "./common/clipboard.directive";
|
|
141
|
+
import * as i136 from "./editing/form/form.component";
|
|
142
|
+
import * as i137 from "./editing/form/dialog-form.component";
|
|
143
|
+
import * as i138 from "./editing/form/form-formfield.component";
|
|
144
|
+
import * as i139 from "./state-management/undo-redo.directive";
|
|
145
|
+
import * as i140 from "./column-resizing/table.directive";
|
|
146
|
+
import * as i141 from "./state-management/undo-command-tool";
|
|
147
|
+
import * as i142 from "./state-management/redo-command-tool";
|
|
140
148
|
/**
|
|
141
149
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
142
150
|
* definition for the Grid component.
|
|
@@ -160,6 +168,6 @@ import * as i134 from "./column-resizing/table.directive";
|
|
|
160
168
|
*/
|
|
161
169
|
export declare class GridModule {
|
|
162
170
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
|
|
163
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.CellLoadingTemplateDirective, typeof i37.LoadingTemplateDirective, typeof i38.RowReorderColumnComponent, typeof i39.SortCommandToolbarDirective, typeof i40.FilterCommandToolbarDirective, typeof i41.HeaderComponent, typeof i42.HeaderTemplateDirective, typeof i43.ColumnHandleDirective, typeof i44.SelectAllCheckboxDirective, typeof i45.FooterComponent, typeof i46.CustomMessagesComponent, typeof i46.PagerFocusableDirective, typeof i46.PagerInfoComponent, typeof i46.PagerInputComponent, typeof i46.PagerNextButtonsComponent, typeof i46.PagerNumericButtonsComponent, typeof i46.PagerPageSizesComponent, typeof i46.PagerPrevButtonsComponent, typeof i46.PagerTemplateDirective, typeof i46.PagerComponent, typeof i46.PagerSpacerComponent, typeof i47.ToolBarComponent, typeof i47.ToolbarCustomMessagesComponent, typeof i47.ToolBarButtonComponent, typeof i47.ToolBarButtonGroupComponent, typeof i47.ToolBarDropDownButtonComponent, typeof i47.ToolBarSeparatorComponent, typeof i47.ToolBarSpacerComponent, typeof i47.ToolBarSplitButtonComponent, typeof i47.ToolBarToolComponent, typeof i48.FilterRowComponent, typeof i49.FilterCellComponent, typeof i50.FilterCellTemplateDirective, typeof i51.StringFilterCellComponent, typeof i52.NumericFilterCellComponent, typeof i53.AutoCompleteFilterCellComponent, typeof i54.BooleanFilterCellComponent, typeof i55.FilterCellHostDirective, typeof i56.FilterCellWrapperComponent, typeof i57.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i58.FilterCellOperatorsComponent, typeof i59.ContainsFilterOperatorComponent, typeof i60.DoesNotContainFilterOperatorComponent, typeof i61.EndsWithFilterOperatorComponent, typeof i62.EqualFilterOperatorComponent, typeof i63.IsEmptyFilterOperatorComponent, typeof i64.IsNotEmptyFilterOperatorComponent, typeof i65.IsNotNullFilterOperatorComponent, typeof i66.IsNullFilterOperatorComponent, typeof i67.NotEqualFilterOperatorComponent, typeof i68.StartsWithFilterOperatorComponent, typeof i69.GreaterFilterOperatorComponent, typeof i70.GreaterOrEqualToFilterOperatorComponent, typeof i71.LessFilterOperatorComponent, typeof i72.LessOrEqualToFilterOperatorComponent, typeof i73.AfterFilterOperatorComponent, typeof i74.AfterEqFilterOperatorComponent, typeof i75.BeforeEqFilterOperatorComponent, typeof i76.BeforeFilterOperatorComponent, typeof i77.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i58.FilterCellOperatorsComponent, typeof i59.ContainsFilterOperatorComponent, typeof i60.DoesNotContainFilterOperatorComponent, typeof i61.EndsWithFilterOperatorComponent, typeof i62.EqualFilterOperatorComponent, typeof i63.IsEmptyFilterOperatorComponent, typeof i64.IsNotEmptyFilterOperatorComponent, typeof i65.IsNotNullFilterOperatorComponent, typeof i66.IsNullFilterOperatorComponent, typeof i67.NotEqualFilterOperatorComponent, typeof i68.StartsWithFilterOperatorComponent, typeof i69.GreaterFilterOperatorComponent, typeof i70.GreaterOrEqualToFilterOperatorComponent, typeof i71.LessFilterOperatorComponent, typeof i72.LessOrEqualToFilterOperatorComponent, typeof i73.AfterFilterOperatorComponent, typeof i74.AfterEqFilterOperatorComponent, typeof i75.BeforeEqFilterOperatorComponent, typeof i76.BeforeFilterOperatorComponent, typeof i77.FilterInputDirective, typeof i78.FilterMenuComponent, typeof i79.FilterMenuContainerComponent, typeof i80.FilterMenuInputWrapperComponent, typeof i81.StringFilterMenuInputComponent, typeof i82.StringFilterMenuComponent, typeof i83.FilterMenuTemplateDirective, typeof i84.NumericFilterMenuComponent, typeof i85.NumericFilterMenuInputComponent, typeof i86.DateFilterMenuInputComponent, typeof i87.DateFilterMenuComponent, typeof i88.FilterMenuHostDirective, typeof i89.BooleanFilterMenuComponent, typeof i90.FilterMenuDropDownListDirective, typeof i91.BooleanFilterRadioButtonDirective, typeof i92.ColumnMenuChooserItemCheckedDirective, typeof i93.ColumnListComponent, typeof i94.ColumnChooserComponent, typeof i95.ColumnChooserToolbarDirective, typeof i96.ColumnMenuChooserComponent, typeof i97.ColumnMenuFilterComponent, typeof i98.ColumnMenuItemComponent, typeof i99.ColumnMenuItemContentTemplateDirective, typeof i100.ColumnMenuSortComponent, typeof i101.ColumnMenuComponent, typeof i102.ColumnMenuLockComponent, typeof i103.ColumnMenuTemplateDirective, typeof i104.ColumnMenuContainerComponent, typeof i105.ColumnMenuItemDirective, typeof i106.ColumnMenuStickComponent, typeof i107.ColumnMenuPositionComponent, typeof i108.ColumnMenuAutoSizeColumnComponent, typeof i109.ColumnMenuAutoSizeAllColumnsComponent, typeof i110.GridComponent, typeof i111.ListComponent, typeof i112.ToolbarComponent, typeof i113.LocalizedMessagesDirective, typeof i114.CustomMessagesComponent, typeof i115.DataBindingDirective, typeof i116.ToolbarTemplateDirective, typeof i117.SelectionDirective, typeof i118.TemplateEditingDirective, typeof i119.ReactiveEditingDirective, typeof i120.InCellEditingDirective, typeof i121.ExternalEditingDirective, typeof i122.ExpandDetailsDirective, typeof i123.ExpandGroupDirective, typeof i124.GroupBindingDirective, typeof i125.GridMarqueeDirective, typeof i126.GridSpacerComponent, typeof i127.GridToolbarFocusableDirective, typeof i128.StatusBarComponent, typeof i129.StatusBarTemplateDirective, typeof i130.GridClipboardDirective, typeof i131.FormComponent, typeof i132.DialogFormComponent, typeof i133.FormFormFieldComponent, typeof i47.ToolBarComponent, typeof i47.ToolbarCustomMessagesComponent, typeof i47.ToolBarButtonComponent, typeof i47.ToolBarButtonGroupComponent, typeof i47.ToolBarDropDownButtonComponent, typeof i47.ToolBarSeparatorComponent, typeof i47.ToolBarSpacerComponent, typeof i47.ToolBarSplitButtonComponent, typeof i47.ToolBarToolComponent, typeof i134.TableDirective], [typeof i110.GridComponent, typeof i116.ToolbarTemplateDirective, typeof i112.ToolbarComponent, typeof i126.GridSpacerComponent, typeof i129.StatusBarTemplateDirective, typeof i115.DataBindingDirective, typeof i117.SelectionDirective, typeof i114.CustomMessagesComponent, typeof i124.GroupBindingDirective, typeof i118.TemplateEditingDirective, typeof i119.ReactiveEditingDirective, typeof i120.InCellEditingDirective, typeof i121.ExternalEditingDirective, typeof i122.ExpandDetailsDirective, typeof i123.ExpandGroupDirective, typeof i127.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.CellLoadingTemplateDirective, typeof i37.LoadingTemplateDirective, typeof i38.RowReorderColumnComponent, typeof i39.SortCommandToolbarDirective, typeof i40.FilterCommandToolbarDirective, typeof i41.HeaderComponent, typeof i42.HeaderTemplateDirective, typeof i43.ColumnHandleDirective, typeof i44.SelectAllCheckboxDirective, typeof i48.FilterRowComponent, typeof i49.FilterCellComponent, typeof i50.FilterCellTemplateDirective, typeof i51.StringFilterCellComponent, typeof i52.NumericFilterCellComponent, typeof i53.AutoCompleteFilterCellComponent, typeof i54.BooleanFilterCellComponent, typeof i55.FilterCellHostDirective, typeof i56.FilterCellWrapperComponent, typeof i57.DateFilterCellComponent, typeof i58.FilterCellOperatorsComponent, typeof i59.ContainsFilterOperatorComponent, typeof i60.DoesNotContainFilterOperatorComponent, typeof i61.EndsWithFilterOperatorComponent, typeof i62.EqualFilterOperatorComponent, typeof i63.IsEmptyFilterOperatorComponent, typeof i64.IsNotEmptyFilterOperatorComponent, typeof i65.IsNotNullFilterOperatorComponent, typeof i66.IsNullFilterOperatorComponent, typeof i67.NotEqualFilterOperatorComponent, typeof i68.StartsWithFilterOperatorComponent, typeof i69.GreaterFilterOperatorComponent, typeof i70.GreaterOrEqualToFilterOperatorComponent, typeof i71.LessFilterOperatorComponent, typeof i72.LessOrEqualToFilterOperatorComponent, typeof i73.AfterFilterOperatorComponent, typeof i74.AfterEqFilterOperatorComponent, typeof i75.BeforeEqFilterOperatorComponent, typeof i76.BeforeFilterOperatorComponent, typeof i78.FilterMenuComponent, typeof i79.FilterMenuContainerComponent, typeof i80.FilterMenuInputWrapperComponent, typeof i81.StringFilterMenuInputComponent, typeof i82.StringFilterMenuComponent, typeof i83.FilterMenuTemplateDirective, typeof i84.NumericFilterMenuComponent, typeof i85.NumericFilterMenuInputComponent, typeof i86.DateFilterMenuInputComponent, typeof i87.DateFilterMenuComponent, typeof i88.FilterMenuHostDirective, typeof i89.BooleanFilterMenuComponent, typeof i90.FilterMenuDropDownListDirective, typeof i91.BooleanFilterRadioButtonDirective, typeof i94.ColumnChooserComponent, typeof i95.ColumnChooserToolbarDirective, typeof i97.ColumnMenuFilterComponent, typeof i98.ColumnMenuItemComponent, typeof i99.ColumnMenuItemContentTemplateDirective, typeof i100.ColumnMenuSortComponent, typeof i102.ColumnMenuLockComponent, typeof i106.ColumnMenuStickComponent, typeof i107.ColumnMenuPositionComponent, typeof i96.ColumnMenuChooserComponent, typeof i103.ColumnMenuTemplateDirective, typeof i104.ColumnMenuContainerComponent, typeof i105.ColumnMenuItemDirective, typeof i101.ColumnMenuComponent, typeof i108.ColumnMenuAutoSizeColumnComponent, typeof i109.ColumnMenuAutoSizeAllColumnsComponent, typeof i130.GridClipboardDirective, typeof i47.ToolBarComponent, typeof i47.ToolbarCustomMessagesComponent, typeof i47.ToolBarButtonComponent, typeof i47.ToolBarButtonGroupComponent, typeof i47.ToolBarDropDownButtonComponent, typeof i47.ToolBarSeparatorComponent, typeof i47.ToolBarSpacerComponent, typeof i47.ToolBarSplitButtonComponent, typeof i47.ToolBarToolComponent, typeof i46.CustomMessagesComponent, typeof i46.PagerFocusableDirective, typeof i46.PagerInfoComponent, typeof i46.PagerInputComponent, typeof i46.PagerNextButtonsComponent, typeof i46.PagerNumericButtonsComponent, typeof i46.PagerPageSizesComponent, typeof i46.PagerPrevButtonsComponent, typeof i46.PagerTemplateDirective, typeof i46.PagerComponent, typeof i46.PagerSpacerComponent]>;
|
|
171
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.GroupCommandToolbarDirective, typeof i46.HeaderComponent, typeof i47.HeaderTemplateDirective, typeof i48.ColumnHandleDirective, typeof i49.SelectAllCheckboxDirective, typeof i50.FooterComponent, typeof i51.CustomMessagesComponent, typeof i51.PagerFocusableDirective, typeof i51.PagerInfoComponent, typeof i51.PagerInputComponent, typeof i51.PagerNextButtonsComponent, typeof i51.PagerNumericButtonsComponent, typeof i51.PagerPageSizesComponent, typeof i51.PagerPrevButtonsComponent, typeof i51.PagerTemplateDirective, typeof i51.PagerComponent, typeof i51.PagerSpacerComponent, typeof i52.ToolBarComponent, typeof i52.ToolbarCustomMessagesComponent, typeof i52.ToolBarButtonComponent, typeof i52.ToolBarButtonGroupComponent, typeof i52.ToolBarDropDownButtonComponent, typeof i52.ToolBarSeparatorComponent, typeof i52.ToolBarSpacerComponent, typeof i52.ToolBarSplitButtonComponent, typeof i52.ToolBarToolComponent, typeof i53.FilterRowComponent, typeof i54.FilterCellComponent, typeof i55.FilterCellTemplateDirective, typeof i56.StringFilterCellComponent, typeof i57.NumericFilterCellComponent, typeof i58.AutoCompleteFilterCellComponent, typeof i59.BooleanFilterCellComponent, typeof i60.FilterCellHostDirective, typeof i61.FilterCellWrapperComponent, typeof i62.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i63.FilterCellOperatorsComponent, typeof i64.ContainsFilterOperatorComponent, typeof i65.DoesNotContainFilterOperatorComponent, typeof i66.EndsWithFilterOperatorComponent, typeof i67.EqualFilterOperatorComponent, typeof i68.IsEmptyFilterOperatorComponent, typeof i69.IsNotEmptyFilterOperatorComponent, typeof i70.IsNotNullFilterOperatorComponent, typeof i71.IsNullFilterOperatorComponent, typeof i72.NotEqualFilterOperatorComponent, typeof i73.StartsWithFilterOperatorComponent, typeof i74.GreaterFilterOperatorComponent, typeof i75.GreaterOrEqualToFilterOperatorComponent, typeof i76.LessFilterOperatorComponent, typeof i77.LessOrEqualToFilterOperatorComponent, typeof i78.AfterFilterOperatorComponent, typeof i79.AfterEqFilterOperatorComponent, typeof i80.BeforeEqFilterOperatorComponent, typeof i81.BeforeFilterOperatorComponent, typeof i82.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i63.FilterCellOperatorsComponent, typeof i64.ContainsFilterOperatorComponent, typeof i65.DoesNotContainFilterOperatorComponent, typeof i66.EndsWithFilterOperatorComponent, typeof i67.EqualFilterOperatorComponent, typeof i68.IsEmptyFilterOperatorComponent, typeof i69.IsNotEmptyFilterOperatorComponent, typeof i70.IsNotNullFilterOperatorComponent, typeof i71.IsNullFilterOperatorComponent, typeof i72.NotEqualFilterOperatorComponent, typeof i73.StartsWithFilterOperatorComponent, typeof i74.GreaterFilterOperatorComponent, typeof i75.GreaterOrEqualToFilterOperatorComponent, typeof i76.LessFilterOperatorComponent, typeof i77.LessOrEqualToFilterOperatorComponent, typeof i78.AfterFilterOperatorComponent, typeof i79.AfterEqFilterOperatorComponent, typeof i80.BeforeEqFilterOperatorComponent, typeof i81.BeforeFilterOperatorComponent, typeof i82.FilterInputDirective, typeof i83.FilterMenuComponent, typeof i84.FilterMenuContainerComponent, typeof i85.FilterMenuInputWrapperComponent, typeof i86.StringFilterMenuInputComponent, typeof i87.StringFilterMenuComponent, typeof i88.FilterMenuTemplateDirective, typeof i89.NumericFilterMenuComponent, typeof i90.NumericFilterMenuInputComponent, typeof i91.DateFilterMenuInputComponent, typeof i92.DateFilterMenuComponent, typeof i93.FilterMenuHostDirective, typeof i94.BooleanFilterMenuComponent, typeof i95.FilterMenuDropDownListDirective, typeof i96.BooleanFilterRadioButtonDirective, typeof i97.ColumnMenuChooserItemCheckedDirective, typeof i98.ColumnListComponent, typeof i99.ColumnChooserComponent, typeof i100.ColumnChooserToolbarDirective, typeof i101.ColumnMenuChooserComponent, typeof i102.ColumnMenuFilterComponent, typeof i103.ColumnMenuItemComponent, typeof i104.ColumnMenuItemContentTemplateDirective, typeof i105.ColumnMenuSortComponent, typeof i106.ColumnMenuComponent, typeof i107.ColumnMenuLockComponent, typeof i108.ColumnMenuTemplateDirective, typeof i109.ColumnMenuContainerComponent, typeof i110.ColumnMenuItemDirective, typeof i111.ColumnMenuStickComponent, typeof i112.ColumnMenuPositionComponent, typeof i113.ColumnMenuAutoSizeColumnComponent, typeof i114.ColumnMenuAutoSizeAllColumnsComponent, typeof i115.GridComponent, typeof i116.ListComponent, typeof i117.ToolbarComponent, typeof i118.LocalizedMessagesDirective, typeof i119.CustomMessagesComponent, typeof i120.DataBindingDirective, typeof i121.ToolbarTemplateDirective, typeof i122.SelectionDirective, typeof i123.TemplateEditingDirective, typeof i124.ReactiveEditingDirective, typeof i125.InCellEditingDirective, typeof i126.ExternalEditingDirective, typeof i127.ExpandDetailsDirective, typeof i128.ExpandGroupDirective, typeof i129.GroupBindingDirective, typeof i130.GridMarqueeDirective, typeof i131.GridSpacerComponent, typeof i132.GridToolbarFocusableDirective, typeof i133.StatusBarComponent, typeof i134.StatusBarTemplateDirective, typeof i135.GridClipboardDirective, typeof i136.FormComponent, typeof i137.DialogFormComponent, typeof i138.FormFormFieldComponent, typeof i139.UndoRedoDirective, typeof i52.ToolBarComponent, typeof i52.ToolbarCustomMessagesComponent, typeof i52.ToolBarButtonComponent, typeof i52.ToolBarButtonGroupComponent, typeof i52.ToolBarDropDownButtonComponent, typeof i52.ToolBarSeparatorComponent, typeof i52.ToolBarSpacerComponent, typeof i52.ToolBarSplitButtonComponent, typeof i52.ToolBarToolComponent, typeof i140.TableDirective, typeof i141.UndoCommandToolbarDirective, typeof i142.RedoCommandToolbarDirective], [typeof i115.GridComponent, typeof i121.ToolbarTemplateDirective, typeof i117.ToolbarComponent, typeof i131.GridSpacerComponent, typeof i134.StatusBarTemplateDirective, typeof i120.DataBindingDirective, typeof i122.SelectionDirective, typeof i119.CustomMessagesComponent, typeof i129.GroupBindingDirective, typeof i123.TemplateEditingDirective, typeof i124.ReactiveEditingDirective, typeof i125.InCellEditingDirective, typeof i126.ExternalEditingDirective, typeof i127.ExpandDetailsDirective, typeof i128.ExpandGroupDirective, typeof i132.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.GroupCommandToolbarDirective, typeof i46.HeaderComponent, typeof i47.HeaderTemplateDirective, typeof i48.ColumnHandleDirective, typeof i49.SelectAllCheckboxDirective, typeof i53.FilterRowComponent, typeof i54.FilterCellComponent, typeof i55.FilterCellTemplateDirective, typeof i56.StringFilterCellComponent, typeof i57.NumericFilterCellComponent, typeof i58.AutoCompleteFilterCellComponent, typeof i59.BooleanFilterCellComponent, typeof i60.FilterCellHostDirective, typeof i61.FilterCellWrapperComponent, typeof i62.DateFilterCellComponent, typeof i63.FilterCellOperatorsComponent, typeof i64.ContainsFilterOperatorComponent, typeof i65.DoesNotContainFilterOperatorComponent, typeof i66.EndsWithFilterOperatorComponent, typeof i67.EqualFilterOperatorComponent, typeof i68.IsEmptyFilterOperatorComponent, typeof i69.IsNotEmptyFilterOperatorComponent, typeof i70.IsNotNullFilterOperatorComponent, typeof i71.IsNullFilterOperatorComponent, typeof i72.NotEqualFilterOperatorComponent, typeof i73.StartsWithFilterOperatorComponent, typeof i74.GreaterFilterOperatorComponent, typeof i75.GreaterOrEqualToFilterOperatorComponent, typeof i76.LessFilterOperatorComponent, typeof i77.LessOrEqualToFilterOperatorComponent, typeof i78.AfterFilterOperatorComponent, typeof i79.AfterEqFilterOperatorComponent, typeof i80.BeforeEqFilterOperatorComponent, typeof i81.BeforeFilterOperatorComponent, typeof i83.FilterMenuComponent, typeof i84.FilterMenuContainerComponent, typeof i85.FilterMenuInputWrapperComponent, typeof i86.StringFilterMenuInputComponent, typeof i87.StringFilterMenuComponent, typeof i88.FilterMenuTemplateDirective, typeof i89.NumericFilterMenuComponent, typeof i90.NumericFilterMenuInputComponent, typeof i91.DateFilterMenuInputComponent, typeof i92.DateFilterMenuComponent, typeof i93.FilterMenuHostDirective, typeof i94.BooleanFilterMenuComponent, typeof i95.FilterMenuDropDownListDirective, typeof i96.BooleanFilterRadioButtonDirective, typeof i99.ColumnChooserComponent, typeof i100.ColumnChooserToolbarDirective, typeof i102.ColumnMenuFilterComponent, typeof i103.ColumnMenuItemComponent, typeof i104.ColumnMenuItemContentTemplateDirective, typeof i105.ColumnMenuSortComponent, typeof i107.ColumnMenuLockComponent, typeof i111.ColumnMenuStickComponent, typeof i112.ColumnMenuPositionComponent, typeof i101.ColumnMenuChooserComponent, typeof i108.ColumnMenuTemplateDirective, typeof i109.ColumnMenuContainerComponent, typeof i110.ColumnMenuItemDirective, typeof i106.ColumnMenuComponent, typeof i113.ColumnMenuAutoSizeColumnComponent, typeof i114.ColumnMenuAutoSizeAllColumnsComponent, typeof i135.GridClipboardDirective, typeof i139.UndoRedoDirective, typeof i141.UndoCommandToolbarDirective, typeof i142.RedoCommandToolbarDirective, typeof i52.ToolBarComponent, typeof i52.ToolbarCustomMessagesComponent, typeof i52.ToolBarButtonComponent, typeof i52.ToolBarButtonGroupComponent, typeof i52.ToolBarDropDownButtonComponent, typeof i52.ToolBarSeparatorComponent, typeof i52.ToolBarSpacerComponent, typeof i52.ToolBarSplitButtonComponent, typeof i52.ToolBarToolComponent, typeof i51.CustomMessagesComponent, typeof i51.PagerFocusableDirective, typeof i51.PagerInfoComponent, typeof i51.PagerInputComponent, typeof i51.PagerNextButtonsComponent, typeof i51.PagerNumericButtonsComponent, typeof i51.PagerPageSizesComponent, typeof i51.PagerPrevButtonsComponent, typeof i51.PagerTemplateDirective, typeof i51.PagerComponent, typeof i51.PagerSpacerComponent]>;
|
|
164
172
|
static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
|
|
165
173
|
}
|
package/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export { GridToolbarFocusableDirective } from './rendering/toolbar/toolbar-focus
|
|
|
21
21
|
export { GridToolbarNavigationService } from './rendering/toolbar/toolbar-navigation.service';
|
|
22
22
|
export { SortCommandToolbarDirective } from './rendering/toolbar/tools/sort-command-tool.directive';
|
|
23
23
|
export { FilterCommandToolbarDirective } from './rendering/toolbar/tools/filter-command-tool.directive';
|
|
24
|
+
export { GroupCommandToolbarDirective } from './rendering/toolbar/tools/group-command-tool.directive';
|
|
24
25
|
export { CellTemplateDirective } from './rendering/cell-template.directive';
|
|
25
26
|
export { CellLoadingTemplateDirective } from './rendering/cell-loading.template.directive';
|
|
26
27
|
export { LoadingTemplateDirective } from './rendering/loading-template.directive';
|
|
@@ -189,6 +190,10 @@ export { ScrollRequest } from './scrolling/scroll-request.service';
|
|
|
189
190
|
export { GridSize } from './common/size-options';
|
|
190
191
|
export { GridClipboardDirective } from './common/clipboard.directive';
|
|
191
192
|
export { GridClipboardEvent, GridClipboardEventType, GridClipboardTargetType, GridClipboardSettings, GridClipboardItem, GridClipboardTargetCell } from './common/clipboard-types';
|
|
193
|
+
export * from './state-management/grid-state.models';
|
|
194
|
+
export { UndoRedoDirective } from './state-management/undo-redo.directive';
|
|
195
|
+
export { UndoCommandToolbarDirective } from './state-management/undo-command-tool';
|
|
196
|
+
export { RedoCommandToolbarDirective } from './state-management/redo-command-tool';
|
|
192
197
|
export { CellRowspanFn } from './columns/cell-rowspan';
|
|
193
198
|
export { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
|
|
194
199
|
export { EditCommandDirective } from './editing/edit-command.directive';
|
|
@@ -197,7 +202,11 @@ export { SaveCommandDirective } from './editing/save-command.directive';
|
|
|
197
202
|
export { RemoveCommandDirective } from './editing/remove-command.directive';
|
|
198
203
|
export { AddCommandDirective } from './editing/add-command.directive';
|
|
199
204
|
export { AddCommandToolbarDirective } from './editing/add-command-tool.directive';
|
|
200
|
-
export { ColumnChooserToolbarDirective } from './
|
|
205
|
+
export { ColumnChooserToolbarDirective } from './rendering/toolbar/tools/column-chooser-tool.directive';
|
|
206
|
+
export { SaveCommandToolbarDirective } from './editing/save-command-tool.directive';
|
|
207
|
+
export { EditCommandToolbarDirective } from './editing/edit-command-tool.directive';
|
|
208
|
+
export { RemoveCommandToolbarDirective } from './editing/remove-command-tool.directive';
|
|
209
|
+
export { CancelCommandToolbarDirective } from './editing/cancel-command-tool.directive';
|
|
201
210
|
export { EditingDirectiveBase } from './editing-directives/editing-directive-base';
|
|
202
211
|
export { RowEditingDirectiveBase } from './editing-directives/row-editing-directive-base';
|
|
203
212
|
export { CellComponent } from './rendering/cell.component';
|
|
@@ -215,6 +215,10 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
215
215
|
* The text of the `(All)` option for Boolean filter.
|
|
216
216
|
*/
|
|
217
217
|
filterBooleanAll: string;
|
|
218
|
+
/**
|
|
219
|
+
* The title that is displayed in the Operators ActionSheet.
|
|
220
|
+
*/
|
|
221
|
+
adaptiveFilterOperatorsTitle: any;
|
|
218
222
|
/**
|
|
219
223
|
* The text of the `AfterOrEqualTo` (**Is after or equal to**) date filter operator.
|
|
220
224
|
*/
|
|
@@ -239,6 +243,14 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
239
243
|
* The text of the **Clear filter** button.
|
|
240
244
|
*/
|
|
241
245
|
filterClearButton: string;
|
|
246
|
+
/**
|
|
247
|
+
* The title of the **Close** button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
|
|
248
|
+
*/
|
|
249
|
+
adaptiveCloseButtonTitle: string;
|
|
250
|
+
/**
|
|
251
|
+
* The title of the **Back** button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
|
|
252
|
+
*/
|
|
253
|
+
adaptiveBackButtonTitle: string;
|
|
242
254
|
/**
|
|
243
255
|
* The text of the `And` filter logic.
|
|
244
256
|
*/
|
|
@@ -280,6 +292,42 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
280
292
|
* The text for the Grid Column Chooser and Column Chooser toolbar tool.
|
|
281
293
|
*/
|
|
282
294
|
columns: string;
|
|
295
|
+
/**
|
|
296
|
+
* The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool.
|
|
297
|
+
*/
|
|
298
|
+
columnsSubtitle: string;
|
|
299
|
+
/**
|
|
300
|
+
* The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu.
|
|
301
|
+
*/
|
|
302
|
+
adaptiveFilterTitle: string;
|
|
303
|
+
/**
|
|
304
|
+
* The title that is displayed in the adaptive Sort Toolbar Tool.
|
|
305
|
+
*/
|
|
306
|
+
adaptiveSortTitle: string;
|
|
307
|
+
/**
|
|
308
|
+
* The title that is displayed in the adaptive Group Toolbar Tool.
|
|
309
|
+
*/
|
|
310
|
+
adaptiveGroupTitle: string;
|
|
311
|
+
/**
|
|
312
|
+
* The text of the **Clear all filters** button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool.
|
|
313
|
+
*/
|
|
314
|
+
filterClearAllButton: string;
|
|
315
|
+
/**
|
|
316
|
+
* The text of the **Clear grouping** button in the Group Toolbar Tool and adaptive Group Toolbar Tool.
|
|
317
|
+
*/
|
|
318
|
+
groupClearButton: string;
|
|
319
|
+
/**
|
|
320
|
+
* The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool.
|
|
321
|
+
*/
|
|
322
|
+
sortClearButton: string;
|
|
323
|
+
/**
|
|
324
|
+
* The text of the **Done** sort button.
|
|
325
|
+
*/
|
|
326
|
+
sortDoneButton: string;
|
|
327
|
+
/**
|
|
328
|
+
* The text of the **Done** group button in the adaptive Group Toolbar Tool.
|
|
329
|
+
*/
|
|
330
|
+
groupDoneButton: string;
|
|
283
331
|
/**
|
|
284
332
|
* The text that is displayed in the column menu for the lock item.
|
|
285
333
|
*/
|
|
@@ -390,6 +438,34 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
390
438
|
* The label for the bottom toolbar.
|
|
391
439
|
*/
|
|
392
440
|
bottomToolbarLabel: string;
|
|
441
|
+
/**
|
|
442
|
+
* The text for the Grid Edit toolbar tool.
|
|
443
|
+
*/
|
|
444
|
+
editToolbarToolText: string;
|
|
445
|
+
/**
|
|
446
|
+
* The text for the Grid Save toolbar tool.
|
|
447
|
+
*/
|
|
448
|
+
saveToolbarToolText: string;
|
|
449
|
+
/**
|
|
450
|
+
* The text for the Grid Add toolbar tool.
|
|
451
|
+
*/
|
|
452
|
+
addToolbarToolText: string;
|
|
453
|
+
/**
|
|
454
|
+
* The text for the Grid Cancel toolbar tool.
|
|
455
|
+
*/
|
|
456
|
+
cancelToolbarToolText: string;
|
|
457
|
+
/**
|
|
458
|
+
* The text for the Grid Remove toolbar tool.
|
|
459
|
+
*/
|
|
460
|
+
removeToolbarToolText: string;
|
|
461
|
+
/**
|
|
462
|
+
* The text for the Grid Excel Export toolbar tool.
|
|
463
|
+
*/
|
|
464
|
+
excelExportToolbarToolText: string;
|
|
465
|
+
/**
|
|
466
|
+
* The text for the Grid PDF Export toolbar tool.
|
|
467
|
+
*/
|
|
468
|
+
pdfExportToolbarToolText: string;
|
|
393
469
|
/**
|
|
394
470
|
* The label for the group panel toolbar.
|
|
395
471
|
*/
|
|
@@ -418,6 +494,10 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
418
494
|
* The text for the Group pane Chip Menu Move as next item.
|
|
419
495
|
*/
|
|
420
496
|
groupChipMenuNext: string;
|
|
497
|
+
/**
|
|
498
|
+
* The button text of the Group toolbar tool.
|
|
499
|
+
*/
|
|
500
|
+
groupToolbarToolText: string;
|
|
421
501
|
/**
|
|
422
502
|
* The default text of a form validation error when using the built-in external editing.
|
|
423
503
|
* <br/><br/>
|
|
@@ -452,9 +532,13 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
452
532
|
*/
|
|
453
533
|
removeConfirmationDialogRejectText: string;
|
|
454
534
|
/**
|
|
455
|
-
* The title of the external editing Dialog.
|
|
535
|
+
* The title of the external editing Dialog or ActionSheet when editing an item.
|
|
456
536
|
*/
|
|
457
537
|
externalEditingTitle: string;
|
|
538
|
+
/**
|
|
539
|
+
* The title of the external editing Dialog or ActionSheet when adding a new item.
|
|
540
|
+
*/
|
|
541
|
+
externalEditingAddTitle: string;
|
|
458
542
|
/**
|
|
459
543
|
* The text of the external editing Dialog <b>Save</b> button.
|
|
460
544
|
*/
|
|
@@ -464,5 +548,5 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
464
548
|
*/
|
|
465
549
|
externalEditingCancelText: string;
|
|
466
550
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridMessages, never>;
|
|
467
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "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; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "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; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; }, {}, never, never, false, never>;
|
|
551
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "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; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "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; }; "adaptiveFilterOperatorsTitle": { "alias": "adaptiveFilterOperatorsTitle"; "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; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveBackButtonTitle": { "alias": "adaptiveBackButtonTitle"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnsSubtitle": { "alias": "columnsSubtitle"; "required": false; }; "adaptiveFilterTitle": { "alias": "adaptiveFilterTitle"; "required": false; }; "adaptiveSortTitle": { "alias": "adaptiveSortTitle"; "required": false; }; "adaptiveGroupTitle": { "alias": "adaptiveGroupTitle"; "required": false; }; "filterClearAllButton": { "alias": "filterClearAllButton"; "required": false; }; "groupClearButton": { "alias": "groupClearButton"; "required": false; }; "sortClearButton": { "alias": "sortClearButton"; "required": false; }; "sortDoneButton": { "alias": "sortDoneButton"; "required": false; }; "groupDoneButton": { "alias": "groupDoneButton"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "groupToolbarToolText": { "alias": "groupToolbarToolText"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingAddTitle": { "alias": "externalEditingAddTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; }, {}, never, never, false, never>;
|
|
468
552
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2025 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 ToolbarToolName: {
|
|
9
|
+
edit: string;
|
|
10
|
+
save: string;
|
|
11
|
+
remove: string;
|
|
12
|
+
cancel: string;
|
|
13
|
+
add: string;
|
|
14
|
+
columns: string;
|
|
15
|
+
excelExport: string;
|
|
16
|
+
pdfExport: string;
|
|
17
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.1-develop.1",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,10 +23,25 @@
|
|
|
23
23
|
],
|
|
24
24
|
"@progress": {
|
|
25
25
|
"friendlyName": "Grid",
|
|
26
|
+
"migrations": {
|
|
27
|
+
"options": {
|
|
28
|
+
"parser": "tsx",
|
|
29
|
+
"pattern": "*.{ts,html}"
|
|
30
|
+
},
|
|
31
|
+
"codemods": {
|
|
32
|
+
"19": [
|
|
33
|
+
{
|
|
34
|
+
"description": "The Grid's kendoGridGroupBinding directive is deprecated",
|
|
35
|
+
"file": "codemods/v19/grid-kendogridgroupbinding.js",
|
|
36
|
+
"prompt": "true"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
},
|
|
26
41
|
"package": {
|
|
27
42
|
"productName": "Kendo UI for Angular",
|
|
28
43
|
"productCode": "KENDOUIANGULAR",
|
|
29
|
-
"publishDate":
|
|
44
|
+
"publishDate": 1748425426,
|
|
30
45
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
31
46
|
}
|
|
32
47
|
},
|
|
@@ -39,28 +54,28 @@
|
|
|
39
54
|
"@progress/kendo-data-query": "^1.0.0",
|
|
40
55
|
"@progress/kendo-drawing": "^1.21.0",
|
|
41
56
|
"@progress/kendo-licensing": "^1.5.0",
|
|
42
|
-
"@progress/kendo-angular-buttons": "19.0.
|
|
43
|
-
"@progress/kendo-angular-common": "19.0.
|
|
44
|
-
"@progress/kendo-angular-dateinputs": "19.0.
|
|
45
|
-
"@progress/kendo-angular-layout": "19.0.
|
|
46
|
-
"@progress/kendo-angular-
|
|
47
|
-
"@progress/kendo-angular-
|
|
48
|
-
"@progress/kendo-angular-
|
|
49
|
-
"@progress/kendo-angular-
|
|
50
|
-
"@progress/kendo-angular-
|
|
51
|
-
"@progress/kendo-angular-intl": "19.0.
|
|
52
|
-
"@progress/kendo-angular-l10n": "19.0.
|
|
53
|
-
"@progress/kendo-angular-label": "19.0.
|
|
54
|
-
"@progress/kendo-angular-pager": "19.0.
|
|
55
|
-
"@progress/kendo-angular-pdf-export": "19.0.
|
|
56
|
-
"@progress/kendo-angular-popup": "19.0.
|
|
57
|
-
"@progress/kendo-angular-toolbar": "19.0.
|
|
58
|
-
"@progress/kendo-angular-utils": "19.0.
|
|
57
|
+
"@progress/kendo-angular-buttons": "19.0.1-develop.1",
|
|
58
|
+
"@progress/kendo-angular-common": "19.0.1-develop.1",
|
|
59
|
+
"@progress/kendo-angular-dateinputs": "19.0.1-develop.1",
|
|
60
|
+
"@progress/kendo-angular-layout": "19.0.1-develop.1",
|
|
61
|
+
"@progress/kendo-angular-navigation": "19.0.1-develop.1",
|
|
62
|
+
"@progress/kendo-angular-dropdowns": "19.0.1-develop.1",
|
|
63
|
+
"@progress/kendo-angular-excel-export": "19.0.1-develop.1",
|
|
64
|
+
"@progress/kendo-angular-icons": "19.0.1-develop.1",
|
|
65
|
+
"@progress/kendo-angular-inputs": "19.0.1-develop.1",
|
|
66
|
+
"@progress/kendo-angular-intl": "19.0.1-develop.1",
|
|
67
|
+
"@progress/kendo-angular-l10n": "19.0.1-develop.1",
|
|
68
|
+
"@progress/kendo-angular-label": "19.0.1-develop.1",
|
|
69
|
+
"@progress/kendo-angular-pager": "19.0.1-develop.1",
|
|
70
|
+
"@progress/kendo-angular-pdf-export": "19.0.1-develop.1",
|
|
71
|
+
"@progress/kendo-angular-popup": "19.0.1-develop.1",
|
|
72
|
+
"@progress/kendo-angular-toolbar": "19.0.1-develop.1",
|
|
73
|
+
"@progress/kendo-angular-utils": "19.0.1-develop.1",
|
|
59
74
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
60
75
|
},
|
|
61
76
|
"dependencies": {
|
|
62
77
|
"tslib": "^2.3.1",
|
|
63
|
-
"@progress/kendo-angular-schematics": "19.0.
|
|
78
|
+
"@progress/kendo-angular-schematics": "19.0.1-develop.1",
|
|
64
79
|
"@progress/kendo-common": "^1.0.1",
|
|
65
80
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
66
81
|
},
|