@vaadin/grid-pro 24.4.0-dev.b3e1d14600 → 24.5.0-alpha1

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 (52) hide show
  1. package/LICENSE +3 -1141
  2. package/README.md +0 -1
  3. package/package.json +11 -11
  4. package/src/lit/column-renderer-directives.d.ts +1 -1
  5. package/src/lit/column-renderer-directives.js +1 -1
  6. package/src/vaadin-grid-pro-edit-checkbox.js +1 -1
  7. package/src/vaadin-grid-pro-edit-column-mixin.d.ts +19 -1
  8. package/src/vaadin-grid-pro-edit-column-mixin.js +33 -10
  9. package/src/vaadin-grid-pro-edit-column.d.ts +1 -1
  10. package/src/vaadin-grid-pro-edit-column.js +1 -1
  11. package/src/vaadin-grid-pro-edit-select-mixin.js +1 -1
  12. package/src/vaadin-grid-pro-edit-select.js +1 -1
  13. package/src/vaadin-grid-pro-edit-text-field.js +1 -1
  14. package/src/vaadin-grid-pro-inline-editing-mixin.d.ts +1 -1
  15. package/src/vaadin-grid-pro-inline-editing-mixin.js +115 -57
  16. package/src/vaadin-grid-pro.d.ts +1 -1
  17. package/src/vaadin-grid-pro.js +1 -1
  18. package/src/vaadin-lit-grid-pro-edit-checkbox.js +2 -2
  19. package/src/vaadin-lit-grid-pro-edit-column.js +2 -2
  20. package/src/vaadin-lit-grid-pro-edit-select.js +2 -2
  21. package/src/vaadin-lit-grid-pro-edit-text-field.js +2 -2
  22. package/src/vaadin-lit-grid-pro.js +2 -2
  23. package/theme/lumo/vaadin-grid-pro-edit-checkbox.d.ts +2 -0
  24. package/theme/lumo/vaadin-grid-pro-edit-column.d.ts +4 -0
  25. package/theme/lumo/vaadin-grid-pro-edit-select-styles.d.ts +2 -0
  26. package/theme/lumo/vaadin-grid-pro-edit-select.d.ts +3 -0
  27. package/theme/lumo/vaadin-grid-pro-edit-text-field-styles.d.ts +1 -0
  28. package/theme/lumo/vaadin-grid-pro-edit-text-field.d.ts +3 -0
  29. package/theme/lumo/vaadin-grid-pro-editor-styles.d.ts +5 -0
  30. package/theme/lumo/vaadin-grid-pro-styles.d.ts +2 -0
  31. package/theme/lumo/vaadin-grid-pro.d.ts +3 -0
  32. package/theme/lumo/vaadin-lit-grid-pro-edit-checkbox.d.ts +2 -0
  33. package/theme/lumo/vaadin-lit-grid-pro-edit-column.d.ts +4 -0
  34. package/theme/lumo/vaadin-lit-grid-pro-edit-select.d.ts +3 -0
  35. package/theme/lumo/vaadin-lit-grid-pro-edit-text-field.d.ts +3 -0
  36. package/theme/lumo/vaadin-lit-grid-pro.d.ts +3 -0
  37. package/theme/material/vaadin-grid-pro-edit-checkbox.d.ts +2 -0
  38. package/theme/material/vaadin-grid-pro-edit-column.d.ts +4 -0
  39. package/theme/material/vaadin-grid-pro-edit-select-styles.d.ts +1 -0
  40. package/theme/material/vaadin-grid-pro-edit-select.d.ts +3 -0
  41. package/theme/material/vaadin-grid-pro-edit-text-field-styles.d.ts +1 -0
  42. package/theme/material/vaadin-grid-pro-edit-text-field.d.ts +3 -0
  43. package/theme/material/vaadin-grid-pro-editor-styles.d.ts +2 -0
  44. package/theme/material/vaadin-grid-pro-styles.d.ts +2 -0
  45. package/theme/material/vaadin-grid-pro.d.ts +3 -0
  46. package/theme/material/vaadin-lit-grid-pro-edit-checkbox.d.ts +2 -0
  47. package/theme/material/vaadin-lit-grid-pro-edit-column.d.ts +4 -0
  48. package/theme/material/vaadin-lit-grid-pro-edit-select.d.ts +3 -0
  49. package/theme/material/vaadin-lit-grid-pro-edit-text-field.d.ts +3 -0
  50. package/theme/material/vaadin-lit-grid-pro.d.ts +3 -0
  51. package/web-types.json +910 -0
  52. package/web-types.lit.json +489 -0
