@vaadin/grid-pro 24.3.0-alpha10 → 24.3.0-alpha11

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.3.0-alpha10",
3
+ "version": "24.3.0-alpha11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -27,9 +27,7 @@
27
27
  "vaadin-*.d.ts",
28
28
  "vaadin-*.js",
29
29
  "web-types.json",
30
- "web-types.lit.json",
31
- "!vaadin-lit-*.d.ts",
32
- "!vaadin-lit-*.js"
30
+ "web-types.lit.json"
33
31
  ],
34
32
  "keywords": [
35
33
  "Vaadin",
@@ -41,15 +39,15 @@
41
39
  "dependencies": {
42
40
  "@open-wc/dedupe-mixin": "^1.3.0",
43
41
  "@polymer/polymer": "^3.0.0",
44
- "@vaadin/checkbox": "24.3.0-alpha10",
45
- "@vaadin/component-base": "24.3.0-alpha10",
46
- "@vaadin/grid": "24.3.0-alpha10",
47
- "@vaadin/lit-renderer": "24.3.0-alpha10",
48
- "@vaadin/select": "24.3.0-alpha10",
49
- "@vaadin/text-field": "24.3.0-alpha10",
50
- "@vaadin/vaadin-lumo-styles": "24.3.0-alpha10",
51
- "@vaadin/vaadin-material-styles": "24.3.0-alpha10",
52
- "@vaadin/vaadin-themable-mixin": "24.3.0-alpha10"
42
+ "@vaadin/checkbox": "24.3.0-alpha11",
43
+ "@vaadin/component-base": "24.3.0-alpha11",
44
+ "@vaadin/grid": "24.3.0-alpha11",
45
+ "@vaadin/lit-renderer": "24.3.0-alpha11",
46
+ "@vaadin/select": "24.3.0-alpha11",
47
+ "@vaadin/text-field": "24.3.0-alpha11",
48
+ "@vaadin/vaadin-lumo-styles": "24.3.0-alpha11",
49
+ "@vaadin/vaadin-material-styles": "24.3.0-alpha11",
50
+ "@vaadin/vaadin-themable-mixin": "24.3.0-alpha11"
53
51
  },
54
52
  "devDependencies": {
55
53
  "@esm-bundle/chai": "^4.3.4",
@@ -62,5 +60,5 @@
62
60
  "web-types.json",
63
61
  "web-types.lit.json"
64
62
  ],
65
- "gitHead": "0271523d93fe5df0425ff64206886614f3c6f401"
63
+ "gitHead": "123cf569a1b6ef6f4ef5fe8e60cb8d988699b98c"
66
64
  }
@@ -18,7 +18,6 @@ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
18
18
  *
19
19
  * This component is an experiment not intended for publishing to npm.
20
20
  * There is no ETA regarding specific Vaadin version where it'll land.
21
- * Feel free to try this code in your apps as per Apache 2.0 license.
22
21
  */
