@vaadin/grid-pro 24.8.0-alpha9 → 24.8.0-rc1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/grid-pro",
3
- "version": "24.8.0-alpha9",
3
+ "version": "24.8.0-rc1",
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-alpha9",
43
- "@vaadin/component-base": "24.8.0-alpha9",
44
- "@vaadin/grid": "24.8.0-alpha9",
45
- "@vaadin/lit-renderer": "24.8.0-alpha9",
46
- "@vaadin/select": "24.8.0-alpha9",
47
- "@vaadin/text-field": "24.8.0-alpha9",
48
- "@vaadin/vaadin-lumo-styles": "24.8.0-alpha9",
49
- "@vaadin/vaadin-material-styles": "24.8.0-alpha9",
50
- "@vaadin/vaadin-themable-mixin": "24.8.0-alpha9",
42
+ "@vaadin/checkbox": "24.8.0-rc1",
43
+ "@vaadin/component-base": "24.8.0-rc1",
44
+ "@vaadin/grid": "24.8.0-rc1",
45
+ "@vaadin/lit-renderer": "24.8.0-rc1",
46
+ "@vaadin/select": "24.8.0-rc1",
47
+ "@vaadin/text-field": "24.8.0-rc1",
48
+ "@vaadin/vaadin-lumo-styles": "24.8.0-rc1",
49
+ "@vaadin/vaadin-material-styles": "24.8.0-rc1",
50
+ "@vaadin/vaadin-themable-mixin": "24.8.0-rc1",
51
51
  "lit": "^3.0.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@vaadin/chai-plugins": "24.8.0-alpha9",
55
- "@vaadin/test-runner-commands": "24.8.0-alpha9",
54
+ "@vaadin/chai-plugins": "24.8.0-rc1",
55
+ "@vaadin/test-runner-commands": "24.8.0-rc1",
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": "4de3809275ddfd733b0d13fd02af8faf73eb6770"
64
+ "gitHead": "901d3eb9224983fd81e222e2fa5c7c207f9a6e46"
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 items="[[items]]">
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 items="[[items]]">
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>
@@ -102,7 +102,7 @@ export const GridProEditSelectMixin = (superClass) =>
102
102
  value: option,
103
103
  }));
104
104
 
105
- this._overlayElement ||= this.shadowRoot.querySelector('vaadin-select-overlay');
105
+ this._overlayElement = this._overlayElement || this.shadowRoot.querySelector('vaadin-select-overlay');
106
106
  this._overlayElement.addEventListener('vaadin-overlay-outside-click', () => {
107
107
  this._grid._stopEdit();
108
108
  });
@@ -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
- * LitElement based version of `<vaadin-grid-pro-edit-checkbox>` web component.
15
+ * An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
16
16
  *
17
- * ## Disclaimer
18
- *
19
- * This component is an experiment and not yet a part of Vaadin platform.
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
- * LitElement based version of `<vaadin-grid-pro-edit-select>` web component.
16
+ * An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
17
17
  *
18
- * ## Disclaimer
19
- *
20
- * This component is an experiment and not yet a part of Vaadin platform.
21
- * There is no ETA regarding specific Vaadin version where it'll land.
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
- * LitElement based version of `<vaadin-grid-pro-edit-text-field>` web component.
15
+ * An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
16
16
  *
17
- * ## Disclaimer
18
- *
19
- * This component is an experiment and not yet a part of Vaadin platform.
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-alpha9",
4
+ "version": "24.8.0-rc1",
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 items=\"[[items]]\">\n <vaadin-grid-pro-edit-column path=\"name.first\"></vaadin-grid-pro-edit-column>\n\n <vaadin-grid-column>\n ...\n```",
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-alpha9/#/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-alpha9/#/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-alpha9/#/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-alpha9/#/elements/vaadin-select).",
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-rc1/#/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-rc1/#/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-rc1/#/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-rc1/#/elements/vaadin-select).",
405
405
  "attributes": [
406
406
  {
407
407
  "name": "accessible-name",
@@ -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-alpha9",
4
+ "version": "24.8.0-rc1",
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 items=\"[[items]]\">\n <vaadin-grid-pro-edit-column path=\"name.first\"></vaadin-grid-pro-edit-column>\n\n <vaadin-grid-column>\n ...\n```",
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-alpha9/#/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-alpha9/#/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-alpha9/#/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-alpha9/#/elements/vaadin-select).",
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-rc1/#/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-rc1/#/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-rc1/#/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-rc1/#/elements/vaadin-select).",
181
181
  "extension": true,
182
182
  "attributes": [
183
183
  {