@syncfusion/ej2-grids 20.3.47-54738 → 20.3.47-54739

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.
Files changed (161) hide show
  1. package/dist/ej2-grids.min.js +1 -0
  2. package/helpers/e2e/gridhelper.d.ts +59 -0
  3. package/helpers/e2e/index.d.ts +1 -0
  4. package/package.json +1 -1
  5. package/src/components.d.ts +5 -0
  6. package/src/grid/actions/aggregate.d.ts +31 -0
  7. package/src/grid/actions/batch-edit.d.ts +116 -0
  8. package/src/grid/actions/blazor-action.d.ts +47 -0
  9. package/src/grid/actions/checkbox-filter.d.ts +47 -0
  10. package/src/grid/actions/clipboard.d.ts +69 -0
  11. package/src/grid/actions/column-chooser.d.ts +114 -0
  12. package/src/grid/actions/column-menu.d.ts +99 -0
  13. package/src/grid/actions/command-column.d.ts +31 -0
  14. package/src/grid/actions/context-menu.d.ts +102 -0
  15. package/src/grid/actions/data.d.ts +110 -0
  16. package/src/grid/actions/detail-row.d.ts +73 -0
  17. package/src/grid/actions/dialog-edit.d.ts +21 -0
  18. package/src/grid/actions/edit.d.ts +271 -0
  19. package/src/grid/actions/excel-export.d.ts +89 -0
  20. package/src/grid/actions/excel-filter.d.ts +53 -0
  21. package/src/grid/actions/export-helper.d.ts +67 -0
  22. package/src/grid/actions/filter.d.ts +253 -0
  23. package/src/grid/actions/foreign-key.d.ts +20 -0
  24. package/src/grid/actions/freeze.d.ts +17 -0
  25. package/src/grid/actions/group.d.ts +178 -0
  26. package/src/grid/actions/infinite-scroll.d.ts +146 -0
  27. package/src/grid/actions/inline-edit.d.ts +21 -0
  28. package/src/grid/actions/lazy-load-group.d.ts +40 -0
  29. package/src/grid/actions/logger.d.ts +30 -0
  30. package/src/grid/actions/normal-edit.d.ts +76 -0
  31. package/src/grid/actions/page.d.ts +117 -0
  32. package/src/grid/actions/pdf-export.d.ts +142 -0
  33. package/src/grid/actions/print.d.ts +67 -0
  34. package/src/grid/actions/reorder.d.ts +95 -0
  35. package/src/grid/actions/resize.d.ts +117 -0
  36. package/src/grid/actions/row-reorder.d.ts +92 -0
  37. package/src/grid/actions/scroll.d.ts +114 -0
  38. package/src/grid/actions/search.d.ts +72 -0
  39. package/src/grid/actions/selection.d.ts +481 -0
  40. package/src/grid/actions/show-hide.d.ts +55 -0
  41. package/src/grid/actions/sort.d.ts +138 -0
  42. package/src/grid/actions/toolbar.d.ts +84 -0
  43. package/src/grid/actions/virtual-scroll.d.ts +23 -0
  44. package/src/grid/actions.d.ts +39 -0
  45. package/src/grid/aggregate.d.ts +4 -0
  46. package/src/grid/base/constant.d.ts +559 -0
  47. package/src/grid/base/enum.d.ts +704 -0
  48. package/src/grid/base/grid.d.ts +3627 -0
  49. package/src/grid/base/interface.d.ts +2567 -0
  50. package/src/grid/base/string-literals.d.ts +87 -0
  51. package/src/grid/base/type.d.ts +42 -0
  52. package/src/grid/base/util.d.ts +747 -0
  53. package/src/grid/base.d.ts +11 -0
  54. package/src/grid/column-chooser.d.ts +4 -0
  55. package/src/grid/column-menu.d.ts +4 -0
  56. package/src/grid/command-column.d.ts +4 -0
  57. package/src/grid/common/checkbox-filter-base.d.ts +137 -0
  58. package/src/grid/common/excel-filter-base.d.ts +115 -0
  59. package/src/grid/common/filter-interface.d.ts +42 -0
  60. package/src/grid/common/index.d.ts +5 -0
  61. package/src/grid/common.d.ts +6 -0
  62. package/src/grid/context-menu.d.ts +4 -0
  63. package/src/grid/detail-row.d.ts +4 -0
  64. package/src/grid/edit.d.ts +4 -0
  65. package/src/grid/excel-export.d.ts +4 -0
  66. package/src/grid/filter.d.ts +4 -0
  67. package/src/grid/foreign-key.d.ts +4 -0
  68. package/src/grid/freeze.d.ts +4 -0
  69. package/src/grid/group.d.ts +4 -0
  70. package/src/grid/index.d.ts +9 -0
  71. package/src/grid/infinite-scroll.d.ts +4 -0
  72. package/src/grid/lazy-load-group.d.ts +4 -0
  73. package/src/grid/logger.d.ts +4 -0
  74. package/src/grid/models/aggregate.d.ts +138 -0
  75. package/src/grid/models/cell.d.ts +38 -0
  76. package/src/grid/models/column-chooser-settings.d.ts +20 -0
  77. package/src/grid/models/column.d.ts +1122 -0
  78. package/src/grid/models/models.d.ts +7 -0
  79. package/src/grid/models/page-settings.d.ts +55 -0
  80. package/src/grid/models/row.d.ts +62 -0
  81. package/src/grid/models.d.ts +7 -0
  82. package/src/grid/page.d.ts +4 -0
  83. package/src/grid/pdf-export.d.ts +4 -0
  84. package/src/grid/renderer/autocomplete-edit-cell.d.ts +20 -0
  85. package/src/grid/renderer/batch-edit-renderer.d.ts +23 -0
  86. package/src/grid/renderer/boolean-edit-cell.d.ts +30 -0
  87. package/src/grid/renderer/boolean-filter-ui.d.ts +42 -0
  88. package/src/grid/renderer/caption-cell-renderer.d.ts +45 -0
  89. package/src/grid/renderer/cell-merge-renderer.d.ts +23 -0
  90. package/src/grid/renderer/cell-renderer.d.ts +91 -0
  91. package/src/grid/renderer/column-freeze-renderer.d.ts +166 -0
  92. package/src/grid/renderer/combobox-edit-cell.d.ts +19 -0
  93. package/src/grid/renderer/command-column-renderer.d.ts +31 -0
  94. package/src/grid/renderer/content-renderer.d.ts +210 -0
  95. package/src/grid/renderer/date-filter-ui.d.ts +31 -0
  96. package/src/grid/renderer/datepicker-edit-cell.d.ts +20 -0
  97. package/src/grid/renderer/default-edit-cell.d.ts +22 -0
  98. package/src/grid/renderer/detail-expand-cell-renderer.d.ts +21 -0
  99. package/src/grid/renderer/detail-header-indent-renderer.d.ts +20 -0
  100. package/src/grid/renderer/dialog-edit-renderer.d.ts +39 -0
  101. package/src/grid/renderer/dropdown-edit-cell.d.ts +32 -0
  102. package/src/grid/renderer/edit-cell-base.d.ts +25 -0
  103. package/src/grid/renderer/edit-renderer.d.ts +35 -0
  104. package/src/grid/renderer/expand-cell-renderer.d.ts +28 -0
  105. package/src/grid/renderer/filter-cell-renderer.d.ts +36 -0
  106. package/src/grid/renderer/filter-menu-operator.d.ts +43 -0
  107. package/src/grid/renderer/filter-menu-renderer.d.ts +65 -0
  108. package/src/grid/renderer/footer-renderer.d.ts +50 -0
  109. package/src/grid/renderer/freeze-renderer.d.ts +142 -0
  110. package/src/grid/renderer/group-lazy-load-renderer.d.ts +177 -0
  111. package/src/grid/renderer/header-cell-renderer.d.ts +54 -0
  112. package/src/grid/renderer/header-indent-renderer.d.ts +20 -0
  113. package/src/grid/renderer/header-renderer.d.ts +156 -0
  114. package/src/grid/renderer/indent-cell-renderer.d.ts +20 -0
  115. package/src/grid/renderer/inline-edit-renderer.d.ts +39 -0
  116. package/src/grid/renderer/inputmask-edit-cell.d.ts +18 -0
  117. package/src/grid/renderer/multiselect-edit-cell.d.ts +18 -0
  118. package/src/grid/renderer/number-filter-ui.d.ts +30 -0
  119. package/src/grid/renderer/numeric-edit-cell.d.ts +27 -0
  120. package/src/grid/renderer/render.d.ts +104 -0
  121. package/src/grid/renderer/responsive-dialog-renderer.d.ts +84 -0
  122. package/src/grid/renderer/row-drag-drop-renderer.d.ts +20 -0
  123. package/src/grid/renderer/row-drag-header-indent-render.d.ts +20 -0
  124. package/src/grid/renderer/row-renderer.d.ts +55 -0
  125. package/src/grid/renderer/stacked-cell-renderer.d.ts +23 -0
  126. package/src/grid/renderer/string-filter-ui.d.ts +39 -0
  127. package/src/grid/renderer/summary-cell-renderer.d.ts +15 -0
  128. package/src/grid/renderer/template-edit-cell.d.ts +13 -0
  129. package/src/grid/renderer/timepicker-edit-cell.d.ts +18 -0
  130. package/src/grid/renderer/toggleswitch-edit-cell.d.ts +27 -0
  131. package/src/grid/renderer/virtual-content-renderer.d.ts +221 -0
  132. package/src/grid/renderer/virtual-freeze-renderer.d.ts +382 -0
  133. package/src/grid/renderer.d.ts +42 -0
  134. package/src/grid/reorder.d.ts +4 -0
  135. package/src/grid/resize.d.ts +4 -0
  136. package/src/grid/row-reorder.d.ts +4 -0
  137. package/src/grid/selection.d.ts +4 -0
  138. package/src/grid/services/aria-service.d.ts +34 -0
  139. package/src/grid/services/cell-render-factory.d.ts +14 -0
  140. package/src/grid/services/focus-strategy.d.ts +192 -0
  141. package/src/grid/services/freeze-row-model-generator.d.ts +14 -0
  142. package/src/grid/services/group-model-generator.d.ts +68 -0
  143. package/src/grid/services/intersection-observer.d.ts +23 -0
  144. package/src/grid/services/renderer-factory.d.ts +14 -0
  145. package/src/grid/services/row-model-generator.d.ts +41 -0
  146. package/src/grid/services/service-locator.d.ts +14 -0
  147. package/src/grid/services/summary-model-generator.d.ts +43 -0
  148. package/src/grid/services/value-formatter.d.ts +16 -0
  149. package/src/grid/services/virtual-row-model-generator.d.ts +55 -0
  150. package/src/grid/services/width-controller.d.ts +35 -0
  151. package/src/grid/services.d.ts +11 -0
  152. package/src/grid/sort.d.ts +4 -0
  153. package/src/grid/toolbar.d.ts +4 -0
  154. package/src/grid/virtual-scroll.d.ts +4 -0
  155. package/src/index.d.ts +5 -0
  156. package/src/pager/external-message.d.ts +55 -0
  157. package/src/pager/index.d.ts +9 -0
  158. package/src/pager/numeric-container.d.ts +78 -0
  159. package/src/pager/pager-dropdown.d.ts +68 -0
  160. package/src/pager/pager-message.d.ts +50 -0
  161. package/src/pager/pager.d.ts +341 -0
