@vaadin/checkbox-group 24.1.0-alpha3 → 24.1.0-alpha5

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": "24.1.0-alpha3",
3
+ "version": "24.1.0-alpha5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -36,13 +36,13 @@
36
36
  ],
37
37
  "dependencies": {
38
38
  "@polymer/polymer": "^3.0.0",
39
- "@vaadin/a11y-base": "24.1.0-alpha3",
40
- "@vaadin/checkbox": "24.1.0-alpha3",
41
- "@vaadin/component-base": "24.1.0-alpha3",
42
- "@vaadin/field-base": "24.1.0-alpha3",
43
- "@vaadin/vaadin-lumo-styles": "24.1.0-alpha3",
44
- "@vaadin/vaadin-material-styles": "24.1.0-alpha3",
45
- "@vaadin/vaadin-themable-mixin": "24.1.0-alpha3"
39
+ "@vaadin/a11y-base": "24.1.0-alpha5",
40
+ "@vaadin/checkbox": "24.1.0-alpha5",
41
+ "@vaadin/component-base": "24.1.0-alpha5",
42
+ "@vaadin/field-base": "24.1.0-alpha5",
43
+ "@vaadin/vaadin-lumo-styles": "24.1.0-alpha5",
44
+ "@vaadin/vaadin-material-styles": "24.1.0-alpha5",
45
+ "@vaadin/vaadin-themable-mixin": "24.1.0-alpha5"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
@@ -53,5 +53,5 @@
53
53
  "web-types.json",
54
54
  "web-types.lit.json"
55
55
  ],
56
- "gitHead": "077b4a8e8fff063b9eba4581af81f9e152cb852d"
56
+ "gitHead": "1ab6c977fe239d94aac5f39940c1a4722ad4bb63"
57
57
  }
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/checkbox-group",
4
- "version": "24.1.0-alpha3",
4
+ "version": "24.1.0-alpha5",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -76,6 +76,28 @@
76
76
  ]
77
77
  }
78
78
  },
79
+ {
80
+ "name": "accessible-name",
81
+ "description": "String used to label the component to screen reader users.",
82
+ "value": {
83
+ "type": [
84
+ "string",
85
+ "null",
86
+ "undefined"
87
+ ]
88
+ }
89
+ },
90
+ {
91
+ "name": "accessible-name-ref",
92
+ "description": "Id of the element used as label of the component to screen reader users.",
93
+ "value": {
94
+ "type": [
95
+ "string",
96
+ "null",
97
+ "undefined"
98
+ ]
99
+ }
100
+ },
79
101
  {
80
102
  "name": "theme",
81
103
  "description": "The theme variants to apply to the component.",
@@ -156,6 +178,28 @@
156
178
  ]
157
179
  }
158
180
  },
181
+ {
182
+ "name": "accessibleName",
183
+ "description": "String used to label the component to screen reader users.",
184
+ "value": {
185
+ "type": [
186
+ "string",
187
+ "null",
188
+ "undefined"
189
+ ]
190
+ }
191
+ },
192
+ {
193
+ "name": "accessibleNameRef",
194
+ "description": "Id of the element used as label of the component to screen reader users.",
195
+ "value": {
196
+ "type": [
197
+ "string",
198
+ "null",
199
+ "undefined"
200
+ ]
201
+ }
202
+ },
159
203
  {
160
204
  "name": "value",
161
205
  "description": "An array containing values of the currently checked checkboxes.\n\nThe array is immutable so toggling checkboxes always results in\ncreating a new array.",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/checkbox-group",
4
- "version": "24.1.0-alpha3",
4
+ "version": "24.1.0-alpha5",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -61,6 +61,20 @@
61
61
  "kind": "expression"
62
62
  }
63
63
  },
64
+ {
65
+ "name": ".accessibleName",
66
+ "description": "String used to label the component to screen reader users.",
67
+ "value": {
68
+ "kind": "expression"
69
+ }
70
+ },
71
+ {
72
+ "name": ".accessibleNameRef",
73
+ "description": "Id of the element used as label of the component to screen reader users.",
74
+ "value": {
75
+ "kind": "expression"
76
+ }
77
+ },
64
78
  {
65
79
  "name": ".value",
66
80
  "description": "An array containing values of the currently checked checkboxes.\n\nThe array is immutable so toggling checkboxes always results in\ncreating a new array.",