Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export declare class GridSelectionColumnBaseMixinClass<TItem> {
selectAll: boolean;

/**
* When true, the active gets automatically selected.
* When true, the active item gets automatically selected.
* @attr {boolean} auto-select
*/
autoSelect: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const GridSelectionColumnBaseMixin = (superClass) =>
},

/**
* When true, the active gets automatically selected.
* When true, the active item gets automatically selected.
* @attr {boolean} auto-select
* @type {boolean}
*/
Expand Down
2 changes: 2 additions & 0 deletions packages/grid/src/vaadin-grid-selection-column.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ export * from './vaadin-grid-selection-column-mixin.js';
* selection for all the items at once.
*
* __The default content can also be overridden__
*
* @fires {CustomEvent} select-all-changed - Fired when the `selectAll` property changes.
*/
declare class GridSelectionColumn<TItem = GridDefaultItem> extends HTMLElement {}

Expand Down
3 changes: 2 additions & 1 deletion packages/grid/src/vaadin-grid-selection-column.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ import { GridSelectionColumnMixin } from './vaadin-grid-selection-column-mixin.j
*
* __The default content can also be overridden__
*
* @customElement
* @fires {CustomEvent} select-all-changed - Fired when the `selectAll` property changes.
*
* @customElement
* @extends GridColumn
* @mixes GridSelectionColumnMixin
*/
Expand Down
2 changes: 2 additions & 0 deletions packages/grid/src/vaadin-grid-sort-column.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export * from './vaadin-grid-sort-column-mixin.js';
* <vaadin-grid-column>
* ...
* ```
*
* @fires {CustomEvent} direction-changed - Fired when the `direction` property changes.
*/
declare class GridSortColumn<TItem = GridDefaultItem> extends HTMLElement {}

Expand Down
1 change: 1 addition & 0 deletions packages/grid/src/vaadin-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ registerStyles('vaadin-grid', gridStyles, { moduleId: 'vaadin-grid-styles' });
* @fires {CustomEvent} loading-changed - Fired when the `loading` property changes.
* @fires {CustomEvent} selected-items-changed - Fired when the `selectedItems` property changes.
* @fires {CustomEvent} size-changed - Fired when the `size` property changes.
* @fires {CustomEvent} item-toggle - Fired when the user selects or deselects an item through the selection column.
*
* @customElement
* @extends HTMLElement
Expand Down