@@ -0,0 +1,704 @@
1
+ /**
2
+ * Defines Actions of the Grid. They are
3
+ * * paging
4
+ * * refresh
5
+ * * sorting
6
+ * * filtering
7
+ * * selection
8
+ * * rowdraganddrop
9
+ * * reorder
10
+ * * grouping
11
+ * * ungrouping
12
+ */
13
+ export declare type Action =
14
+ /** Defines current Action as Paging */
15
+ 'paging' |
16
+ /** Defines current Action as Refresh */
17
+ 'refresh' |
18
+ /** Defines current Action as Sorting */
19
+ 'sorting' |
20
+ /** Defines current Action as Selection */
21
+ 'selection' |
22
+ /** Defines current Action as Filtering */
23
+ 'filtering' |
24
+ /** Defines current Action as Searching */
25
+ 'searching' |
26
+ /** Defines current Action as Row Drag and Drop */
27
+ 'rowdraganddrop' |
28
+ /** Defines current Action as Reorder */
29
+ 'reorder' |
30
+ /** Defines current Action as Grouping */
31
+ 'grouping' |
32
+ /** Defines current Action as UnGrouping */
33
+ 'ungrouping' |
34
+ /** Defines current Action as Batch Save */
35
+ 'batchsave' |
36
+ /** Defines current Action as Virtual Scroll */
37
+ 'virtualscroll' |
38
+ /** Defines current Action as print */
39
+ 'print' |
40
+ /** Defines current Action as beginedit */
41
+ 'beginEdit' |
42
+ /** Defines current Action as save */
43
+ 'save' |
44
+ /** Defines current Action as delete */
45
+ 'delete' |
46
+ /** Defines current Action as cancel */
47
+ 'cancel' |
48
+ /** Defines current Action as add */
49
+ 'add' |
50
+ /** Defines current Action as filterBeforeOpen */
51
+ 'filterBeforeOpen' |
52
+ /** Defines current Action as filterChoiceRequest */
53
+ 'filterchoicerequest' |
54
+ /** Defines current Action as filterAfterOpen */
55
+ 'filterAfterOpen' |
56
+ /** Defines current Action as filterSearchBegin */
57
+ 'filterSearchBegin' |
58
+ /** represents the column state */
59
+ 'columnstate' |
60
+ /** Defines current Action as Infinite Scroll */
61
+ 'infiniteScroll' |
62
+ /** Defines current Action as stringfilterrequest */
63
+ 'stringfilterrequest';
64
+ /**
65
+ * Defines directions of Sorting. They are
66
+ * * Ascending
67
+ * * Descending
68
+ */
69
+ export declare type SortDirection =
70
+ /** Defines SortDirection as Ascending */
71
+ 'Ascending' |
72
+ /** Defines SortDirection as Descending */
73
+ 'Descending';
74
+ /**
75
+ * `columnQueryMode`provides options to retrive data from the datasource. They are
76
+ * * All
77
+ * * Schema
78
+ * * ExcludeHidden
79
+ */
80
+ export declare type ColumnQueryModeType =
81
+ /** It Retrieves whole datasource */
82
+ 'All' |
83
+ /** Retrives data for all the defined columns in grid from the datasource. */
84
+ 'Schema' |
85
+ /** Retrives data only for visible columns of grid from the dataSource. */
86
+ 'ExcludeHidden';
87
+ /**
88
+ * Defines types of Selection. They are
89
+ * * Single - Allows user to select a row or cell.
90
+ * * Multiple - Allows user to select multiple rows or cells.
91
+ */
92
+ export declare type SelectionType =
93
+ /** Defines Single selection in the Grid */
94
+ 'Single' |
95
+ /** Defines multiple selections in the Grid */
96
+ 'Multiple';
97
+ /**
98
+ * Defines modes of checkbox Selection. They are
99
+ * * Default
100
+ * * ResetOnRowClick
101
+ */
102
+ export declare type CheckboxSelectionType =
103
+ /** Allows the user to select multiple rows by clicking rows one by one */
104
+ 'Default' |
105
+ /** Allows to reset the previously selected row when a row is clicked and multiple rows can be selected by using CTRL or SHIFT key */
106
+ 'ResetOnRowClick';
107
+ /**
108
+ * Defines alignments of text, they are
109
+ * * Left
110
+ * * Right
111
+ * * Center
112
+ * * Justify
113
+ */
114
+ export declare type TextAlign =
115
+ /** Defines Left alignment */
116
+ 'Left' |
117
+ /** Defines Right alignment */
118
+ 'Right' |
119
+ /** Defines Center alignment */
120
+ 'Center' |
121
+ /** Defines Justify alignment */
122
+ 'Justify';
123
+ /**
124
+ * Defines types of Cell
125
+ *
126
+ * @hidden
127
+ */
128
+ export declare enum CellType {
129
+ /** Defines CellType as Data */
130
+ Data = 0,
131
+ /** Defines CellType as Header */
132
+ Header = 1,
133
+ /** Defines CellType as Summary */
134
+ Summary = 2,
135
+ /** Defines CellType as GroupSummary */
136
+ GroupSummary = 3,
137
+ /** Defines CellType as CaptionSummary */
138
+ CaptionSummary = 4,
139
+ /** Defines CellType as Filter */
140
+ Filter = 5,
141
+ /** Defines CellType as Indent */
142
+ Indent = 6,
143
+ /** Defines CellType as GroupCaption */
144
+ GroupCaption = 7,
145
+ /** Defines CellType as GroupCaptionEmpty */
146
+ GroupCaptionEmpty = 8,
147
+ /** Defines CellType as Expand */
148
+ Expand = 9,
149
+ /** Defines CellType as HeaderIndent */
150
+ HeaderIndent = 10,
151
+ /** Defines CellType as StackedHeader */
152
+ StackedHeader = 11,
153
+ /** Defines CellType as DetailHeader */
154
+ DetailHeader = 12,
155
+ /** Defines CellType as DetailExpand */
156
+ DetailExpand = 13,
157
+ /** Defines CellType as CommandColumn */
158
+ CommandColumn = 14,
159
+ /** Defines CellType as DetailFooterIntent */
160
+ DetailFooterIntent = 15,
161
+ /** Defines CellType as RowDrag */
162
+ RowDragIcon = 16,
163
+ /** Defines CellType as RowDragHeader */
164
+ RowDragHIcon = 17
165
+ }
166
+ /**
167
+ * Defines modes of GridLine, They are
168
+ * * Both - Displays both the horizontal and vertical grid lines.
169
+ * * None - No grid lines are displayed.
170
+ * * Horizontal - Displays the horizontal grid lines only.
171
+ * * Vertical - Displays the vertical grid lines only.
172
+ * * Default - Displays grid lines based on the theme.
173
+ */
174
+ export declare type GridLine =
175
+ /** Show both the vertical and horizontal line in the Grid */
176
+ 'Both' |
177
+ /** Hide both the vertical and horizontal line in the Grid */
178
+ 'None' |
179
+ /** Shows the horizontal line only in the Grid */
180
+ 'Horizontal' |
181
+ /** Shows the vertical line only in the Grid */
182
+ 'Vertical' |
183
+ /** Shows the grid lines based on the theme */
184
+ 'Default';
185
+ /**
186
+ * Defines types of Render
187
+ *
188
+ * @hidden
189
+ */
190
+ export declare enum RenderType {
191
+ /** Defines RenderType as Header */
192
+ Header = 0,
193
+ /** Defines RenderType as Content */
194
+ Content = 1,
195
+ /** Defines RenderType as Summary */
196
+ Summary = 2
197
+ }
198
+ /**
199
+ * Defines modes of Selection, They are
200
+ * * Row
201
+ * * Cell
202
+ * * Both
203
+ */
204
+ export declare type SelectionMode =
205
+ /** Defines SelectionMode as Cell */
206
+ 'Cell' |
207
+ /** Defines SelectionMode as Row */
208
+ 'Row' |
209
+ /** Defines SelectionMode as Both */
210
+ 'Both';
211
+ /**
212
+ * Print mode options are
213
+ * * AllPages - Print all pages records of the Grid.
214
+ * * CurrentPage - Print current page records of the Grid.
215
+ */
216
+ export declare type PrintMode =
217
+ /** Defines PrintMode as AllPages */
218
+ 'AllPages' |
219
+ /** Defines PrintMode as CurrentPage */
220
+ 'CurrentPage';
221
+ /**
222
+ * Hierarchy Grid Print modes are
223
+ * * `Expanded` - Prints the master grid with expanded child grids.
224
+ * * `All` - Prints the master grid with all the child grids.
225
+ * * `None` - Prints the master grid alone.
226
+ */
227
+ export declare type HierarchyGridPrintMode =
228
+ /** Defines Hierarchy PrintMode as Expanded */
229
+ 'Expanded' |
230
+ /** Defines Hierarchy PrintMode as All */
231
+ 'All' |
232
+ /** Defines Hierarchy PrintMode as None */
233
+ 'None';
234
+ /**
235
+ * Defines types of Filter
236
+ * * Menu - Specifies the filter type as menu.
237
+ * * Excel - Specifies the filter type as excel.
238
+ * * FilterBar - Specifies the filter type as filter bar.
239
+ * * CheckBox - Specifies the filter type as check box.
240
+ */
241
+ export declare type FilterType =
242
+ /** Defines FilterType as filterbar */
243
+ 'FilterBar' |
244
+ /** Defines FilterType as excel */
245
+ 'Excel' |
246
+ /** Defines FilterType as menu */
247
+ 'Menu' |
248
+ /** Defines FilterType as checkbox */
249
+ 'CheckBox';
250
+ /**
251
+ * Filter bar mode options are
252
+ * * OnEnter - Initiate filter operation after Enter key is pressed.
253
+ * * Immediate - Initiate filter operation after certain time interval. By default time interval is 1500 ms.
254
+ */
255
+ export declare type FilterBarMode =
256
+ /** Defines FilterBarMode as onenter */
257
+ 'OnEnter' |
258
+ /** Defines FilterBarMode as immediate */
259
+ 'Immediate';
260
+ /**
261
+ * Defines the aggregate types.
262
+ */
263
+ export declare type AggregateType =
264
+ /** Defines sum aggregate type */
265
+ 'Sum' |
266
+ /** Specifies average aggregate type */
267
+ 'Average' |
268
+ /** Specifies maximum aggregate type */
269
+ 'Max' |
270
+ /** Specifies minimum aggregate type */
271
+ 'Min' |
272
+ /** Specifies count aggregate type */
273
+ 'Count' |
274
+ /** Specifies true count aggregate type */
275
+ 'TrueCount' |
276
+ /** Specifies false count aggregate type */
277
+ 'FalseCount' |
278
+ /** Specifies custom aggregate type */
279
+ 'Custom';
280
+ /**
281
+ * Defines the wrap mode.
282
+ * * Both - Wraps both header and content.
283
+ * * Header - Wraps header alone.
284
+ * * Content - Wraps content alone.
285
+ * {% codeBlock src='grid/textWrapSettings/index.md' %}{% endcodeBlock %}
286
+ */
287
+ export declare type WrapMode =
288
+ /** Wraps both header and content */
289
+ 'Both' |
290
+ /** Wraps header alone */
291
+ 'Header' |
292
+ /** Wraps content alone */
293
+ 'Content';
294
+ /**
295
+ * Defines Multiple Export Type.
296
+ */
297
+ export declare type MultipleExportType =
298
+ /** Multiple Grids are exported to same Worksheet. */
299
+ 'AppendToSheet' |
300
+ /** Multiple Grids are exported to separate Worksheet. */
301
+ 'NewSheet';
302
+ /**
303
+ * Defines Predefined toolbar items.
304
+ *
305
+ * @hidden
306
+ */
307
+ export declare type ToolbarItems =
308
+ /** Add new record */
309
+ 'Add' |
310
+ /** Delete selected record */
311
+ 'Delete' |
312
+ /** Update edited record */
313
+ 'Update' |
314
+ /** Cancel the edited state */
315
+ 'Cancel' |
316
+ /** Edit the selected record */
317
+ 'Edit' |
318
+ /** Searches the grid records by given key */
319
+ 'Search' |
320
+ /** ColumnChooser used show/gird columns */
321
+ 'ColumnChooser' |
322
+ /** Print the Grid */
323
+ 'Print' |
324
+ /** Export the Grid to PDF format */
325
+ 'PdfExport' |
326
+ /** Export the Grid to Excel format */
327
+ 'ExcelExport' |
328
+ /** Export the Grid to CSV format */
329
+ 'CsvExport' |
330
+ /** Export the Grid to word fromat */
331
+ 'WordExport';
332
+ /**
333
+ * Defines the cell content's overflow mode. The available modes are
334
+ * * `Clip` - Truncates the cell content when it overflows its area.
335
+ * * `Ellipsis` - Displays ellipsis when the cell content overflows its area.
336
+ * * `EllipsisWithTooltip` - Displays ellipsis when the cell content overflows its area
337
+ * also it will display tooltip while hover on ellipsis applied cell.
338
+ * {% codeBlock src='grid/clipMode/index.md' %}{% endcodeBlock %}
339
+ */
340
+ export declare type ClipMode =
341
+ /** Truncates the cell content when it overflows its area */
342
+ 'Clip' |
343
+ /** Displays ellipsis when the cell content overflows its area */
344
+ 'Ellipsis' |
345
+ /** Displays ellipsis when the cell content overflows its area also it will display tooltip while hover on ellipsis applied cell. */
346
+ 'EllipsisWithTooltip';
347
+ /**
348
+ * Defines the Command Buttons type.
349
+ * * Edit - Edit the current record.
350
+ * * Delete - Delete the current record.
351
+ * * Save - Save the current edited record.
352
+ * * Cancel - Cancel the edited state.
353
+ */
354
+ export declare type CommandButtonType =
355
+ /** Default enum type */
356
+ 'None' |
357
+ /** Edit the current row */
358
+ 'Edit' |
359
+ /** Delete the current row */
360
+ 'Delete' |
361
+ /** Save the current edited row */
362
+ 'Save' |
363
+ /** Cancel the edited state */
364
+ 'Cancel';
365
+ /**
366
+ * Defines the default items of context menu.
367
+ */
368
+ export declare type ContextMenuItem =
369
+ /** Auto fit the size of all columns */
370
+ 'AutoFitAll' |
371
+ /** Auto fit the current column */
372
+ 'AutoFit' |
373
+ /** Group by current column */
374
+ 'Group' |
375
+ /** Ungroup by current column */
376
+ 'Ungroup' |
377
+ /** Edit the current record */
378
+ 'Edit' |
379
+ /** Delete the current record */
380
+ 'Delete' |
381
+ /** Save the edited record */
382
+ 'Save' |
383
+ /** Cancel the edited state */
384
+ 'Cancel' |
385
+ /** Copy the selected records */
386
+ 'Copy' |
387
+ /** Export the grid as Pdf format */
388
+ 'PdfExport' |
389
+ /** Export the grid as Excel format */
390
+ 'ExcelExport' |
391
+ /** Export the grid as CSV format */
392
+ 'CsvExport' |
393
+ /** Sort the current column in ascending order */
394
+ 'SortAscending' |
395
+ /** Sort the current column in descending order */
396
+ 'SortDescending' |
397
+ /** Go to the first page */
398
+ 'FirstPage' |
399
+ /** Go to the previous page */
400
+ 'PrevPage' |
401
+ /** Go to the last page */
402
+ 'LastPage' |
403
+ /** Go to the next page */
404
+ 'NextPage';
405
+ /**
406
+ * Defines the default items of Column menu.
407
+ */
408
+ export declare type ColumnMenuItem =
409
+ /** Auto fit the size of all columns */
410
+ 'AutoFitAll' |
411
+ /** Auto fit the current column */
412
+ 'AutoFit' |
413
+ /** Group by current column */
414
+ 'Group' |
415
+ /** Ungroup by current column */
416
+ 'Ungroup' |
417
+ /** Sort the current column in ascending order */
418
+ 'SortAscending' |
419
+ /** Sort the current column in descending order */
420
+ 'SortDescending' |
421
+ /** show the column chooser */
422
+ 'ColumnChooser' |
423
+ /** show the Filter popup */
424
+ 'Filter';
425
+ /**
426
+ * Defines Predefined toolbar items.
427
+ *
428
+ * @hidden
429
+ */
430
+ export declare enum ToolbarItem {
431
+ Add = 0,
432
+ Edit = 1,
433
+ Update = 2,
434
+ Delete = 3,
435
+ Cancel = 4,
436
+ Print = 5,
437
+ Search = 6,
438
+ ColumnChooser = 7,
439
+ PdfExport = 8,
440
+ ExcelExport = 9,
441
+ CsvExport = 10,
442
+ WordExport = 11
443
+ }
444
+ export declare type PdfPageSize = 'Letter' | 'Note' | 'Legal' | 'A0' | 'A1' | 'A2' | 'A3' | 'A4' | 'A5' | 'A6' | 'A7' | 'A8' | 'A9' | 'B0' | 'B1' | 'B2' | 'B3' | 'B4' | 'B5' | 'Archa' | 'Archb' | 'Archc' | 'Archd' | 'Arche' | 'Flsa' | 'HalfLetter' | 'Letter11x17' | 'Ledger';
445
+ export declare type PageOrientation = 'Landscape' | 'Portrait';
446
+ export declare type ContentType = 'Image' | 'Line' | 'PageNumber' | 'Text';
447
+ export declare type PdfPageNumberType = 'LowerLatin' | 'LowerRoman' | 'UpperLatin' | 'UpperRoman' | 'Numeric' | 'Arabic';
448
+ export declare type PdfDashStyle = 'Solid' | 'Dash' | 'Dot' | 'DashDot' | 'DashDotDot';
449
+ /**
450
+ * Defines PDF horizontal alignment.
451
+ */
452
+ export declare type PdfHAlign =
453
+ /** left alignment */
454
+ 'Left' |
455
+ /** right alignment */
456
+ 'Right' |
457
+ /** center alignment */
458
+ 'Center' |
459
+ /** justify alignment */
460
+ 'Justify';
461
+ /**
462
+ * Defines PDF vertical alignment.
463
+ */
464
+ export declare type PdfVAlign =
465
+ /** top alignment */
466
+ 'Top' |
467
+ /** bottom alignment */
468
+ 'Bottom' |
469
+ /** middle alignment */
470
+ 'Middle';
471
+ /**
472
+ * Defines Export Type.
473
+ */
474
+ export declare type ExportType =
475
+ /** All pages of the grid is exported. */
476
+ 'AllPages' |
477
+ /** Current page in grid is exported. */
478
+ 'CurrentPage';
479
+ /**
480
+ * Defines Excel horizontal alignment.
481
+ */
482
+ export declare type ExcelHAlign =
483
+ /** left alignment */
484
+ 'Left' |
485
+ /** right alignment */
486
+ 'Right' |
487
+ /** center alignment */
488
+ 'Center' |
489
+ /** fill alignment */
490
+ 'Fill';
491
+ /**
492
+ * Defines Excel vertical alignment.
493
+ */
494
+ export declare type ExcelVAlign =
495
+ /** top alignment */
496
+ 'Top' |
497
+ /** bottom alignment */
498
+ 'Bottom' |
499
+ /** center alignment */
500
+ 'Center' |
501
+ /** justify alignment */
502
+ 'Justify';
503
+ /**
504
+ * Defines excel border line style.
505
+ */
506
+ export declare type ExcelBorderLineStyle =
507
+ /** thin line style */
508
+ 'thin' |
509
+ /** thick line style */
510
+ 'thick';
511
+ /**
512
+ * Defines border line style.
513
+ */
514
+ export declare type BorderLineStyle =
515
+ /** thin line style */
516
+ 'Thin' |
517
+ /** thick line style */
518
+ 'Thick';
519
+ export declare type CheckState = 'Check' | 'Uncheck' | 'Intermediate' | 'None';
520
+ /**
521
+ * Defines mode of cell selection.
522
+ * * Flow
523
+ * * Box
524
+ */
525
+ export declare type CellSelectionMode =
526
+ /** Defines CellSelectionMode as Flow */
527
+ 'Flow' |
528
+ /** Defines CellSelectionMode as Box */
529
+ 'Box' |
530
+ /** Defines CellSelectionMode as Box with border */
531
+ 'BoxWithBorder';
532
+ /**
533
+ * Defines modes of editing.
534
+ * * Normal
535
+ * * Dialog
536
+ * * Batch
537
+ */
538
+ export declare type EditMode =
539
+ /** Defines EditMode as Normal */
540
+ 'Normal' |
541
+ /** Defines EditMode as Dialog */
542
+ 'Dialog' |
543
+ /** Defines EditMode as Batch */
544
+ 'Batch';
545
+ /**
546
+ * Defines adding new row position.
547
+ * * Top
548
+ * * Bottom
549
+ */
550
+ export declare type NewRowPosition =
551
+ /** Defines row adding position as Top */
552
+ 'Top' |
553
+ /** Defines row adding position as Top */
554
+ 'Bottom';
555
+ /**
556
+ * Defines the Edit Type of the column
557
+ * * DefaultEdit
558
+ * * DropdownEdit
559
+ * * BooleanEdit
560
+ * * DatepickerEdit
561
+ * * DatetimepickerEdit
562
+ * * NumericEdit
563
+ */
564
+ export declare type EditType =
565
+ /** Defines EditType as DefaultEdit */
566
+ 'defaultEdit' |
567
+ /** Defines EditMode as Dropdownedit */
568
+ 'dropDownEdit' |
569
+ /** Defines EditMode as Booleanedit */
570
+ 'booleanEdit' |
571
+ /** Defines EditMode as Datepickeredit */
572
+ 'datePickerEdit' |
573
+ /** Defines EditType as Datetimepickeredit */
574
+ 'dateTimePickerEdit' |
575
+ /** Defines EditMode as Numericedit */
576
+ 'numericEdit';
577
+ /**
578
+ * Defines the Column Type
579
+ * * String
580
+ * * Number
581
+ * * Boolean
582
+ * * Date
583
+ * * DateTime
584
+ * * checkBox
585
+ */
586
+ export declare type ColumnType =
587
+ /** Defines ColumnType as Null */
588
+ 'none' |
589
+ /** Defines ColumnType as String */
590
+ 'string' |
591
+ /** Defines ColumnType as Number */
592
+ 'number' |
593
+ /** Defines ColumnType as Boolean */
594
+ 'boolean' |
595
+ /** Defines ColumnType as Date */
596
+ 'date' |
597
+ /** Defines ColumnType as DateTime */
598
+ 'dateTime' |
599
+ /** Defines ColumnType as checkBox */
600
+ 'checkBox';
601
+ /**
602
+ * Defines the Aggregate Template Type
603
+ * * groupCaptionTemplate
604
+ * * groupFooterTemplate
605
+ * * footerTemplate
606
+ */
607
+ export declare type AggregateTemplateType = 'GroupCaption' | 'GroupFooter' | 'Footer';
608
+ /**
609
+ * Defines mode of resizing.
610
+ * * Normal
611
+ * * Auto
612
+ */
613
+ export declare type ResizeMode =
614
+ /** Columns will not be adjusted to fit the remaining space */
615
+ 'Normal' |
616
+ /** Resized column width will be adjusted by other columns automatically */
617
+ 'Auto';
618
+ /**
619
+ * Defines freeze direction of the grid columns
620
+ * * Left
621
+ * * Right
622
+ */
623
+ export declare type freezeDirection =
624
+ /** freeze the columns at left */
625
+ 'Left' |
626
+ /** freeze the columns at right */
627
+ 'Right';
628
+ /**
629
+ * Defines rendered part of the grid column
630
+ *
631
+ * @hidden
632
+ */
633
+ export declare type freezeTable =
634
+ /** Defines rendered the column at frozen left part */
635
+ 'frozen-left' |
636
+ /** Defines rendered the columns at frozen right part */
637
+ 'frozen-right' |
638
+ /** Defines rendered the columns at movable part */
639
+ 'movable';
640
+ /**
641
+ * Defines name of the Grid frozen mode
642
+ * * Left
643
+ * * Right
644
+ * * Left-Right
645
+ */
646
+ export declare type freezeMode =
647
+ /** Left frozen mode */
648
+ 'Left' |
649
+ /** Right frozen mode */
650
+ 'Right' |
651
+ /** Left and right frozen mode */
652
+ 'Left-Right';
653
+ /**
654
+ * Defines types of responsive dialogs
655
+ *
656
+ * @hidden
657
+ */
658
+ export declare enum ResponsiveDialogAction {
659
+ /** Defines dialog type as Edit */
660
+ isEdit = 0,
661
+ /** Defines dialog type as Add */
662
+ isAdd = 1,
663
+ /** Defines dialog type as Sort */
664
+ isSort = 2,
665
+ /** Defines dialog type as Filter */
666
+ isFilter = 3
667
+ }
668
+ /**
669
+ * Defines responsive toolbar actions
670
+ *
671
+ * @hidden
672
+ */
673
+ export declare enum ResponsiveToolbarAction {
674
+ /** Defines initial responsive toolbar buttons */
675
+ isInitial = 0,
676
+ /** Defines responsive toolbar search */
677
+ isSearch = 1
678
+ }
679
+ /**
680
+ * Defines mode of row rendering.
681
+ * * Horizontal
682
+ * * Vertical
683
+ */
684
+ export declare type RowRenderingDirection =
685
+ /** Defines horizontal row rendeing */
686
+ 'Horizontal' |
687
+ /** Defined vertical row rendering */
688
+ 'Vertical';
689
+ /**
690
+ * Defines keyboard focus keys.
691
+ *
692
+ * @hidden
693
+ */
694
+ export declare type FocusKeys = 'downArrow' | 'upArrow' | 'PageUp' | 'PageDown' | 'enter' | 'shiftEnter' | 'tab' | 'shiftTab';
695
+ /**
696
+ * Defines Loading Indicator of the Grid.
697
+ * * Spinner
698
+ * * Shimmer
699
+ */
700
+ export declare type IndicatorType =
701
+ /** Defines Loading Indicator as Spinner */
702
+ 'Spinner' |
703
+ /** Defines Loading Indicator as Shimmer */
704
+ 'Shimmer';