@vaadin/grid-pro 24.4.0-alpha17 → 24.4.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 +11 -11
- package/src/vaadin-grid-pro-edit-column-mixin.js +5 -2
- package/theme/lumo/vaadin-grid-pro-edit-checkbox.d.ts +0 -2
- package/theme/lumo/vaadin-grid-pro-edit-column.d.ts +0 -4
- package/theme/lumo/vaadin-grid-pro-edit-select-styles.d.ts +0 -2
- package/theme/lumo/vaadin-grid-pro-edit-select.d.ts +0 -3
- package/theme/lumo/vaadin-grid-pro-edit-text-field-styles.d.ts +0 -1
- package/theme/lumo/vaadin-grid-pro-edit-text-field.d.ts +0 -3
- package/theme/lumo/vaadin-grid-pro-editor-styles.d.ts +0 -5
- package/theme/lumo/vaadin-grid-pro-styles.d.ts +0 -2
- package/theme/lumo/vaadin-grid-pro.d.ts +0 -3
- package/theme/lumo/vaadin-lit-grid-pro-edit-checkbox.d.ts +0 -2
- package/theme/lumo/vaadin-lit-grid-pro-edit-column.d.ts +0 -4
- package/theme/lumo/vaadin-lit-grid-pro-edit-select.d.ts +0 -3
- package/theme/lumo/vaadin-lit-grid-pro-edit-text-field.d.ts +0 -3
- package/theme/lumo/vaadin-lit-grid-pro.d.ts +0 -3
- package/theme/material/vaadin-grid-pro-edit-checkbox.d.ts +0 -2
- package/theme/material/vaadin-grid-pro-edit-column.d.ts +0 -4
- package/theme/material/vaadin-grid-pro-edit-select-styles.d.ts +0 -1
- package/theme/material/vaadin-grid-pro-edit-select.d.ts +0 -3
- package/theme/material/vaadin-grid-pro-edit-text-field-styles.d.ts +0 -1
- package/theme/material/vaadin-grid-pro-edit-text-field.d.ts +0 -3
- package/theme/material/vaadin-grid-pro-editor-styles.d.ts +0 -2
- package/theme/material/vaadin-grid-pro-styles.d.ts +0 -2
- package/theme/material/vaadin-grid-pro.d.ts +0 -3
- package/theme/material/vaadin-lit-grid-pro-edit-checkbox.d.ts +0 -2
- package/theme/material/vaadin-lit-grid-pro-edit-column.d.ts +0 -4
- package/theme/material/vaadin-lit-grid-pro-edit-select.d.ts +0 -3
- package/theme/material/vaadin-lit-grid-pro-edit-text-field.d.ts +0 -3
- package/theme/material/vaadin-lit-grid-pro.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/grid-pro",
|
|
3
|
-
"version": "24.4.0-
|
|
3
|
+
"version": "24.4.0-alpha19",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/checkbox": "24.4.0-
|
|
43
|
-
"@vaadin/component-base": "24.4.0-
|
|
44
|
-
"@vaadin/grid": "24.4.0-
|
|
45
|
-
"@vaadin/lit-renderer": "24.4.0-
|
|
46
|
-
"@vaadin/select": "24.4.0-
|
|
47
|
-
"@vaadin/text-field": "24.4.0-
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "24.4.0-
|
|
49
|
-
"@vaadin/vaadin-material-styles": "24.4.0-
|
|
50
|
-
"@vaadin/vaadin-themable-mixin": "24.4.0-
|
|
42
|
+
"@vaadin/checkbox": "24.4.0-alpha19",
|
|
43
|
+
"@vaadin/component-base": "24.4.0-alpha19",
|
|
44
|
+
"@vaadin/grid": "24.4.0-alpha19",
|
|
45
|
+
"@vaadin/lit-renderer": "24.4.0-alpha19",
|
|
46
|
+
"@vaadin/select": "24.4.0-alpha19",
|
|
47
|
+
"@vaadin/text-field": "24.4.0-alpha19",
|
|
48
|
+
"@vaadin/vaadin-lumo-styles": "24.4.0-alpha19",
|
|
49
|
+
"@vaadin/vaadin-material-styles": "24.4.0-alpha19",
|
|
50
|
+
"@vaadin/vaadin-themable-mixin": "24.4.0-alpha19",
|
|
51
51
|
"lit": "^3.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "5fad5eb53de7da69c1a19776a11ba74ceba27ea0"
|
|
64
64
|
}
|
|
@@ -267,8 +267,11 @@ export const GridProEditColumnMixin = (superClass) =>
|
|
|
267
267
|
this._setEditorValue(editor, get(this.path, model.item));
|
|
268
268
|
editor._grid = this._grid;
|
|
269
269
|
|
|
270
|
-
|
|
271
|
-
|
|
270
|
+
if (editor.updateComplete) {
|
|
271
|
+
editor.updateComplete.then(() => this._focusEditor(editor));
|
|
272
|
+
} else {
|
|
273
|
+
this._focusEditor(editor);
|
|
274
|
+
}
|
|
272
275
|
}
|
|
273
276
|
|
|
274
277
|
/**
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|