@vaadin/radio-group 24.2.0-alpha8 → 24.2.0-alpha9
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": "24.2.0-
|
|
3
|
+
"version": "24.2.0-alpha9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,21 +38,21 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/a11y-base": "24.2.0-
|
|
42
|
-
"@vaadin/component-base": "24.2.0-
|
|
43
|
-
"@vaadin/field-base": "24.2.0-
|
|
44
|
-
"@vaadin/vaadin-lumo-styles": "24.2.0-
|
|
45
|
-
"@vaadin/vaadin-material-styles": "24.2.0-
|
|
46
|
-
"@vaadin/vaadin-themable-mixin": "24.2.0-
|
|
41
|
+
"@vaadin/a11y-base": "24.2.0-alpha9",
|
|
42
|
+
"@vaadin/component-base": "24.2.0-alpha9",
|
|
43
|
+
"@vaadin/field-base": "24.2.0-alpha9",
|
|
44
|
+
"@vaadin/vaadin-lumo-styles": "24.2.0-alpha9",
|
|
45
|
+
"@vaadin/vaadin-material-styles": "24.2.0-alpha9",
|
|
46
|
+
"@vaadin/vaadin-themable-mixin": "24.2.0-alpha9"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@esm-bundle/chai": "^4.3.4",
|
|
50
|
-
"@vaadin/testing-helpers": "^0.
|
|
50
|
+
"@vaadin/testing-helpers": "^0.5.0",
|
|
51
51
|
"sinon": "^13.0.2"
|
|
52
52
|
},
|
|
53
53
|
"web-types": [
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "e9765733fea96542e379e02e6f42b07145893140"
|
|
58
58
|
}
|
|
@@ -16,8 +16,15 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
|
|
|
16
16
|
*/
|
|
17
17
|
export type RadioButtonCheckedChangedEvent = CustomEvent<{ value: boolean }>;
|
|
18
18
|
|
|
19
|
+
/**
|
|
20
|
+
* Fired when the `dirty` property changes.
|
|
21
|
+
*/
|
|
22
|
+
export type RadioButtonDirtyChangedEvent = CustomEvent<{ value: boolean }>;
|
|
23
|
+
|
|
19
24
|
export interface RadioButtonCustomEventMap {
|
|
20
25
|
'checked-changed': RadioButtonCheckedChangedEvent;
|
|
26
|
+
|
|
27
|
+
'dirty-changed': RadioButtonDirtyChangedEvent;
|
|
21
28
|
}
|
|
22
29
|
|
|
23
30
|
export interface RadioButtonEventMap extends HTMLElementEventMap, RadioButtonCustomEventMap {}
|
|
@@ -56,6 +63,7 @@ export interface RadioButtonEventMap extends HTMLElementEventMap, RadioButtonCus
|
|
|
56
63
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
57
64
|
*
|
|
58
65
|
* @fires {CustomEvent} checked-changed - Fired when the `checked` property changes.
|
|
66
|
+
* @fires {CustomEvent} dirty-changed - Fired when the `dirty` property changes.
|
|
59
67
|
*/
|
|
60
68
|
declare class RadioButton extends LabelMixin(
|
|
61
69
|
CheckedMixin(DelegateFocusMixin(ActiveMixin(ElementMixin(ThemableMixin(ControllerMixin(HTMLElement)))))),
|
|
@@ -48,6 +48,7 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
|
|
|
48
48
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
49
49
|
*
|
|
50
50
|
* @fires {CustomEvent} checked-changed - Fired when the `checked` property changes.
|
|
51
|
+
* @fires {CustomEvent} dirty-changed - Fired when the `dirty` property changes.
|
|
51
52
|
*
|
|
52
53
|
* @extends HTMLElement
|
|
53
54
|
* @mixes ControllerMixin
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED