@vaadin/checkbox 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 +10 -10
- package/src/vaadin-checkbox-mixin.js +0 -2
- package/web-types.json +19 -7
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/checkbox",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-beta2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,18 +35,18 @@
|
|
|
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/field-base": "25.1.0-
|
|
41
|
-
"@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/field-base": "25.1.0-beta2",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
|
|
42
42
|
"lit": "^3.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@vaadin/aura": "25.1.0-
|
|
46
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
47
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
45
|
+
"@vaadin/aura": "25.1.0-beta2",
|
|
46
|
+
"@vaadin/chai-plugins": "25.1.0-beta2",
|
|
47
|
+
"@vaadin/test-runner-commands": "25.1.0-beta2",
|
|
48
48
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
|
|
50
50
|
"sinon": "^21.0.0"
|
|
51
51
|
},
|
|
52
52
|
"customElements": "custom-elements.json",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
|
|
58
58
|
}
|
|
@@ -34,7 +34,6 @@ export const CheckboxMixin = (superclass) =>
|
|
|
34
34
|
*
|
|
35
35
|
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#Indeterminate_state_checkboxes
|
|
36
36
|
*
|
|
37
|
-
* @type {boolean}
|
|
38
37
|
*/
|
|
39
38
|
indeterminate: {
|
|
40
39
|
type: Boolean,
|
|
@@ -46,7 +45,6 @@ export const CheckboxMixin = (superclass) =>
|
|
|
46
45
|
/**
|
|
47
46
|
* The name of the checkbox.
|
|
48
47
|
*
|
|
49
|
-
* @type {string}
|
|
50
48
|
*/
|
|
51
49
|
name: {
|
|
52
50
|
type: String,
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/checkbox",
|
|
4
|
-
"version": "25.1.0-
|
|
4
|
+
"version": "25.1.0-beta2",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -48,7 +48,9 @@
|
|
|
48
48
|
"description": "True if the element is checked.",
|
|
49
49
|
"value": {
|
|
50
50
|
"type": [
|
|
51
|
-
"boolean"
|
|
51
|
+
"boolean",
|
|
52
|
+
"null",
|
|
53
|
+
"undefined"
|
|
52
54
|
]
|
|
53
55
|
}
|
|
54
56
|
},
|
|
@@ -90,7 +92,9 @@
|
|
|
90
92
|
"description": "True if the checkbox is in the indeterminate state which means\nit is not possible to say whether it is checked or unchecked.\nThe state is reset once the user switches the checkbox by hand.\n\nhttps://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#Indeterminate_state_checkboxes",
|
|
91
93
|
"value": {
|
|
92
94
|
"type": [
|
|
93
|
-
"boolean"
|
|
95
|
+
"boolean",
|
|
96
|
+
"null",
|
|
97
|
+
"undefined"
|
|
94
98
|
]
|
|
95
99
|
}
|
|
96
100
|
},
|
|
@@ -132,7 +136,9 @@
|
|
|
132
136
|
"description": "The name of the checkbox.",
|
|
133
137
|
"value": {
|
|
134
138
|
"type": [
|
|
135
|
-
"string"
|
|
139
|
+
"string",
|
|
140
|
+
"null",
|
|
141
|
+
"undefined"
|
|
136
142
|
]
|
|
137
143
|
}
|
|
138
144
|
},
|
|
@@ -221,7 +227,9 @@
|
|
|
221
227
|
"description": "True if the element is checked.",
|
|
222
228
|
"value": {
|
|
223
229
|
"type": [
|
|
224
|
-
"boolean"
|
|
230
|
+
"boolean",
|
|
231
|
+
"null",
|
|
232
|
+
"undefined"
|
|
225
233
|
]
|
|
226
234
|
}
|
|
227
235
|
},
|
|
@@ -263,7 +271,9 @@
|
|
|
263
271
|
"description": "True if the checkbox is in the indeterminate state which means\nit is not possible to say whether it is checked or unchecked.\nThe state is reset once the user switches the checkbox by hand.\n\nhttps://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#Indeterminate_state_checkboxes",
|
|
264
272
|
"value": {
|
|
265
273
|
"type": [
|
|
266
|
-
"boolean"
|
|
274
|
+
"boolean",
|
|
275
|
+
"null",
|
|
276
|
+
"undefined"
|
|
267
277
|
]
|
|
268
278
|
}
|
|
269
279
|
},
|
|
@@ -305,7 +315,9 @@
|
|
|
305
315
|
"description": "The name of the checkbox.",
|
|
306
316
|
"value": {
|
|
307
317
|
"type": [
|
|
308
|
-
"string"
|
|
318
|
+
"string",
|
|
319
|
+
"null",
|
|
320
|
+
"undefined"
|
|
309
321
|
]
|
|
310
322
|
}
|
|
311
323
|
},
|