@vaadin/checkbox-group 23.2.0-alpha2 → 23.2.0-alpha3
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/checkbox-group",
|
|
3
|
-
"version": "23.2.0-
|
|
3
|
+
"version": "23.2.0-alpha3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@polymer/polymer": "^3.0.0",
|
|
37
|
-
"@vaadin/checkbox": "23.2.0-
|
|
38
|
-
"@vaadin/component-base": "23.2.0-
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "23.2.0-
|
|
40
|
-
"@vaadin/vaadin-material-styles": "23.2.0-
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "23.2.0-
|
|
37
|
+
"@vaadin/checkbox": "23.2.0-alpha3",
|
|
38
|
+
"@vaadin/component-base": "23.2.0-alpha3",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "23.2.0-alpha3",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "23.2.0-alpha3",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "23.2.0-alpha3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@esm-bundle/chai": "^4.3.4",
|
|
45
45
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
46
46
|
"sinon": "^13.0.2"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "06e5875be93ca50da2846dafc65a8531010c0576"
|
|
49
49
|
}
|
|
@@ -19,10 +19,17 @@ export type CheckboxGroupInvalidChangedEvent = CustomEvent<{ value: boolean }>;
|
|
|
19
19
|
*/
|
|
20
20
|
export type CheckboxGroupValueChangedEvent = CustomEvent<{ value: string[] }>;
|
|
21
21
|
|
|
22
|
+
/**
|
|
23
|
+
* Fired whenever the field is validated.
|
|
24
|
+
*/
|
|
25
|
+
export type CheckboxGroupValidatedEvent = CustomEvent<{ valid: boolean }>;
|
|
26
|
+
|
|
22
27
|
export interface CheckboxGroupCustomEventMap {
|
|
23
28
|
'invalid-changed': CheckboxGroupInvalidChangedEvent;
|
|
24
29
|
|
|
25
30
|
'value-changed': CheckboxGroupValueChangedEvent;
|
|
31
|
+
|
|
32
|
+
validated: CheckboxGroupValidatedEvent;
|
|
26
33
|
}
|
|
27
34
|
|
|
28
35
|
export interface CheckboxGroupEventMap extends HTMLElementEventMap, CheckboxGroupCustomEventMap {}
|
|
@@ -66,6 +73,7 @@ export interface CheckboxGroupEventMap extends HTMLElementEventMap, CheckboxGrou
|
|
|
66
73
|
*
|
|
67
74
|
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
|
|
68
75
|
* @fires {CustomEvent} value-changed - Fired when the `value` property changes.
|
|
76
|
+
* @fires {CustomEvent} validated - Fired whenever the field is validated.
|
|
69
77
|
*/
|
|
70
78
|
declare class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(ThemableMixin(HTMLElement))))) {
|
|
71
79
|
/**
|
|
@@ -51,6 +51,7 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
|
|
|
51
51
|
*
|
|
52
52
|
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
|
|
53
53
|
* @fires {CustomEvent} value-changed - Fired when the `value` property changes.
|
|
54
|
+
* @fires {CustomEvent} validated - Fired whenever the field is validated.
|
|
54
55
|
*
|
|
55
56
|
* @extends HTMLElement
|
|
56
57
|
* @mixes ThemableMixin
|