@vaadin/grid-pro 25.1.2 → 25.2.0-alpha10
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/custom-elements.json +28 -7
- package/package.json +14 -14
- package/src/vaadin-grid-pro-edit-column-mixin.js +0 -1
- package/src/vaadin-grid-pro-edit-column.d.ts +3 -1
- package/src/vaadin-grid-pro-edit-select-mixin.js +2 -2
- package/src/vaadin-grid-pro-inline-editing-mixin.js +4 -28
- package/src/vaadin-grid-pro.d.ts +1 -1
- package/src/vaadin-grid-pro.js +1 -1
- package/web-types.json +93 -216
- package/web-types.lit.json +95 -109
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/grid-pro",
|
|
4
|
-
"version": "25.
|
|
4
|
+
"version": "25.2.0-alpha10",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -26,41 +26,6 @@
|
|
|
26
26
|
"kind": "expression"
|
|
27
27
|
}
|
|
28
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": "?hidden",
|
|
45
|
-
"description": "When set to true, the cells for this column are hidden.",
|
|
46
|
-
"value": {
|
|
47
|
-
"kind": "expression"
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"name": "?resizable",
|
|
52
|
-
"description": "When set to true, the column is user-resizable.",
|
|
53
|
-
"value": {
|
|
54
|
-
"kind": "expression"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"name": "?rowHeader",
|
|
59
|
-
"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.",
|
|
60
|
-
"value": {
|
|
61
|
-
"kind": "expression"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
29
|
{
|
|
65
30
|
"name": ".editModeRenderer",
|
|
66
31
|
"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.",
|
|
@@ -110,6 +75,20 @@
|
|
|
110
75
|
"kind": "expression"
|
|
111
76
|
}
|
|
112
77
|
},
|
|
78
|
+
{
|
|
79
|
+
"name": "?frozen",
|
|
80
|
+
"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.",
|
|
81
|
+
"value": {
|
|
82
|
+
"kind": "expression"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "?frozenToEnd",
|
|
87
|
+
"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.",
|
|
88
|
+
"value": {
|
|
89
|
+
"kind": "expression"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
113
92
|
{
|
|
114
93
|
"name": ".header",
|
|
115
94
|
"description": "Text content to display in the header cell of the column.",
|
|
@@ -131,6 +110,13 @@
|
|
|
131
110
|
"kind": "expression"
|
|
132
111
|
}
|
|
133
112
|
},
|
|
113
|
+
{
|
|
114
|
+
"name": "?hidden",
|
|
115
|
+
"description": "When set to true, the cells for this column are hidden.",
|
|
116
|
+
"value": {
|
|
117
|
+
"kind": "expression"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
134
120
|
{
|
|
135
121
|
"name": ".isCellEditable",
|
|
136
122
|
"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.",
|
|
@@ -153,22 +139,29 @@
|
|
|
153
139
|
}
|
|
154
140
|
},
|
|
155
141
|
{
|
|
156
|
-
"name": "
|
|
157
|
-
"description": "
|
|
142
|
+
"name": "?resizable",
|
|
143
|
+
"description": "When set to true, the column is user-resizable.",
|
|
158
144
|
"value": {
|
|
159
145
|
"kind": "expression"
|
|
160
146
|
}
|
|
161
147
|
},
|
|
162
148
|
{
|
|
163
|
-
"name": "
|
|
164
|
-
"description": "
|
|
149
|
+
"name": "?rowHeader",
|
|
150
|
+
"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.",
|
|
151
|
+
"value": {
|
|
152
|
+
"kind": "expression"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": ".textAlign",
|
|
157
|
+
"description": "Aligns the columns cell content horizontally.\nSupported values: \"start\", \"center\" and \"end\".",
|
|
165
158
|
"value": {
|
|
166
159
|
"kind": "expression"
|
|
167
160
|
}
|
|
168
161
|
},
|
|
169
162
|
{
|
|
170
|
-
"name": "
|
|
171
|
-
"description": "
|
|
163
|
+
"name": ".width",
|
|
164
|
+
"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.",
|
|
172
165
|
"value": {
|
|
173
166
|
"kind": "expression"
|
|
174
167
|
}
|
|
@@ -177,124 +170,103 @@
|
|
|
177
170
|
},
|
|
178
171
|
{
|
|
179
172
|
"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/25.
|
|
173
|
+
"description": "\n`<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/25.2.0-alpha10/#/elements/vaadin-grid) documentation for details.\n\n```html\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/25.2.0-alpha10/#/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/25.2.0-alpha10/#/elements/vaadin-text-field).\n- `<vaadin-grid-pro-edit-select>` - has the same API as [`<vaadin-select>`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha10/#/elements/vaadin-select).",
|
|
181
174
|
"extension": true,
|
|
182
175
|
"attributes": [
|
|
183
176
|
{
|
|
184
|
-
"name": "
|
|
185
|
-
"description": "
|
|
186
|
-
"value": {
|
|
187
|
-
"kind": "expression"
|
|
188
|
-
}
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"name": "?columnReorderingAllowed",
|
|
192
|
-
"description": "Set to true to allow column reordering.",
|
|
193
|
-
"value": {
|
|
194
|
-
"kind": "expression"
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"name": "?editOnClick",
|
|
199
|
-
"description": "When true, the grid enters cell edit mode on a single click\ninstead of the default double click.",
|
|
200
|
-
"value": {
|
|
201
|
-
"kind": "expression"
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
"name": "?enterNextRow",
|
|
206
|
-
"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).",
|
|
177
|
+
"name": ".accessibleName",
|
|
178
|
+
"description": "String used to label the grid to screen reader users.",
|
|
207
179
|
"value": {
|
|
208
180
|
"kind": "expression"
|
|
209
181
|
}
|
|
210
182
|
},
|
|
211
183
|
{
|
|
212
|
-
"name": "
|
|
213
|
-
"description": "
|
|
184
|
+
"name": ".activeItem",
|
|
185
|
+
"description": "The item user has last interacted with. Turns to `null` after user deactivates\nthe item by re-interacting with the currently active item.",
|
|
214
186
|
"value": {
|
|
215
187
|
"kind": "expression"
|
|
216
188
|
}
|
|
217
189
|
},
|
|
218
190
|
{
|
|
219
|
-
"name": "?
|
|
220
|
-
"description": "
|
|
191
|
+
"name": "?allRowsVisible",
|
|
192
|
+
"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.",
|
|
221
193
|
"value": {
|
|
222
194
|
"kind": "expression"
|
|
223
195
|
}
|
|
224
196
|
},
|
|
225
197
|
{
|
|
226
|
-
"name": "
|
|
227
|
-
"description": "
|
|
198
|
+
"name": ".cellPartNameGenerator",
|
|
199
|
+
"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.",
|
|
228
200
|
"value": {
|
|
229
201
|
"kind": "expression"
|
|
230
202
|
}
|
|
231
203
|
},
|
|
232
204
|
{
|
|
233
|
-
"name": "
|
|
234
|
-
"description": "
|
|
205
|
+
"name": ".columnRendering",
|
|
206
|
+
"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.",
|
|
235
207
|
"value": {
|
|
236
208
|
"kind": "expression"
|
|
237
209
|
}
|
|
238
210
|
},
|
|
239
211
|
{
|
|
240
|
-
"name": "
|
|
241
|
-
"description": "
|
|
212
|
+
"name": "?columnReorderingAllowed",
|
|
213
|
+
"description": "Set to true to allow column reordering.",
|
|
242
214
|
"value": {
|
|
243
215
|
"kind": "expression"
|
|
244
216
|
}
|
|
245
217
|
},
|
|
246
218
|
{
|
|
247
|
-
"name": ".
|
|
248
|
-
"description": "
|
|
219
|
+
"name": ".dataProvider",
|
|
220
|
+
"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.",
|
|
249
221
|
"value": {
|
|
250
222
|
"kind": "expression"
|
|
251
223
|
}
|
|
252
224
|
},
|
|
253
225
|
{
|
|
254
|
-
"name": ".
|
|
255
|
-
"description": "
|
|
226
|
+
"name": ".detailsOpenedItems",
|
|
227
|
+
"description": "An array containing references to items with open row details.",
|
|
256
228
|
"value": {
|
|
257
229
|
"kind": "expression"
|
|
258
230
|
}
|
|
259
231
|
},
|
|
260
232
|
{
|
|
261
|
-
"name": "
|
|
262
|
-
"description": "
|
|
233
|
+
"name": "?disabled",
|
|
234
|
+
"description": "If true, the user cannot interact with this element.",
|
|
263
235
|
"value": {
|
|
264
236
|
"kind": "expression"
|
|
265
237
|
}
|
|
266
238
|
},
|
|
267
239
|
{
|
|
268
|
-
"name": ".
|
|
269
|
-
"description": "
|
|
240
|
+
"name": ".dragFilter",
|
|
241
|
+
"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.",
|
|
270
242
|
"value": {
|
|
271
243
|
"kind": "expression"
|
|
272
244
|
}
|
|
273
245
|
},
|
|
274
246
|
{
|
|
275
|
-
"name": ".
|
|
276
|
-
"description": "
|
|
247
|
+
"name": ".dropFilter",
|
|
248
|
+
"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.",
|
|
277
249
|
"value": {
|
|
278
250
|
"kind": "expression"
|
|
279
251
|
}
|
|
280
252
|
},
|
|
281
253
|
{
|
|
282
|
-
"name": ".
|
|
283
|
-
"description": "
|
|
254
|
+
"name": ".dropMode",
|
|
255
|
+
"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.",
|
|
284
256
|
"value": {
|
|
285
257
|
"kind": "expression"
|
|
286
258
|
}
|
|
287
259
|
},
|
|
288
260
|
{
|
|
289
|
-
"name": "
|
|
290
|
-
"description": "
|
|
261
|
+
"name": "?editOnClick",
|
|
262
|
+
"description": "When true, the grid enters cell edit mode on a single click\ninstead of the default double click.",
|
|
291
263
|
"value": {
|
|
292
264
|
"kind": "expression"
|
|
293
265
|
}
|
|
294
266
|
},
|
|
295
267
|
{
|
|
296
|
-
"name": "
|
|
297
|
-
"description": "
|
|
268
|
+
"name": "?enterNextRow",
|
|
269
|
+
"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).",
|
|
298
270
|
"value": {
|
|
299
271
|
"kind": "expression"
|
|
300
272
|
}
|
|
@@ -334,6 +306,20 @@
|
|
|
334
306
|
"kind": "expression"
|
|
335
307
|
}
|
|
336
308
|
},
|
|
309
|
+
{
|
|
310
|
+
"name": "?multiSort",
|
|
311
|
+
"description": "When `true`, all `<vaadin-grid-sorter>` are applied for sorting.",
|
|
312
|
+
"value": {
|
|
313
|
+
"kind": "expression"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "?multiSortOnShiftClick",
|
|
318
|
+
"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.",
|
|
319
|
+
"value": {
|
|
320
|
+
"kind": "expression"
|
|
321
|
+
}
|
|
322
|
+
},
|
|
337
323
|
{
|
|
338
324
|
"name": ".multiSortPriority",
|
|
339
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\"`.",
|
|
@@ -355,6 +341,13 @@
|
|
|
355
341
|
"kind": "expression"
|
|
356
342
|
}
|
|
357
343
|
},
|
|
344
|
+
{
|
|
345
|
+
"name": "?rowsDraggable",
|
|
346
|
+
"description": "Marks the grid's rows to be available for dragging.",
|
|
347
|
+
"value": {
|
|
348
|
+
"kind": "expression"
|
|
349
|
+
}
|
|
350
|
+
},
|
|
358
351
|
{
|
|
359
352
|
"name": ".selectedItems",
|
|
360
353
|
"description": "An array that contains the selected items.",
|
|
@@ -362,6 +355,13 @@
|
|
|
362
355
|
"kind": "expression"
|
|
363
356
|
}
|
|
364
357
|
},
|
|
358
|
+
{
|
|
359
|
+
"name": "?singleCellEdit",
|
|
360
|
+
"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.",
|
|
361
|
+
"value": {
|
|
362
|
+
"kind": "expression"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
365
|
{
|
|
366
366
|
"name": ".size",
|
|
367
367
|
"description": "The number of root-level items in the grid.",
|
|
@@ -392,7 +392,7 @@
|
|
|
392
392
|
},
|
|
393
393
|
{
|
|
394
394
|
"name": "@cell-focus",
|
|
395
|
-
"description": "Fired when a cell is focused with click or keyboard navigation
|
|
395
|
+
"description": "Fired when a cell is focused with click or keyboard navigation. Use the `context` property to read event details.",
|
|
396
396
|
"value": {
|
|
397
397
|
"kind": "expression"
|
|
398
398
|
}
|
|
@@ -406,7 +406,7 @@
|
|
|
406
406
|
},
|
|
407
407
|
{
|
|
408
408
|
"name": "@column-resize",
|
|
409
|
-
"description": "Fired when
|
|
409
|
+
"description": "Fired when the grid column resize is finished.",
|
|
410
410
|
"value": {
|
|
411
411
|
"kind": "expression"
|
|
412
412
|
}
|
|
@@ -418,13 +418,6 @@
|
|
|
418
418
|
"kind": "expression"
|
|
419
419
|
}
|
|
420
420
|
},
|
|
421
|
-
{
|
|
422
|
-
"name": "@enter-next-row-changed",
|
|
423
|
-
"description": "Fired when the `enterNextRow` property changes.",
|
|
424
|
-
"value": {
|
|
425
|
-
"kind": "expression"
|
|
426
|
-
}
|
|
427
|
-
},
|
|
428
421
|
{
|
|
429
422
|
"name": "@expanded-items-changed",
|
|
430
423
|
"description": "Fired when the `expandedItems` property changes.",
|
|
@@ -455,7 +448,7 @@
|
|
|
455
448
|
},
|
|
456
449
|
{
|
|
457
450
|
"name": "@item-property-changed",
|
|
458
|
-
"description": "Fired before exiting
|
|
451
|
+
"description": "Fired before exiting cell edit mode if the value has been changed. If the default is prevented, the value change is not applied.",
|
|
459
452
|
"value": {
|
|
460
453
|
"kind": "expression"
|
|
461
454
|
}
|
|
@@ -481,13 +474,6 @@
|
|
|
481
474
|
"kind": "expression"
|
|
482
475
|
}
|
|
483
476
|
},
|
|
484
|
-
{
|
|
485
|
-
"name": "@single-cell-edit-changed",
|
|
486
|
-
"description": "Fired when the `singleCellEdit` property changes.",
|
|
487
|
-
"value": {
|
|
488
|
-
"kind": "expression"
|
|
489
|
-
}
|
|
490
|
-
},
|
|
491
477
|
{
|
|
492
478
|
"name": "@size-changed",
|
|
493
479
|
"description": "Fired when the `size` property changes.",
|