@vaadin/radio-group 25.1.0-alpha9 → 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-radio-button-mixin.js +0 -1
- package/src/vaadin-radio-group-mixin.js +0 -3
- package/web-types.json +25 -9
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/radio-group",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-beta2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
|
-
"@vaadin/a11y-base": "25.1.0-
|
|
41
|
-
"@vaadin/component-base": "25.1.0-
|
|
42
|
-
"@vaadin/field-base": "25.1.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "25.1.0-
|
|
40
|
+
"@vaadin/a11y-base": "25.1.0-beta2",
|
|
41
|
+
"@vaadin/component-base": "25.1.0-beta2",
|
|
42
|
+
"@vaadin/field-base": "25.1.0-beta2",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
|
|
44
44
|
"lit": "^3.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@vaadin/aura": "25.1.0-
|
|
48
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
49
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
47
|
+
"@vaadin/aura": "25.1.0-beta2",
|
|
48
|
+
"@vaadin/chai-plugins": "25.1.0-beta2",
|
|
49
|
+
"@vaadin/test-runner-commands": "25.1.0-beta2",
|
|
50
50
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
51
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
51
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
|
|
52
52
|
"sinon": "^21.0.0"
|
|
53
53
|
},
|
|
54
54
|
"customElements": "custom-elements.json",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
|
|
60
60
|
}
|
|
@@ -36,7 +36,6 @@ export const RadioGroupMixin = (superclass) =>
|
|
|
36
36
|
/**
|
|
37
37
|
* The value of the radio group.
|
|
38
38
|
*
|
|
39
|
-
* @type {string}
|
|
40
39
|
*/
|
|
41
40
|
value: {
|
|
42
41
|
type: String,
|
|
@@ -52,7 +51,6 @@ export const RadioGroupMixin = (superclass) =>
|
|
|
52
51
|
* While the `disabled` property disables all radio buttons inside the group,
|
|
53
52
|
* the `readonly` property disables only unchecked ones.
|
|
54
53
|
*
|
|
55
|
-
* @type {boolean}
|
|
56
54
|
*/
|
|
57
55
|
readonly: {
|
|
58
56
|
type: Boolean,
|
|
@@ -63,7 +61,6 @@ export const RadioGroupMixin = (superclass) =>
|
|
|
63
61
|
},
|
|
64
62
|
|
|
65
63
|
/**
|
|
66
|
-
* @type {string}
|
|
67
64
|
* @private
|
|
68
65
|
*/
|
|
69
66
|
_fieldName: {
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/radio-group",
|
|
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": "True if the element is checked.",
|
|
27
27
|
"value": {
|
|
28
28
|
"type": [
|
|
29
|
-
"boolean"
|
|
29
|
+
"boolean",
|
|
30
|
+
"null",
|
|
31
|
+
"undefined"
|
|
30
32
|
]
|
|
31
33
|
}
|
|
32
34
|
},
|
|
@@ -57,7 +59,9 @@
|
|
|
57
59
|
"description": "The name of the radio button.",
|
|
58
60
|
"value": {
|
|
59
61
|
"type": [
|
|
60
|
-
"string"
|
|
62
|
+
"string",
|
|
63
|
+
"null",
|
|
64
|
+
"undefined"
|
|
61
65
|
]
|
|
62
66
|
}
|
|
63
67
|
},
|
|
@@ -102,7 +106,9 @@
|
|
|
102
106
|
"description": "True if the element is checked.",
|
|
103
107
|
"value": {
|
|
104
108
|
"type": [
|
|
105
|
-
"boolean"
|
|
109
|
+
"boolean",
|
|
110
|
+
"null",
|
|
111
|
+
"undefined"
|
|
106
112
|
]
|
|
107
113
|
}
|
|
108
114
|
},
|
|
@@ -133,7 +139,9 @@
|
|
|
133
139
|
"description": "The name of the radio button.",
|
|
134
140
|
"value": {
|
|
135
141
|
"type": [
|
|
136
|
-
"string"
|
|
142
|
+
"string",
|
|
143
|
+
"null",
|
|
144
|
+
"undefined"
|
|
137
145
|
]
|
|
138
146
|
}
|
|
139
147
|
},
|
|
@@ -269,7 +277,9 @@
|
|
|
269
277
|
"description": "When present, the user cannot modify the value of the radio group.\nThe property works similarly to the `disabled` property.\nWhile the `disabled` property disables all radio buttons inside the group,\nthe `readonly` property disables only unchecked ones.",
|
|
270
278
|
"value": {
|
|
271
279
|
"type": [
|
|
272
|
-
"boolean"
|
|
280
|
+
"boolean",
|
|
281
|
+
"null",
|
|
282
|
+
"undefined"
|
|
273
283
|
]
|
|
274
284
|
}
|
|
275
285
|
},
|
|
@@ -300,7 +310,9 @@
|
|
|
300
310
|
"description": "The value of the radio group.",
|
|
301
311
|
"value": {
|
|
302
312
|
"type": [
|
|
303
|
-
"string"
|
|
313
|
+
"string",
|
|
314
|
+
"null",
|
|
315
|
+
"undefined"
|
|
304
316
|
]
|
|
305
317
|
}
|
|
306
318
|
}
|
|
@@ -411,7 +423,9 @@
|
|
|
411
423
|
"description": "When present, the user cannot modify the value of the radio group.\nThe property works similarly to the `disabled` property.\nWhile the `disabled` property disables all radio buttons inside the group,\nthe `readonly` property disables only unchecked ones.",
|
|
412
424
|
"value": {
|
|
413
425
|
"type": [
|
|
414
|
-
"boolean"
|
|
426
|
+
"boolean",
|
|
427
|
+
"null",
|
|
428
|
+
"undefined"
|
|
415
429
|
]
|
|
416
430
|
}
|
|
417
431
|
},
|
|
@@ -431,7 +445,9 @@
|
|
|
431
445
|
"description": "The value of the radio group.",
|
|
432
446
|
"value": {
|
|
433
447
|
"type": [
|
|
434
|
-
"string"
|
|
448
|
+
"string",
|
|
449
|
+
"null",
|
|
450
|
+
"undefined"
|
|
435
451
|
]
|
|
436
452
|
}
|
|
437
453
|
}
|