@vaadin/radio-group 25.2.0-alpha10 → 25.2.0-alpha12
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/radio-group",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-alpha12",
|
|
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.2.0-
|
|
41
|
-
"@vaadin/component-base": "25.2.0-
|
|
42
|
-
"@vaadin/field-base": "25.2.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
40
|
+
"@vaadin/a11y-base": "25.2.0-alpha12",
|
|
41
|
+
"@vaadin/component-base": "25.2.0-alpha12",
|
|
42
|
+
"@vaadin/field-base": "25.2.0-alpha12",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha12",
|
|
44
44
|
"lit": "^3.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@vaadin/aura": "25.2.0-
|
|
48
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
49
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
47
|
+
"@vaadin/aura": "25.2.0-alpha12",
|
|
48
|
+
"@vaadin/chai-plugins": "25.2.0-alpha12",
|
|
49
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha12",
|
|
50
50
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
51
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
51
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha12",
|
|
52
52
|
"sinon": "^21.0.2"
|
|
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": "ae1e4373aec3653d63a45b6be18eee36f4b245a1"
|
|
60
60
|
}
|
|
@@ -13,13 +13,6 @@ import { LabelledInputController } from '@vaadin/field-base/src/labelled-input-c
|
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* A mixin providing common radio-button functionality.
|
|
16
|
-
*
|
|
17
|
-
* @polymerMixin
|
|
18
|
-
* @mixes ActiveMixin
|
|
19
|
-
* @mixes CheckedMixin
|
|
20
|
-
* @mixes DelegateFocusMixin
|
|
21
|
-
* @mixes LabelMixin
|
|
22
|
-
* @mixes SlotStylesMixin
|
|
23
16
|
*/
|
|
24
17
|
export const RadioButtonMixin = (superclass) =>
|
|
25
18
|
class RadioButtonMixinClass extends SlotStylesMixin(
|
|
@@ -29,7 +22,6 @@ export const RadioButtonMixin = (superclass) =>
|
|
|
29
22
|
return {
|
|
30
23
|
/**
|
|
31
24
|
* The name of the radio button.
|
|
32
|
-
*
|
|
33
25
|
*/
|
|
34
26
|
name: {
|
|
35
27
|
type: String,
|
|
@@ -65,9 +65,6 @@ import { RadioButtonMixin } from './vaadin-radio-button-mixin.js';
|
|
|
65
65
|
*
|
|
66
66
|
* @customElement vaadin-radio-button
|
|
67
67
|
* @extends HTMLElement
|
|
68
|
-
* @mixes ThemableMixin
|
|
69
|
-
* @mixes ElementMixin
|
|
70
|
-
* @mixes RadioButtonMixin
|
|
71
68
|
*/
|
|
72
69
|
class RadioButton extends RadioButtonMixin(ElementMixin(ThemableMixin(PolylitMixin(LumoInjectionMixin(LitElement))))) {
|
|
73
70
|
static get is() {
|
|
@@ -13,12 +13,6 @@ import { FieldMixin } from '@vaadin/field-base/src/field-mixin.js';
|
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* A mixin providing common radio-group functionality.
|
|
16
|
-
*
|
|
17
|
-
* @polymerMixin
|
|
18
|
-
* @mixes DisabledMixin
|
|
19
|
-
* @mixes FieldMixin
|
|
20
|
-
* @mixes FocusMixin
|
|
21
|
-
* @mixes KeyboardMixin
|
|
22
16
|
*/
|
|
23
17
|
export const RadioGroupMixin = (superclass) =>
|
|
24
18
|
class RadioGroupMixinClass extends FieldMixin(FocusMixin(DisabledMixin(KeyboardMixin(superclass)))) {
|
|
@@ -35,7 +29,6 @@ export const RadioGroupMixin = (superclass) =>
|
|
|
35
29
|
|
|
36
30
|
/**
|
|
37
31
|
* The value of the radio group.
|
|
38
|
-
*
|
|
39
32
|
*/
|
|
40
33
|
value: {
|
|
41
34
|
type: String,
|
|
@@ -50,7 +43,6 @@ export const RadioGroupMixin = (superclass) =>
|
|
|
50
43
|
* The property works similarly to the `disabled` property.
|
|
51
44
|
* While the `disabled` property disables all radio buttons inside the group,
|
|
52
45
|
* the `readonly` property disables only unchecked ones.
|
|
53
|
-
*
|
|
54
46
|
*/
|
|
55
47
|
readonly: {
|
|
56
48
|
type: Boolean,
|
|
@@ -77,9 +77,6 @@ import { RadioGroupMixin } from './vaadin-radio-group-mixin.js';
|
|
|
77
77
|
*
|
|
78
78
|
* @customElement vaadin-radio-group
|
|
79
79
|
* @extends HTMLElement
|
|
80
|
-
* @mixes ThemableMixin
|
|
81
|
-
* @mixes ElementMixin
|
|
82
|
-
* @mixes RadioGroupMixin
|
|
83
80
|
*/
|
|
84
81
|
class RadioGroup extends RadioGroupMixin(ElementMixin(ThemableMixin(PolylitMixin(LumoInjectionMixin(LitElement))))) {
|
|
85
82
|
static get is() {
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED