@vaadin/checkbox-group 22.0.0-beta2 → 22.0.2
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": "22.0.
|
|
3
|
+
"version": "22.0.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@polymer/polymer": "^3.0.0",
|
|
36
|
-
"@vaadin/checkbox": "22.0.
|
|
37
|
-
"@vaadin/component-base": "22.0.
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "22.0.
|
|
39
|
-
"@vaadin/vaadin-material-styles": "22.0.
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "22.0.
|
|
36
|
+
"@vaadin/checkbox": "^22.0.2",
|
|
37
|
+
"@vaadin/component-base": "^22.0.2",
|
|
38
|
+
"@vaadin/vaadin-lumo-styles": "^22.0.2",
|
|
39
|
+
"@vaadin/vaadin-material-styles": "^22.0.2",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "^22.0.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@esm-bundle/chai": "^4.3.4",
|
|
44
|
-
"@vaadin/testing-helpers": "^0.3.
|
|
44
|
+
"@vaadin/testing-helpers": "^0.3.2",
|
|
45
45
|
"sinon": "^9.2.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "df21370c4a655a38eac11f79686021ab3b0887ad"
|
|
48
48
|
}
|
|
@@ -161,15 +161,6 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(DirMixin(Themabl
|
|
|
161
161
|
});
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
-
/**
|
|
165
|
-
* @return {string}
|
|
166
|
-
* @override
|
|
167
|
-
* @protected
|
|
168
|
-
*/
|
|
169
|
-
get _ariaAttr() {
|
|
170
|
-
return 'aria-labelledby';
|
|
171
|
-
}
|
|
172
|
-
|
|
173
164
|
/**
|
|
174
165
|
* Override method inherited from `ValidateMixin`
|
|
175
166
|
* to validate the value array.
|