@vaadin/checkbox-group 23.1.0-alpha3 → 23.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/checkbox-group",
|
|
3
|
-
"version": "23.1.0-
|
|
3
|
+
"version": "23.1.0-beta2",
|
|
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.1.0-
|
|
38
|
-
"@vaadin/component-base": "23.1.0-
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "23.1.0-
|
|
40
|
-
"@vaadin/vaadin-material-styles": "23.1.0-
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "23.1.0-
|
|
37
|
+
"@vaadin/checkbox": "23.1.0-beta2",
|
|
38
|
+
"@vaadin/component-base": "23.1.0-beta2",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "23.1.0-beta2",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "23.1.0-beta2",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "23.1.0-beta2"
|
|
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": "f11f9245a0b5e6bf912725a501c27c24b74e7c8d"
|
|
49
49
|
}
|
|
@@ -79,13 +79,13 @@ declare class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementM
|
|
|
79
79
|
addEventListener<K extends keyof CheckboxGroupEventMap>(
|
|
80
80
|
type: K,
|
|
81
81
|
listener: (this: CheckboxGroup, ev: CheckboxGroupEventMap[K]) => void,
|
|
82
|
-
options?: boolean | AddEventListenerOptions
|
|
82
|
+
options?: boolean | AddEventListenerOptions,
|
|
83
83
|
): void;
|
|
84
84
|
|
|
85
85
|
removeEventListener<K extends keyof CheckboxGroupEventMap>(
|
|
86
86
|
type: K,
|
|
87
87
|
listener: (this: CheckboxGroup, ev: CheckboxGroupEventMap[K]) => void,
|
|
88
|
-
options?: boolean | EventListenerOptions
|
|
88
|
+
options?: boolean | EventListenerOptions,
|
|
89
89
|
): void;
|
|
90
90
|
}
|
|
91
91
|
|
|
@@ -125,8 +125,8 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(The
|
|
|
125
125
|
value: {
|
|
126
126
|
type: Array,
|
|
127
127
|
value: () => [],
|
|
128
|
-
notify: true
|
|
129
|
-
}
|
|
128
|
+
notify: true,
|
|
129
|
+
},
|
|
130
130
|
};
|
|
131
131
|
}
|
|
132
132
|
|
|
@@ -306,7 +306,7 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(The
|
|
|
306
306
|
* @private
|
|
307
307
|
*/
|
|
308
308
|
__valueChanged(value) {
|
|
309
|
-
//
|
|
309
|
+
// Setting initial value to empty array, skip validation
|
|
310
310
|
if (value.length === 0 && this.__oldValue === undefined) {
|
|
311
311
|
return;
|
|
312
312
|
}
|