@vaadin/item 25.1.0-beta1 → 25.1.0-beta2
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 +9 -9
- package/src/vaadin-item-mixin.js +0 -2
- package/web-types.json +7 -3
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/item",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-beta2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,17 +35,17 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.1.0-
|
|
39
|
-
"@vaadin/component-base": "25.1.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "25.1.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.1.0-beta2",
|
|
39
|
+
"@vaadin/component-base": "25.1.0-beta2",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
|
|
41
41
|
"lit": "^3.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@vaadin/aura": "25.1.0-
|
|
45
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
46
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
44
|
+
"@vaadin/aura": "25.1.0-beta2",
|
|
45
|
+
"@vaadin/chai-plugins": "25.1.0-beta2",
|
|
46
|
+
"@vaadin/test-runner-commands": "25.1.0-beta2",
|
|
47
47
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
48
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
|
|
49
49
|
"sinon": "^21.0.0"
|
|
50
50
|
},
|
|
51
51
|
"customElements": "custom-elements.json",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"web-types.json",
|
|
54
54
|
"web-types.lit.json"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
|
|
57
57
|
}
|
package/src/vaadin-item-mixin.js
CHANGED
|
@@ -23,7 +23,6 @@ export const ItemMixin = (superClass) =>
|
|
|
23
23
|
* Used for mixin detection because `instanceof` does not work with mixins.
|
|
24
24
|
* e.g. in VaadinListMixin it filters items by using the
|
|
25
25
|
* `element._hasVaadinItemMixin` condition.
|
|
26
|
-
* @type {boolean}
|
|
27
26
|
*/
|
|
28
27
|
_hasVaadinItemMixin: {
|
|
29
28
|
value: true,
|
|
@@ -31,7 +30,6 @@ export const ItemMixin = (superClass) =>
|
|
|
31
30
|
|
|
32
31
|
/**
|
|
33
32
|
* If true, the item is in selected state.
|
|
34
|
-
* @type {boolean}
|
|
35
33
|
*/
|
|
36
34
|
selected: {
|
|
37
35
|
type: Boolean,
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/item",
|
|
4
|
-
"version": "25.1.0-
|
|
4
|
+
"version": "25.1.0-beta2",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
"description": "If true, the item is in selected state.",
|
|
27
27
|
"value": {
|
|
28
28
|
"type": [
|
|
29
|
-
"boolean"
|
|
29
|
+
"boolean",
|
|
30
|
+
"null",
|
|
31
|
+
"undefined"
|
|
30
32
|
]
|
|
31
33
|
}
|
|
32
34
|
},
|
|
@@ -69,7 +71,9 @@
|
|
|
69
71
|
"description": "If true, the item is in selected state.",
|
|
70
72
|
"value": {
|
|
71
73
|
"type": [
|
|
72
|
-
"boolean"
|
|
74
|
+
"boolean",
|
|
75
|
+
"null",
|
|
76
|
+
"undefined"
|
|
73
77
|
]
|
|
74
78
|
}
|
|
75
79
|
},
|