@vaadin/radio-group 24.3.0-alpha1 → 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 +14 -9
- package/src/vaadin-radio-button-mixin.d.ts +50 -0
- package/src/vaadin-radio-button-mixin.js +79 -0
- package/src/vaadin-radio-button-styles.d.ts +8 -0
- package/src/vaadin-radio-button-styles.js +78 -0
- package/src/vaadin-radio-button.d.ts +3 -30
- package/src/vaadin-radio-button.js +7 -126
- package/src/vaadin-radio-group-mixin.d.ts +68 -0
- package/src/vaadin-radio-group-mixin.js +424 -0
- package/src/vaadin-radio-group-styles.d.ts +8 -0
- package/src/vaadin-radio-group-styles.js +37 -0
- package/src/vaadin-radio-group.d.ts +3 -61
- package/src/vaadin-radio-group.js +8 -465
- package/theme/lumo/vaadin-radio-button-styles.js +15 -9
- package/web-types.json +21 -51
- package/web-types.lit.json +9 -30
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": "24.3.0-
|
|
4
|
+
"version": "24.3.0-alpha11",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -33,22 +33,22 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
"name": "
|
|
37
|
-
"description": "
|
|
36
|
+
"name": "checked",
|
|
37
|
+
"description": "True if the element is checked.",
|
|
38
38
|
"value": {
|
|
39
39
|
"type": [
|
|
40
|
-
"boolean"
|
|
41
|
-
"null",
|
|
42
|
-
"undefined"
|
|
40
|
+
"boolean"
|
|
43
41
|
]
|
|
44
42
|
}
|
|
45
43
|
},
|
|
46
44
|
{
|
|
47
|
-
"name": "
|
|
48
|
-
"description": "
|
|
45
|
+
"name": "autofocus",
|
|
46
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
49
47
|
"value": {
|
|
50
48
|
"type": [
|
|
51
|
-
"boolean"
|
|
49
|
+
"boolean",
|
|
50
|
+
"null",
|
|
51
|
+
"undefined"
|
|
52
52
|
]
|
|
53
53
|
}
|
|
54
54
|
},
|
|
@@ -109,22 +109,22 @@
|
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
|
-
"name": "
|
|
113
|
-
"description": "
|
|
112
|
+
"name": "checked",
|
|
113
|
+
"description": "True if the element is checked.",
|
|
114
114
|
"value": {
|
|
115
115
|
"type": [
|
|
116
|
-
"boolean"
|
|
117
|
-
"null",
|
|
118
|
-
"undefined"
|
|
116
|
+
"boolean"
|
|
119
117
|
]
|
|
120
118
|
}
|
|
121
119
|
},
|
|
122
120
|
{
|
|
123
|
-
"name": "
|
|
124
|
-
"description": "
|
|
121
|
+
"name": "autofocus",
|
|
122
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
125
123
|
"value": {
|
|
126
124
|
"type": [
|
|
127
|
-
"boolean"
|
|
125
|
+
"boolean",
|
|
126
|
+
"null",
|
|
127
|
+
"undefined"
|
|
128
128
|
]
|
|
129
129
|
}
|
|
130
130
|
},
|
|
@@ -154,10 +154,6 @@
|
|
|
154
154
|
"name": "value-changed",
|
|
155
155
|
"description": "Fired when the `value` property changes."
|
|
156
156
|
},
|
|
157
|
-
{
|
|
158
|
-
"name": "dirty-changed",
|
|
159
|
-
"description": "Fired when the `dirty` property changes."
|
|
160
|
-
},
|
|
161
157
|
{
|
|
162
158
|
"name": "checked-changed",
|
|
163
159
|
"description": "Fired when the `checked` property changes."
|
|
@@ -275,17 +271,6 @@
|
|
|
275
271
|
]
|
|
276
272
|
}
|
|
277
273
|
},
|
|
278
|
-
{
|
|
279
|
-
"name": "dirty",
|
|
280
|
-
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\na `change` event. Additionally, the field can be manually marked\nas dirty by setting the property to `true`.",
|
|
281
|
-
"value": {
|
|
282
|
-
"type": [
|
|
283
|
-
"boolean",
|
|
284
|
-
"null",
|
|
285
|
-
"undefined"
|
|
286
|
-
]
|
|
287
|
-
}
|
|
288
|
-
},
|
|
289
274
|
{
|
|
290
275
|
"name": "theme",
|
|
291
276
|
"description": "The theme variants to apply to the component.",
|
|
@@ -405,17 +390,6 @@
|
|
|
405
390
|
"boolean"
|
|
406
391
|
]
|
|
407
392
|
}
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"name": "dirty",
|
|
411
|
-
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\na `change` event. Additionally, the field can be manually marked\nas dirty by setting the property to `true`.",
|
|
412
|
-
"value": {
|
|
413
|
-
"type": [
|
|
414
|
-
"boolean",
|
|
415
|
-
"null",
|
|
416
|
-
"undefined"
|
|
417
|
-
]
|
|
418
|
-
}
|
|
419
393
|
}
|
|
420
394
|
],
|
|
421
395
|
"events": [
|
|
@@ -423,17 +397,13 @@
|
|
|
423
397
|
"name": "validated",
|
|
424
398
|
"description": "Fired whenever the field is validated."
|
|
425
399
|
},
|
|
426
|
-
{
|
|
427
|
-
"name": "value-changed",
|
|
428
|
-
"description": "Fired when the `value` property changes."
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
"name": "dirty-changed",
|
|
432
|
-
"description": "Fired when the `dirty` property changes."
|
|
433
|
-
},
|
|
434
400
|
{
|
|
435
401
|
"name": "invalid-changed",
|
|
436
402
|
"description": "Fired when the `invalid` property changes."
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"name": "value-changed",
|
|
406
|
+
"description": "Fired when the `value` property changes."
|
|
437
407
|
}
|
|
438
408
|
]
|
|
439
409
|
}
|
package/web-types.lit.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": "24.3.0-
|
|
4
|
+
"version": "24.3.0-alpha11",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
"name": "?
|
|
31
|
-
"description": "
|
|
30
|
+
"name": "?checked",
|
|
31
|
+
"description": "True if the element is checked.",
|
|
32
32
|
"value": {
|
|
33
33
|
"kind": "expression"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
|
-
"name": "?
|
|
38
|
-
"description": "
|
|
37
|
+
"name": "?autofocus",
|
|
38
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
39
39
|
"value": {
|
|
40
40
|
"kind": "expression"
|
|
41
41
|
}
|
|
@@ -68,13 +68,6 @@
|
|
|
68
68
|
"kind": "expression"
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
{
|
|
72
|
-
"name": "@dirty-changed",
|
|
73
|
-
"description": "Fired when the `dirty` property changes.",
|
|
74
|
-
"value": {
|
|
75
|
-
"kind": "expression"
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
71
|
{
|
|
79
72
|
"name": "@checked-changed",
|
|
80
73
|
"description": "Fired when the `checked` property changes.",
|
|
@@ -117,13 +110,6 @@
|
|
|
117
110
|
"kind": "expression"
|
|
118
111
|
}
|
|
119
112
|
},
|
|
120
|
-
{
|
|
121
|
-
"name": "?dirty",
|
|
122
|
-
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\na `change` event. Additionally, the field can be manually marked\nas dirty by setting the property to `true`.",
|
|
123
|
-
"value": {
|
|
124
|
-
"kind": "expression"
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
113
|
{
|
|
128
114
|
"name": ".label",
|
|
129
115
|
"description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
|
|
@@ -174,22 +160,15 @@
|
|
|
174
160
|
}
|
|
175
161
|
},
|
|
176
162
|
{
|
|
177
|
-
"name": "@
|
|
178
|
-
"description": "Fired when the `
|
|
179
|
-
"value": {
|
|
180
|
-
"kind": "expression"
|
|
181
|
-
}
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"name": "@dirty-changed",
|
|
185
|
-
"description": "Fired when the `dirty` property changes.",
|
|
163
|
+
"name": "@invalid-changed",
|
|
164
|
+
"description": "Fired when the `invalid` property changes.",
|
|
186
165
|
"value": {
|
|
187
166
|
"kind": "expression"
|
|
188
167
|
}
|
|
189
168
|
},
|
|
190
169
|
{
|
|
191
|
-
"name": "@
|
|
192
|
-
"description": "Fired when the `
|
|
170
|
+
"name": "@value-changed",
|
|
171
|
+
"description": "Fired when the `value` property changes.",
|
|
193
172
|
"value": {
|
|
194
173
|
"kind": "expression"
|
|
195
174
|
}
|