@@ -0,0 +1,489 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/web-types",
3
+ "name": "@vaadin/grid-pro",
4
+ "version": "24.5.0-alpha1",
5
+ "description-markup": "markdown",
6
+ "framework": "lit",
7
+ "framework-config": {
8
+ "enable-when": {
9
+ "node-packages": [
10
+ "lit"
11
+ ]
12
+ }
13
+ },
14
+ "contributions": {
15
+ "html": {
16
+ "elements": [
17
+ {
18
+ "name": "vaadin-grid-pro-edit-column",
19
+ "description": "`<vaadin-grid-pro-edit-column>` is a helper element for the `<vaadin-grid-pro>`\nthat provides default inline editing for the items.\n\n__Note that the `path` property must be explicitly specified for edit column.__\n\n#### Example:\n```html\n<vaadin-grid-pro items=\"[[items]]\">\n <vaadin-grid-pro-edit-column path=\"name.first\"></vaadin-grid-pro-edit-column>\n\n <vaadin-grid-column>\n ...\n```",
20
+ "extension": true,
21
+ "attributes": [
22
+ {
23
+ "name": "?resizable",
24
+ "description": "When set to true, the column is user-resizable.",
25
+ "value": {
26
+ "kind": "expression"
27
+ }
28
+ },
29
+ {
30
+ "name": "?frozen",
31
+ "description": "When true, the column is frozen. When a column inside of a column group is frozen,\nall of the sibling columns inside the group will get frozen also.",
32
+ "value": {
33
+ "kind": "expression"
34
+ }
35
+ },
36
+ {
37
+ "name": "?frozenToEnd",
38
+ "description": "When true, the column is frozen to end of grid.\n\nWhen a column inside of a column group is frozen to end, all of the sibling columns\ninside the group will get frozen to end also.\n\nColumn can not be set as `frozen` and `frozenToEnd` at the same time.",
39
+ "value": {
40
+ "kind": "expression"
41
+ }
42
+ },
43
+ {
44
+ "name": "?rowHeader",
45
+ "description": "When true, the cells for this column will be rendered with the `role` attribute\nset as `rowheader`, instead of the `gridcell` role value used by default.\n\nWhen a column is set as row header, its cells will be announced by screen readers\nwhile navigating to help user identify the current row as uniquely as possible.",
46
+ "value": {
47
+ "kind": "expression"
48
+ }
49
+ },
50
+ {
51
+ "name": "?hidden",
52
+ "description": "When set to true, the cells for this column are hidden.",
53
+ "value": {
54
+ "kind": "expression"
55
+ }
56
+ },
57
+ {
58
+ "name": "?autoWidth",
59
+ "description": "Automatically sets the width of the column based on the column contents when this is set to `true`.\n\nFor performance reasons the column width is calculated automatically only once when the grid items\nare rendered for the first time and the calculation only considers the rows which are currently\nrendered in DOM (a bit more than what is currently visible). If the grid is scrolled, or the cell\ncontent changes, the column width might not match the contents anymore.\n\nHidden columns are ignored in the calculation and their widths are not automatically updated when\nyou show a column that was initially hidden.\n\nYou can manually trigger the auto sizing behavior again by calling `grid.recalculateColumnWidths()`.\n\nThe column width may still grow larger when `flexGrow` is not 0.",
60
+ "value": {
61
+ "kind": "expression"
62
+ }
63
+ },
64
+ {
65
+ "name": ".header",
66
+ "description": "Text content to display in the header cell of the column.",
67
+ "value": {
68
+ "kind": "expression"
69
+ }
70
+ },
71
+ {
72
+ "name": ".textAlign",
73
+ "description": "Aligns the columns cell content horizontally.\nSupported values: \"start\", \"center\" and \"end\".",
74
+ "value": {
75
+ "kind": "expression"
76
+ }
77
+ },
78
+ {
79
+ "name": ".headerPartName",
80
+ "description": "Custom part name for the header cell.",
81
+ "value": {
82
+ "kind": "expression"
83
+ }
84
+ },
85
+ {
86
+ "name": ".footerPartName",
87
+ "description": "Custom part name for the footer cell.",
88
+ "value": {
89
+ "kind": "expression"
90
+ }
91
+ },
92
+ {
93
+ "name": ".headerRenderer",
94
+ "description": "Custom function for rendering the header content.\nReceives two arguments:\n\n- `root` The header cell content DOM element. Append your content to it.\n- `column` The `<vaadin-grid-column>` element.",
95
+ "value": {
96
+ "kind": "expression"
97
+ }
98
+ },
99
+ {
100
+ "name": ".footerRenderer",
101
+ "description": "Custom function for rendering the footer content.\nReceives two arguments:\n\n- `root` The footer cell content DOM element. Append your content to it.\n- `column` The `<vaadin-grid-column>` element.",
102
+ "value": {
103
+ "kind": "expression"
104
+ }
105
+ },
106
+ {
107
+ "name": ".width",
108
+ "description": "Width of the cells for this column.\n\nPlease note that using the `em` length unit is discouraged as\nit might lead to misalignment issues if the header, body, and footer\ncells have different font sizes. Instead, use `rem` if you need\na length unit relative to the font size.",
109
+ "value": {
110
+ "kind": "expression"
111
+ }
112
+ },
113
+ {
114
+ "name": ".flexGrow",
115
+ "description": "Flex grow ratio for the cell widths. When set to 0, cell width is fixed.",
116
+ "value": {
117
+ "kind": "expression"
118
+ }
119
+ },
120
+ {
121
+ "name": ".renderer",
122
+ "description": "Custom function for rendering the cell content.\nReceives three arguments:\n\n- `root` The cell content DOM element. Append your content to it.\n- `column` The `<vaadin-grid-column>` element.\n- `model` The object with the properties related with\n the rendered item, contains:\n - `model.index` The index of the item.\n - `model.item` The item.\n - `model.expanded` Sublevel toggle state.\n - `model.level` Level of the tree represented with a horizontal offset of the toggle button.\n - `model.selected` Selected state.\n - `model.detailsOpened` Details opened state.",
123
+ "value": {
124
+ "kind": "expression"
125
+ }
126
+ },
127
+ {
128
+ "name": ".path",
129
+ "description": "JS Path of the property in the item used for the editable content.",
130
+ "value": {
131
+ "kind": "expression"
132
+ }
133
+ },
134
+ {
135
+ "name": ".editModeRenderer",
136
+ "description": "Custom function for rendering the cell content in edit mode.\nReceives three arguments:\n\n- `root` The cell content DOM element. Append your editor component to it.\n- `column` The `<vaadin-grid-pro-edit-column>` element.\n- `model` The object with the properties related with\n the rendered item, contains:\n - `model.index` The index of the item.\n - `model.item` The item.\n - `model.expanded` Sublevel toggle state.\n - `model.level` Level of the tree represented with a horizontal offset of the toggle button.\n - `model.selected` Selected state.\n - `model.detailsOpened` Details opened state.",
137
+ "value": {
138
+ "kind": "expression"
139
+ }
140
+ },
141
+ {
142
+ "name": ".editorOptions",
143
+ "description": "The list of options which should be passed to cell editor component.\nUsed with the `select` editor type, to provide a list of items.",
144
+ "value": {
145
+ "kind": "expression"
146
+ }
147
+ },
148
+ {
149
+ "name": ".editorType",
150
+ "description": "Type of the cell editor component to be rendered. Allowed values:\n- `text` (default) - renders a text field\n- `checkbox` - renders a checkbox\n- `select` - renders a select with a list of items passed as `editorOptions`\n\nEditor type is set to `custom` when `editModeRenderer` is set.",
151
+ "value": {
152
+ "kind": "expression"
153
+ }
154
+ },
155
+ {
156
+ "name": ".editorValuePath",
157
+ "description": "Path of the property used for the value of the editor component.",
158
+ "value": {
159
+ "kind": "expression"
160
+ }
161
+ },
162
+ {
163
+ "name": ".isCellEditable",
164
+ "description": "A function to check whether a specific cell of this column can be\nedited. This allows to disable editing of individual rows or cells,\nbased on the item.\n\nReceives a `model` object containing the item for an individual row,\nand should return a boolean indicating whether the column's cell in\nthat row is editable.\n\nThe `model` object contains:\n- `model.index` The index of the item.\n- `model.item` The item.\n- `model.expanded` Sublevel toggle state.\n- `model.level` Level of the tree represented with a horizontal offset of the toggle button.\n- `model.selected` Selected state.",
165
+ "value": {
166
+ "kind": "expression"
167
+ }
168
+ },
169
+ {
170
+ "name": "@editor-type-changed",
171
+ "description": "Fired when the `editorType` property changes.",
172
+ "value": {
173
+ "kind": "expression"
174
+ }
175
+ }
176
+ ]
177
+ },
178
+ {
179
+ "name": "vaadin-grid-pro",
180
+ "description": "`<vaadin-grid-pro>` is a high quality data grid / data table Web Component with extended functionality.\nIt extends `<vaadin-grid>` and adds extra features on top of the basic ones.\n\nSee [`<vaadin-grid>`](https://cdn.vaadin.com/vaadin-web-components/24.5.0-alpha1/#/elements/vaadin-grid) documentation for details.\n\n```\n<vaadin-grid-pro></vaadin-grid-pro>\n```\n\n### Internal components\n\nIn addition to `<vaadin-grid-pro>` itself, the following internal\ncomponents are themable:\n\n- `<vaadin-grid-pro-edit-checkbox>` - has the same API as [`<vaadin-checkbox>`](https://cdn.vaadin.com/vaadin-web-components/24.5.0-alpha1/#/elements/vaadin-checkbox).\n- `<vaadin-grid-pro-edit-text-field>` - has the same API as [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/24.5.0-alpha1/#/elements/vaadin-text-field).\n- `<vaadin-grid-pro-edit-select>` - has the same API as [`<vaadin-select>`](https://cdn.vaadin.com/vaadin-web-components/24.5.0-alpha1/#/elements/vaadin-select).",
181
+ "extension": true,
182
+ "attributes": [
183
+ {
184
+ "name": "?multiSort",
185
+ "description": "When `true`, all `<vaadin-grid-sorter>` are applied for sorting.",
186
+ "value": {
187
+ "kind": "expression"
188
+ }
189
+ },
190
+ {
191
+ "name": "?multiSortOnShiftClick",
192
+ "description": "When `true`, Shift-clicking an unsorted column's sorter adds it to the multi-sort.\nShift + Space does the same action via keyboard. This property has precedence over the\n`multiSort` property. If `multiSortOnShiftClick` is true, the multiSort property is effectively ignored.",
193
+ "value": {
194
+ "kind": "expression"
195
+ }
196
+ },
197
+ {
198
+ "name": "?columnReorderingAllowed",
199
+ "description": "Set to true to allow column reordering.",
200
+ "value": {
201
+ "kind": "expression"
202
+ }
203
+ },
204
+ {
205
+ "name": "?rowsDraggable",
206
+ "description": "Marks the grid's rows to be available for dragging.",
207
+ "value": {
208
+ "kind": "expression"
209
+ }
210
+ },
211
+ {
212
+ "name": "?allRowsVisible",
213
+ "description": "If true, the grid's height is defined by its rows.\n\nEffectively, this disables the grid's virtual scrolling so that all the rows are rendered in the DOM at once.\nIf the grid has a large number of items, using the feature is discouraged to avoid performance issues.",
214
+ "value": {
215
+ "kind": "expression"
216
+ }
217
+ },
218
+ {
219
+ "name": "?enterNextRow",
220
+ "description": "When true, pressing Enter while in cell edit mode\nwill move focus to the editable cell in the next row\n(Shift + Enter - same, but for previous row).",
221
+ "value": {
222
+ "kind": "expression"
223
+ }
224
+ },
225
+ {
226
+ "name": "?singleCellEdit",
227
+ "description": "When true, after moving to next or previous editable cell using\nTab / Shift+Tab, it will be focused without edit mode.\n\nWhen `enterNextRow` is true, pressing Enter will also\npreserve edit mode, otherwise, it will have no effect.",
228
+ "value": {
229
+ "kind": "expression"
230
+ }
231
+ },
232
+ {
233
+ "name": "?editOnClick",
234
+ "description": "When true, the grid enters cell edit mode on a single click\ninstead of the default double click.",
235
+ "value": {
236
+ "kind": "expression"
237
+ }
238
+ },
239
+ {
240
+ "name": ".activeItem",
241
+ "description": "The item user has last interacted with. Turns to `null` after user deactivates\nthe item by re-interacting with the currently active item.",
242
+ "value": {
243
+ "kind": "expression"
244
+ }
245
+ },
246
+ {
247
+ "name": ".items",
248
+ "description": "An array containing the items which will be passed to renderer functions.",
249
+ "value": {
250
+ "kind": "expression"
251
+ }
252
+ },
253
+ {
254
+ "name": ".size",
255
+ "description": "The number of root-level items in the grid.",
256
+ "value": {
257
+ "kind": "expression"
258
+ }
259
+ },
260
+ {
261
+ "name": ".pageSize",
262
+ "description": "Number of items fetched at a time from the dataprovider.",
263
+ "value": {
264
+ "kind": "expression"
265
+ }
266
+ },
267
+ {
268
+ "name": ".dataProvider",
269
+ "description": "Function that provides items lazily. Receives arguments `params`, `callback`\n\n`params.page` Requested page index\n\n`params.pageSize` Current page size\n\n`params.filters` Currently applied filters\n\n`params.sortOrders` Currently applied sorting orders\n\n`params.parentItem` When tree is used, and sublevel items\nare requested, reference to parent item of the requested sublevel.\nOtherwise `undefined`.\n\n`callback(items, size)` Callback function with arguments:\n - `items` Current page of items\n - `size` Total number of items. When tree sublevel items\n are requested, total number of items in the requested sublevel.\n Optional when tree is not used, required for tree.",
270
+ "value": {
271
+ "kind": "expression"
272
+ }
273
+ },
274
+ {
275
+ "name": ".itemHasChildrenPath",
276
+ "description": "Path to an item sub-property that indicates whether the item has child items.",
277
+ "value": {
278
+ "kind": "expression"
279
+ }
280
+ },
281
+ {
282
+ "name": ".itemIdPath",
283
+ "description": "Path to an item sub-property that identifies the item.",
284
+ "value": {
285
+ "kind": "expression"
286
+ }
287
+ },
288
+ {
289
+ "name": ".expandedItems",
290
+ "description": "An array that contains the expanded items.",
291
+ "value": {
292
+ "kind": "expression"
293
+ }
294
+ },
295
+ {
296
+ "name": ".detailsOpenedItems",
297
+ "description": "An array containing references to items with open row details.",
298
+ "value": {
299
+ "kind": "expression"
300
+ }
301
+ },
302
+ {
303
+ "name": ".rowDetailsRenderer",
304
+ "description": "Custom function for rendering the content of the row details.\nReceives three arguments:\n\n- `root` The row details content DOM element. Append your content to it.\n- `grid` The `<vaadin-grid>` element.\n- `model` The object with the properties related with\n the rendered item, contains:\n - `model.index` The index of the item.\n - `model.item` The item.\n - `model.level` The number of the item's tree sublevel, starts from 0.\n - `model.expanded` True if the item's tree sublevel is expanded.\n - `model.selected` True if the item is selected.",
305
+ "value": {
306
+ "kind": "expression"
307
+ }
308
+ },
309
+ {
310
+ "name": ".columnRendering",
311
+ "description": "Allows you to choose between modes for rendering columns in the grid:\n\n\"eager\" (default): All columns are rendered upfront, regardless of their visibility within the viewport.\nThis mode should generally be preferred, as it avoids the limitations imposed by the \"lazy\" mode.\nUse this mode unless the grid has a large number of columns and performance outweighs the limitations\nin priority.\n\n\"lazy\": Optimizes the rendering of cells when there are multiple columns in the grid by virtualizing\nhorizontal scrolling. In this mode, body cells are rendered only when their corresponding columns are\ninside the visible viewport.\n\nUsing \"lazy\" rendering should be used only if you're dealing with a large number of columns and performance\nis your highest priority. For most use cases, the default \"eager\" mode is recommended due to the\nlimitations imposed by the \"lazy\" mode.\n\nWhen using the \"lazy\" mode, keep the following limitations in mind:\n\n- Row Height: When only a number of columns are visible at once, the height of a row can only be that of\nthe highest cell currently visible on that row. Make sure each cell on a single row has the same height\nas all other cells on that row. If row cells have different heights, users may experience jumpiness when\nscrolling the grid horizontally as lazily rendered cells with different heights are scrolled into view.\n\n- Auto-width Columns: For the columns that are initially outside the visible viewport but still use auto-width,\nonly the header content is taken into account when calculating the column width because the body cells\nof the columns outside the viewport are not initially rendered.\n\n- Screen Reader Compatibility: Screen readers may not be able to associate the focused cells with the correct\nheaders when only a subset of the body cells on a row is rendered.\n\n- Keyboard Navigation: Tabbing through focusable elements inside the grid body may not work as expected because\nsome of the columns that would include focusable elements in the body cells may be outside the visible viewport\nand thus not rendered.",
312
+ "value": {
313
+ "kind": "expression"
314
+ }
315
+ },
316
+ {
317
+ "name": ".selectedItems",
318
+ "description": "An array that contains the selected items.",
319
+ "value": {
320
+ "kind": "expression"
321
+ }
322
+ },
323
+ {
324
+ "name": ".multiSortPriority",
325
+ "description": "Controls how columns are added to the sort order when using multi-sort.\nThe sort order is visually indicated by numbers in grid sorters placed in column headers.\n\nBy default, whenever an unsorted column is sorted, or the sort-direction of a column is\nchanged, that column gets sort priority 1, thus affecting the priority for all the other\nsorted columns. This is identical to using `multi-sort-priority=\"prepend\"`.\n\nUsing this property allows to change this behavior so that sorting an unsorted column\nwould add it to the \"end\" of the sort, and changing column's sort direction would retain\nit's previous priority. To set this, use `multi-sort-priority=\"append\"`.",
326
+ "value": {
327
+ "kind": "expression"
328
+ }
329
+ },
330
+ {
331
+ "name": ".cellClassNameGenerator",
332
+ "description": "A function that allows generating CSS class names for grid cells\nbased on their row and column. The return value should be the generated\nclass name as a string, or multiple class names separated by whitespace\ncharacters.\n\nReceives two arguments:\n- `column` The `<vaadin-grid-column>` element (`undefined` for details-cell).\n- `model` The object with the properties related with\n the rendered item, contains:\n - `model.index` The index of the item.\n - `model.item` The item.\n - `model.expanded` Sublevel toggle state.\n - `model.level` Level of the tree represented with a horizontal offset of the toggle button.\n - `model.selected` Selected state.",
333
+ "value": {
334
+ "kind": "expression"
335
+ }
336
+ },
337
+ {
338
+ "name": ".cellPartNameGenerator",
339
+ "description": "A function that allows generating CSS `part` names for grid cells in Shadow DOM based\non their row and column, for styling from outside using the `::part()` selector.\n\nThe return value should be the generated part name as a string, or multiple part names\nseparated by whitespace characters.\n\nReceives two arguments:\n- `column` The `<vaadin-grid-column>` element (`undefined` for details-cell).\n- `model` The object with the properties related with\n the rendered item, contains:\n - `model.index` The index of the item.\n - `model.item` The item.\n - `model.expanded` Sublevel toggle state.\n - `model.level` Level of the tree represented with a horizontal offset of the toggle button.\n - `model.selected` Selected state.",
340
+ "value": {
341
+ "kind": "expression"
342
+ }
343
+ },
344
+ {
345
+ "name": ".dropMode",
346
+ "description": "Defines the locations within the Grid row where an element can be dropped.\n\nPossible values are:\n- `between`: The drop event can happen between Grid rows.\n- `on-top`: The drop event can happen on top of Grid rows.\n- `on-top-or-between`: The drop event can happen either on top of or between Grid rows.\n- `on-grid`: The drop event will not happen on any specific row, it will show the drop target outline around the whole grid.",
347
+ "value": {
348
+ "kind": "expression"
349
+ }
350
+ },
351
+ {
352
+ "name": ".dragFilter",
353
+ "description": "A function that filters dragging of specific grid rows. The return value should be false\nif dragging of the row should be disabled.\n\nReceives one argument:\n- `model` The object with the properties related with\n the rendered item, contains:\n - `model.index` The index of the item.\n - `model.item` The item.\n - `model.expanded` Sublevel toggle state.\n - `model.level` Level of the tree represented with a horizontal offset of the toggle button.\n - `model.selected` Selected state.",
354
+ "value": {
355
+ "kind": "expression"
356
+ }
357
+ },
358
+ {
359
+ "name": ".dropFilter",
360
+ "description": "A function that filters dropping on specific grid rows. The return value should be false\nif dropping on the row should be disabled.\n\nReceives one argument:\n- `model` The object with the properties related with\n the rendered item, contains:\n - `model.index` The index of the item.\n - `model.item` The item.\n - `model.expanded` Sublevel toggle state.\n - `model.level` Level of the tree represented with a horizontal offset of the toggle button.\n - `model.selected` Selected state.",
361
+ "value": {
362
+ "kind": "expression"
363
+ }
364
+ },
365
+ {
366
+ "name": "@active-item-changed",
367
+ "description": "Fired when the `activeItem` property changes.",
368
+ "value": {
369
+ "kind": "expression"
370
+ }
371
+ },
372
+ {
373
+ "name": "@cell-activate",
374
+ "description": "Fired when the cell is activated with click or keyboard.",
375
+ "value": {
376
+ "kind": "expression"
377
+ }
378
+ },
379
+ {
380
+ "name": "@column-resize",
381
+ "description": "Fired when a column in the grid is resized by the user.",
382
+ "value": {
383
+ "kind": "expression"
384
+ }
385
+ },
386
+ {
387
+ "name": "@expanded-items-changed",
388
+ "description": "Fired when the `expandedItems` property changes.",
389
+ "value": {
390
+ "kind": "expression"
391
+ }
392
+ },
393
+ {
394
+ "name": "@loading-changed",
395
+ "description": "Fired when the `loading` property changes.",
396
+ "value": {
397
+ "kind": "expression"
398
+ }
399
+ },
400
+ {
401
+ "name": "@selected-items-changed",
402
+ "description": "Fired when the `selectedItems` property changes.",
403
+ "value": {
404
+ "kind": "expression"
405
+ }
406
+ },
407
+ {
408
+ "name": "@cell-focus",
409
+ "description": "Fired when a cell is focused with click or keyboard navigation.\n\nUse context property of @see {@link GridCellFocusEvent} to get detail information about the event.",
410
+ "value": {
411
+ "kind": "expression"
412
+ }
413
+ },
414
+ {
415
+ "name": "@column-reorder",
416
+ "description": "Fired when the columns in the grid are reordered.",
417
+ "value": {
418
+ "kind": "expression"
419
+ }
420
+ },
421
+ {
422
+ "name": "@grid-dragend",
423
+ "description": "Fired when the dragging of the rows ends.",
424
+ "value": {
425
+ "kind": "expression"
426
+ }
427
+ },
428
+ {
429
+ "name": "@grid-dragstart",
430
+ "description": "Fired when starting to drag grid rows.",
431
+ "value": {
432
+ "kind": "expression"
433
+ }
434
+ },
435
+ {
436
+ "name": "@grid-drop",
437
+ "description": "Fired when a drop occurs on top of the grid.",
438
+ "value": {
439
+ "kind": "expression"
440
+ }
441
+ },
442
+ {
443
+ "name": "@cell-edit-started",
444
+ "description": "Fired when the user starts editing a grid cell.",
445
+ "value": {
446
+ "kind": "expression"
447
+ }
448
+ },
449
+ {
450
+ "name": "@item-property-changed",
451
+ "description": "Fired before exiting the cell edit mode, if the value has been changed.\nIf the default is prevented, value change would not be applied.",
452
+ "value": {
453
+ "kind": "expression"
454
+ }
455
+ },
456
+ {
457
+ "name": "@size-changed",
458
+ "description": "Fired when the `size` property changes.",
459
+ "value": {
460
+ "kind": "expression"
461
+ }
462
+ },
463
+ {
464
+ "name": "@data-provider-changed",
465
+ "description": "Fired when the `dataProvider` property changes.",
466
+ "value": {
467
+ "kind": "expression"
468
+ }
469
+ },
470
+ {
471
+ "name": "@enter-next-row-changed",
472
+ "description": "Fired when the `enterNextRow` property changes.",
473
+ "value": {
474
+ "kind": "expression"
475
+ }
476
+ },
477
+ {
478
+ "name": "@single-cell-edit-changed",
479
+ "description": "Fired when the `singleCellEdit` property changes.",
480
+ "value": {
481
+ "kind": "expression"
482
+ }
483
+ }
484
+ ]
485
+ }
486
+ ]
487
+ }
488
+ }
489
+ }