23
22
  class GridProEditCheckbox extends Checkbox {
24
23
  static get is() {
@@ -0,0 +1,34 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2000 - 2023 Vaadin Ltd.
4
+ *
5
+ * This program is available under Vaadin Commercial License and Service Terms.
6
+ *
7
+ *
8
+ * See https://vaadin.com/commercial-license-and-service-terms for the full
9
+ * license.
10
+ */
11
+ import './vaadin-lit-grid-pro-edit-checkbox.js';
12
+ import './vaadin-lit-grid-pro-edit-select.js';
13
+ import './vaadin-lit-grid-pro-edit-text-field.js';
14
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
15
+ import { GridColumn } from '@vaadin/grid/src/vaadin-lit-grid-column.js';
16
+ import { GridProEditColumnMixin } from './vaadin-grid-pro-edit-column-mixin.js';
17
+
18
+ /**
19
+ * LitElement based version of `<vaadin-grid-pro-edit-column>` web component.
20
+ *
21
+ * ## Disclaimer
22
+ *
23
+ * This component is an experiment not intended for publishing to npm.
24
+ * There is no ETA regarding specific Vaadin version where it'll land.
25
+ */
26
+ class GridProEditColumn extends GridProEditColumnMixin(GridColumn) {
27
+ static get is() {
28
+ return 'vaadin-grid-pro-edit-column';
29
+ }
30
+ }
31
+
32
+ defineCustomElement(GridProEditColumn);
33
+
34
+ export { GridProEditColumn };
@@ -19,7 +19,6 @@ import { GridProEditSelectMixin } from './vaadin-grid-pro-edit-select-mixin.js';
19
19
  *
20
20
  * This component is an experiment not intended for publishing to npm.
21
21
  * There is no ETA regarding specific Vaadin version where it'll land.
22
- * Feel free to try this code in your apps as per Apache 2.0 license.
23
22
  */
24
23
  class GridProEditSelect extends GridProEditSelectMixin(Select) {
25
24
  static get is() {
@@ -18,7 +18,6 @@ import { TextField } from '@vaadin/text-field/src/vaadin-lit-text-field.js';
18
18
  *
19
19
  * This component is an experiment not intended for publishing to npm.
20
20
  * There is no ETA regarding specific Vaadin version where it'll land.
21
- * Feel free to try this code in your apps as per Apache 2.0 license.
22
21
  */
23
22
  class GridProEditText extends TextField {
24
23
  static get is() {
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2000 - 2023 Vaadin Ltd.
4
+ *
5
+ * This program is available under Vaadin Commercial License and Service Terms.
6
+ *
7
+ *
8
+ * See https://vaadin.com/commercial-license-and-service-terms for the full
9
+ * license.
10
+ */
11
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
12
+ import { Grid } from '@vaadin/grid/src/vaadin-lit-grid.js';
13
+ import { InlineEditingMixin } from './vaadin-grid-pro-inline-editing-mixin.js';
14
+
15
+ /**
16
+ * LitElement based version of `<vaadin-grid-pro>` web component.
17
+ *
18
+ * ## Disclaimer
19
+ *
20
+ * This component is an experiment not intended for publishing to npm.
21
+ * There is no ETA regarding specific Vaadin version where it'll land.
22
+ */
23
+ class GridPro extends InlineEditingMixin(Grid) {
24
+ static get is() {
25
+ return 'vaadin-grid-pro';
26
+ }
27
+
28
+ static get cvdlName() {
29
+ return 'vaadin-grid-pro';
30
+ }
31
+ }
32
+
33
+ defineCustomElement(GridPro);
34
+
35
+ export { GridPro };
@@ -0,0 +1,4 @@
1
+ import './vaadin-lit-grid-pro-edit-checkbox.js';
2
+ import './vaadin-lit-grid-pro-edit-select.js';
3
+ import './vaadin-lit-grid-pro-edit-text-field.js';
4
+ import '../../src/vaadin-lit-grid-pro-edit-column.js';
@@ -0,0 +1,3 @@
1
+ import '@vaadin/grid/theme/lumo/vaadin-grid-styles.js';
2
+ import './vaadin-grid-pro-styles.js';
3
+ import '../../src/vaadin-lit-grid-pro.js';
@@ -0,0 +1,4 @@
1
+ import './vaadin-lit-grid-pro-edit-checkbox.js';
2
+ import './vaadin-lit-grid-pro-edit-select.js';
3
+ import './vaadin-lit-grid-pro-edit-text-field.js';
4
+ import '../../src/vaadin-lit-grid-pro-edit-column.js';
@@ -0,0 +1,3 @@
1
+ import '@vaadin/grid/theme/material/vaadin-grid-styles.js';
2
+ import './vaadin-grid-pro-styles.js';
3
+ import '../../src/vaadin-lit-grid-pro.js';
@@ -0,0 +1 @@
1
+ export * from './src/vaadin-grid-pro-edit-column.js';
@@ -0,0 +1,3 @@
1
+ import './theme/lumo/vaadin-lit-grid-pro-edit-column.js';
2
+
3
+ export * from './src/vaadin-lit-grid-pro-edit-column.js';
@@ -0,0 +1 @@
1
+ export * from './src/vaadin-grid-pro.js';
@@ -0,0 +1,3 @@
1
+ import './theme/lumo/vaadin-lit-grid-pro.js';
2
+
3
+ export * from './src/vaadin-lit-grid-pro.js';
package/web-types.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.3.0-alpha10",
4
+ "version": "24.3.0-alpha11",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -390,7 +390,7 @@
390
390
  },
391
391
  {
392
392
  "name": "vaadin-grid-pro",
393
- "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.3.0-alpha10/#/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.3.0-alpha10/#/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.3.0-alpha10/#/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.3.0-alpha10/#/elements/vaadin-select).",
393
+ "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.3.0-alpha11/#/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.3.0-alpha11/#/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.3.0-alpha11/#/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.3.0-alpha11/#/elements/vaadin-select).",
394
394
  "attributes": [
395
395
  {
396
396
  "name": "size",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/grid-pro",
4
- "version": "24.3.0-alpha10",
4
+ "version": "24.3.0-alpha11",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -170,7 +170,7 @@
170
170
  },
171
171
  {
172
172
  "name": "vaadin-grid-pro",
173
- "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.3.0-alpha10/#/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.3.0-alpha10/#/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.3.0-alpha10/#/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.3.0-alpha10/#/elements/vaadin-select).",
173
+ "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.3.0-alpha11/#/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.3.0-alpha11/#/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.3.0-alpha11/#/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.3.0-alpha11/#/elements/vaadin-select).",
174
174
  "extension": true,
175
175
  "attributes": [
176
176
  {