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