@vaadin/grid-pro 24.8.0-alpha17 → 24.8.0-alpha19
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/package.json +13 -13
- package/src/vaadin-grid-pro-edit-column.d.ts +1 -1
- package/src/vaadin-grid-pro-edit-column.js +1 -1
- package/src/vaadin-lit-grid-pro-edit-checkbox.js +4 -5
- package/src/vaadin-lit-grid-pro-edit-select.js +5 -5
- package/src/vaadin-lit-grid-pro-edit-text-field.js +4 -5
- package/web-types.json +3 -3
- package/web-types.lit.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/grid-pro",
|
|
3
|
-
"version": "24.8.0-
|
|
3
|
+
"version": "24.8.0-alpha19",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,20 +39,20 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/checkbox": "24.8.0-
|
|
43
|
-
"@vaadin/component-base": "24.8.0-
|
|
44
|
-
"@vaadin/grid": "24.8.0-
|
|
45
|
-
"@vaadin/lit-renderer": "24.8.0-
|
|
46
|
-
"@vaadin/select": "24.8.0-
|
|
47
|
-
"@vaadin/text-field": "24.8.0-
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "24.8.0-
|
|
49
|
-
"@vaadin/vaadin-material-styles": "24.8.0-
|
|
50
|
-
"@vaadin/vaadin-themable-mixin": "24.8.0-
|
|
42
|
+
"@vaadin/checkbox": "24.8.0-alpha19",
|
|
43
|
+
"@vaadin/component-base": "24.8.0-alpha19",
|
|
44
|
+
"@vaadin/grid": "24.8.0-alpha19",
|
|
45
|
+
"@vaadin/lit-renderer": "24.8.0-alpha19",
|
|
46
|
+
"@vaadin/select": "24.8.0-alpha19",
|
|
47
|
+
"@vaadin/text-field": "24.8.0-alpha19",
|
|
48
|
+
"@vaadin/vaadin-lumo-styles": "24.8.0-alpha19",
|
|
49
|
+
"@vaadin/vaadin-material-styles": "24.8.0-alpha19",
|
|
50
|
+
"@vaadin/vaadin-themable-mixin": "24.8.0-alpha19",
|
|
51
51
|
"lit": "^3.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@vaadin/chai-plugins": "24.8.0-
|
|
55
|
-
"@vaadin/test-runner-commands": "24.8.0-
|
|
54
|
+
"@vaadin/chai-plugins": "24.8.0-alpha19",
|
|
55
|
+
"@vaadin/test-runner-commands": "24.8.0-alpha19",
|
|
56
56
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
57
57
|
"sinon": "^18.0.0"
|
|
58
58
|
},
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"web-types.json",
|
|
62
62
|
"web-types.lit.json"
|
|
63
63
|
],
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "b66da924889a1316f7881742a13b80e1c95a4cc4"
|
|
65
65
|
}
|
|
@@ -22,7 +22,7 @@ export * from './vaadin-grid-pro-edit-column-mixin.js';
|
|
|
22
22
|
*
|
|
23
23
|
* #### Example:
|
|
24
24
|
* ```html
|
|
25
|
-
* <vaadin-grid-pro
|
|
25
|
+
* <vaadin-grid-pro>
|
|
26
26
|
* <vaadin-grid-pro-edit-column path="name.first"></vaadin-grid-pro-edit-column>
|
|
27
27
|
*
|
|
28
28
|
* <vaadin-grid-column>
|
|
@@ -23,7 +23,7 @@ import { GridProEditColumnMixin } from './vaadin-grid-pro-edit-column-mixin.js';
|
|
|
23
23
|
*
|
|
24
24
|
* #### Example:
|
|
25
25
|
* ```html
|
|
26
|
-
* <vaadin-grid-pro
|
|
26
|
+
* <vaadin-grid-pro>
|
|
27
27
|
* <vaadin-grid-pro-edit-column path="name.first"></vaadin-grid-pro-edit-column>
|
|
28
28
|
*
|
|
29
29
|
* <vaadin-grid-column>
|
|
@@ -12,12 +12,11 @@ import { Checkbox } from '@vaadin/checkbox/src/vaadin-lit-checkbox.js';
|
|
|
12
12
|
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
|
|
16
16
|
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
* There is no ETA regarding specific Vaadin version where it'll land.
|
|
17
|
+
* @customElement
|
|
18
|
+
* @extends Checkbox
|
|
19
|
+
* @private
|
|
21
20
|
*/
|
|
22
21
|
class GridProEditCheckbox extends Checkbox {
|
|
23
22
|
static get is() {
|
|
@@ -13,12 +13,12 @@ import { Select } from '@vaadin/select/src/vaadin-lit-select.js';
|
|
|
13
13
|
import { GridProEditSelectMixin } from './vaadin-grid-pro-edit-select-mixin.js';
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
|
|
17
17
|
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
18
|
+
* @customElement
|
|
19
|
+
* @extends Select
|
|
20
|
+
* @mixes GridProEditSelectMixin
|
|
21
|
+
* @private
|
|
22
22
|
*/
|
|
23
23
|
class GridProEditSelect extends GridProEditSelectMixin(Select) {
|
|
24
24
|
static get is() {
|
|
@@ -12,12 +12,11 @@ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
|
12
12
|
import { TextField } from '@vaadin/text-field/src/vaadin-lit-text-field.js';
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
|
|
16
16
|
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
* There is no ETA regarding specific Vaadin version where it'll land.
|
|
17
|
+
* @customElement
|
|
18
|
+
* @extends TextField
|
|
19
|
+
* @private
|
|
21
20
|
*/
|
|
22
21
|
class GridProEditText extends TextField {
|
|
23
22
|
static get is() {
|
package/web-types.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/grid-pro",
|
|
4
|
-
"version": "24.8.0-
|
|
4
|
+
"version": "24.8.0-alpha19",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "vaadin-grid-pro-edit-column",
|
|
11
|
-
"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
|
|
11
|
+
"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>\n <vaadin-grid-pro-edit-column path=\"name.first\"></vaadin-grid-pro-edit-column>\n\n <vaadin-grid-column>\n ...\n```",
|
|
12
12
|
"attributes": [
|
|
13
13
|
{
|
|
14
14
|
"name": "resizable",
|
|
@@ -401,7 +401,7 @@
|
|
|
401
401
|
},
|
|
402
402
|
{
|
|
403
403
|
"name": "vaadin-grid-pro",
|
|
404
|
-
"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.8.0-
|
|
404
|
+
"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.8.0-alpha19/#/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.8.0-alpha19/#/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.8.0-alpha19/#/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.8.0-alpha19/#/elements/vaadin-select).",
|
|
405
405
|
"attributes": [
|
|
406
406
|
{
|
|
407
407
|
"name": "accessible-name",
|
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": "24.8.0-
|
|
4
|
+
"version": "24.8.0-alpha19",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"elements": [
|
|
17
17
|
{
|
|
18
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
|
|
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>\n <vaadin-grid-pro-edit-column path=\"name.first\"></vaadin-grid-pro-edit-column>\n\n <vaadin-grid-column>\n ...\n```",
|
|
20
20
|
"extension": true,
|
|
21
21
|
"attributes": [
|
|
22
22
|
{
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
},
|
|
178
178
|
{
|
|
179
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.8.0-
|
|
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.8.0-alpha19/#/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.8.0-alpha19/#/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.8.0-alpha19/#/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.8.0-alpha19/#/elements/vaadin-select).",
|
|
181
181
|
"extension": true,
|
|
182
182
|
"attributes": [
|
|
183
183
|
{
|