@vaadin/grid-pro
Advanced tools
Comparing version 24.6.0-alpha2 to 24.6.0-alpha3
{ | ||
"name": "@vaadin/grid-pro", | ||
"version": "24.6.0-alpha2", | ||
"version": "24.6.0-alpha3", | ||
"publishConfig": { | ||
@@ -42,15 +42,15 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/checkbox": "24.6.0-alpha2", | ||
"@vaadin/component-base": "24.6.0-alpha2", | ||
"@vaadin/grid": "24.6.0-alpha2", | ||
"@vaadin/lit-renderer": "24.6.0-alpha2", | ||
"@vaadin/select": "24.6.0-alpha2", | ||
"@vaadin/text-field": "24.6.0-alpha2", | ||
"@vaadin/vaadin-lumo-styles": "24.6.0-alpha2", | ||
"@vaadin/vaadin-material-styles": "24.6.0-alpha2", | ||
"@vaadin/vaadin-themable-mixin": "24.6.0-alpha2", | ||
"@vaadin/checkbox": "24.6.0-alpha3", | ||
"@vaadin/component-base": "24.6.0-alpha3", | ||
"@vaadin/grid": "24.6.0-alpha3", | ||
"@vaadin/lit-renderer": "24.6.0-alpha3", | ||
"@vaadin/select": "24.6.0-alpha3", | ||
"@vaadin/text-field": "24.6.0-alpha3", | ||
"@vaadin/vaadin-lumo-styles": "24.6.0-alpha3", | ||
"@vaadin/vaadin-material-styles": "24.6.0-alpha3", | ||
"@vaadin/vaadin-themable-mixin": "24.6.0-alpha3", | ||
"lit": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"@vaadin/chai-plugins": "24.6.0-alpha2", | ||
"@vaadin/chai-plugins": "24.6.0-alpha3", | ||
"@vaadin/testing-helpers": "^1.0.0", | ||
@@ -64,3 +64,3 @@ "sinon": "^18.0.0" | ||
], | ||
"gitHead": "21fa9ea077a04949a90d00934bfefe3e346bd129" | ||
"gitHead": "f917e587caaf86b3d55598233811409b0f34ff69" | ||
} |
@@ -511,3 +511,3 @@ /** | ||
} else { | ||
this._ensureScrolledToIndex(nextIndex); | ||
this.__ensureFlatIndexInViewport(nextIndex); | ||
nextCell.focus(); | ||
@@ -514,0 +514,0 @@ } |
{ | ||
"$schema": "https://json.schemastore.org/web-types", | ||
"name": "@vaadin/grid-pro", | ||
"version": "24.6.0-alpha2", | ||
"version": "24.6.0-alpha3", | ||
"description-markup": "markdown", | ||
@@ -404,3 +404,3 @@ "contributions": { | ||
"name": "vaadin-grid-pro", | ||
"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.6.0-alpha2/#/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.6.0-alpha2/#/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.6.0-alpha2/#/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.6.0-alpha2/#/elements/vaadin-select).", | ||
"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.6.0-alpha3/#/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.6.0-alpha3/#/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.6.0-alpha3/#/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.6.0-alpha3/#/elements/vaadin-select).", | ||
"attributes": [ | ||
@@ -690,2 +690,13 @@ { | ||
{ | ||
"name": "isItemSelectable", | ||
"description": "A function to check whether a specific item in the grid may be\nselected or deselected by the user. Used by the selection column to\nconditionally enable to disable checkboxes for individual items. This\nfunction does not prevent programmatic selection/deselection of\nitems. Changing the function does not modify the currently selected\nitems.\n\nConfiguring this function hides the select all checkbox of the grid\nselection column, which means users can not select or deselect all\nitems anymore, nor do they get feedback on whether all items are\nselected or not.\n\nReceives an item instance and should return a boolean indicating\nwhether users may change the selection state of that item.", | ||
"value": { | ||
"type": [ | ||
"Function", | ||
"null", | ||
"undefined" | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "multiSort", | ||
@@ -899,2 +910,6 @@ "description": "When `true`, all `<vaadin-grid-sorter>` are applied for sorting.", | ||
{ | ||
"name": "is-item-selectable-changed", | ||
"description": "Fired when the `isItemSelectable` property changes." | ||
}, | ||
{ | ||
"name": "enter-next-row-changed", | ||
@@ -901,0 +916,0 @@ "description": "Fired when the `enterNextRow` property changes." |
{ | ||
"$schema": "https://json.schemastore.org/web-types", | ||
"name": "@vaadin/grid-pro", | ||
"version": "24.6.0-alpha2", | ||
"version": "24.6.0-alpha3", | ||
"description-markup": "markdown", | ||
@@ -180,3 +180,3 @@ "framework": "lit", | ||
"name": "vaadin-grid-pro", | ||
"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.6.0-alpha2/#/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.6.0-alpha2/#/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.6.0-alpha2/#/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.6.0-alpha2/#/elements/vaadin-select).", | ||
"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.6.0-alpha3/#/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.6.0-alpha3/#/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.6.0-alpha3/#/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.6.0-alpha3/#/elements/vaadin-select).", | ||
"extension": true, | ||
@@ -325,2 +325,9 @@ "attributes": [ | ||
{ | ||
"name": ".isItemSelectable", | ||
"description": "A function to check whether a specific item in the grid may be\nselected or deselected by the user. Used by the selection column to\nconditionally enable to disable checkboxes for individual items. This\nfunction does not prevent programmatic selection/deselection of\nitems. Changing the function does not modify the currently selected\nitems.\n\nConfiguring this function hides the select all checkbox of the grid\nselection column, which means users can not select or deselect all\nitems anymore, nor do they get feedback on whether all items are\nselected or not.\n\nReceives an item instance and should return a boolean indicating\nwhether users may change the selection state of that item.", | ||
"value": { | ||
"kind": "expression" | ||
} | ||
}, | ||
{ | ||
"name": ".multiSortPriority", | ||
@@ -473,2 +480,9 @@ "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\"`.", | ||
{ | ||
"name": "@is-item-selectable-changed", | ||
"description": "Fired when the `isItemSelectable` property changes.", | ||
"value": { | ||
"kind": "expression" | ||
} | ||
}, | ||
{ | ||
"name": "@enter-next-row-changed", | ||
@@ -475,0 +489,0 @@ "description": "Fired when the `enterNextRow` property changes.", |
151399
3414
+ Added@vaadin/a11y-base@24.6.0-alpha3(transitive)
+ Added@vaadin/button@24.6.0-alpha3(transitive)
+ Added@vaadin/checkbox@24.6.0-alpha3(transitive)
+ Added@vaadin/component-base@24.6.0-alpha3(transitive)
+ Added@vaadin/field-base@24.6.0-alpha3(transitive)
+ Added@vaadin/grid@24.6.0-alpha3(transitive)
+ Added@vaadin/icon@24.6.0-alpha3(transitive)
+ Added@vaadin/input-container@24.6.0-alpha3(transitive)
+ Added@vaadin/item@24.6.0-alpha3(transitive)
+ Added@vaadin/list-box@24.6.0-alpha3(transitive)
+ Added@vaadin/lit-renderer@24.6.0-alpha3(transitive)
+ Added@vaadin/overlay@24.6.0-alpha3(transitive)
+ Added@vaadin/select@24.6.0-alpha3(transitive)
+ Added@vaadin/text-field@24.6.0-alpha3(transitive)
+ Added@vaadin/vaadin-lumo-styles@24.6.0-alpha3(transitive)
+ Added@vaadin/vaadin-material-styles@24.6.0-alpha3(transitive)
+ Added@vaadin/vaadin-themable-mixin@24.6.0-alpha3(transitive)
- Removed@vaadin/a11y-base@24.6.0-alpha2(transitive)
- Removed@vaadin/button@24.6.0-alpha2(transitive)
- Removed@vaadin/checkbox@24.6.0-alpha2(transitive)
- Removed@vaadin/component-base@24.6.0-alpha2(transitive)
- Removed@vaadin/field-base@24.6.0-alpha2(transitive)
- Removed@vaadin/grid@24.6.0-alpha2(transitive)
- Removed@vaadin/icon@24.6.0-alpha2(transitive)
- Removed@vaadin/input-container@24.6.0-alpha2(transitive)
- Removed@vaadin/item@24.6.0-alpha2(transitive)
- Removed@vaadin/list-box@24.6.0-alpha2(transitive)
- Removed@vaadin/lit-renderer@24.6.0-alpha2(transitive)
- Removed@vaadin/overlay@24.6.0-alpha2(transitive)
- Removed@vaadin/select@24.6.0-alpha2(transitive)
- Removed@vaadin/text-field@24.6.0-alpha2(transitive)
- Removed@vaadin/vaadin-lumo-styles@24.6.0-alpha2(transitive)
- Removed@vaadin/vaadin-material-styles@24.6.0-alpha2(transitive)
- Removed@vaadin/vaadin-themable-mixin@24.6.0-alpha2(transitive)
Updated@vaadin/grid@24.6.0-alpha3
Updated@vaadin/select@24.6.0-alpha3