@vaadin/grid 25.2.0-alpha1 → 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 +53 -1
- package/package.json +12 -12
- package/src/vaadin-grid-a11y-mixin.js +2 -2
- package/src/vaadin-grid-active-item-mixin.js +0 -12
- package/src/vaadin-grid-column-auto-width-mixin.js +1 -2
- package/src/vaadin-grid-column-group.d.ts +3 -1
- package/src/vaadin-grid-column-mixin.js +2 -2
- package/src/vaadin-grid-column-reordering-mixin.js +33 -11
- package/src/vaadin-grid-column-resizing-mixin.js +0 -8
- package/src/vaadin-grid-column.d.ts +5 -2
- package/src/vaadin-grid-data-provider-mixin.js +0 -28
- package/src/vaadin-grid-drag-and-drop-mixin.js +1 -41
- package/src/vaadin-grid-dynamic-columns-mixin.js +1 -1
- package/src/vaadin-grid-event-context-mixin.js +1 -1
- package/src/vaadin-grid-filter-column.d.ts +3 -1
- package/src/vaadin-grid-helpers.js +1 -1
- package/src/vaadin-grid-keyboard-navigation-mixin.js +1 -9
- package/src/vaadin-grid-mixin.js +5 -7
- package/src/vaadin-grid-row-details-mixin.js +30 -13
- package/src/vaadin-grid-selection-column.d.ts +3 -1
- package/src/vaadin-grid-selection-mixin.js +8 -17
- package/src/vaadin-grid-sort-column.d.ts +3 -1
- package/src/vaadin-grid-tree-column.d.ts +3 -1
- package/src/vaadin-grid.d.ts +1 -1
- package/src/vaadin-grid.js +1 -1
- package/web-types.json +401 -769
- package/web-types.lit.json +251 -230
|
@@ -20,7 +20,9 @@ import type { GridTreeColumnMixinClass } from './vaadin-grid-tree-column-mixin.j
|
|
|
20
20
|
* ...
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
|
-
declare class GridTreeColumn<TItem = GridDefaultItem> extends HTMLElement {
|
|
23
|
+
declare class GridTreeColumn<TItem = GridDefaultItem> extends HTMLElement {
|
|
24
|
+
hidden: boolean;
|
|
25
|
+
}
|
|
24
26
|
|
|
25
27
|
interface GridTreeColumn<TItem = GridDefaultItem>
|
|
26
28
|
extends GridTreeColumnMixinClass<TItem>, GridColumnMixin<TItem, GridColumn<TItem>>, GridColumn<TItem> {}
|
package/src/vaadin-grid.d.ts
CHANGED
|
@@ -251,7 +251,7 @@ export type GridDefaultItem = any;
|
|
|
251
251
|
*
|
|
252
252
|
* @fires {CustomEvent} active-item-changed - Fired when the `activeItem` property changes.
|
|
253
253
|
* @fires {CustomEvent} cell-activate - Fired when the cell is activated with click or keyboard.
|
|
254
|
-
* @fires {CustomEvent} cell-focus - Fired when a cell is focused with click or keyboard navigation.
|
|
254
|
+
* @fires {CustomEvent} cell-focus - Fired when a cell is focused with click or keyboard navigation. Use the `context` property to read event details.
|
|
255
255
|
* @fires {CustomEvent} column-reorder - Fired when the columns in the grid are reordered.
|
|
256
256
|
* @fires {CustomEvent} column-resize - Fired when the grid column resize is finished.
|
|
257
257
|
* @fires {CustomEvent} data-provider-changed - Fired when the `dataProvider` property changes.
|
package/src/vaadin-grid.js
CHANGED
|
@@ -252,7 +252,7 @@ import { GridMixin } from './vaadin-grid-mixin.js';
|
|
|
252
252
|
*
|
|
253
253
|
* @fires {CustomEvent} active-item-changed - Fired when the `activeItem` property changes.
|
|
254
254
|
* @fires {CustomEvent} cell-activate - Fired when the cell is activated with click or keyboard.
|
|
255
|
-
* @fires {CustomEvent} cell-focus - Fired when a cell is focused with click or keyboard navigation.
|
|
255
|
+
* @fires {CustomEvent} cell-focus - Fired when a cell is focused with click or keyboard navigation. Use the `context` property to read event details.
|
|
256
256
|
* @fires {CustomEvent} column-reorder - Fired when the columns in the grid are reordered.
|
|
257
257
|
* @fires {CustomEvent} column-resize - Fired when the grid column resize is finished.
|
|
258
258
|
* @fires {CustomEvent} data-provider-changed - Fired when the `dataProvider` property changes.
|