@vaadin/a11y-base 25.1.0-beta1 → 25.1.0-beta3

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.
@@ -183,14 +183,15 @@
183
183
  "text": "!Array<!Element> | undefined"
184
184
  },
185
185
  "description": "A read-only list of items from which a selection can be made.\nIt is populated from the elements passed to the light DOM,\nand updated dynamically when adding or removing items.",
186
- "attribute": "items"
186
+ "attribute": "items",
187
+ "readonly": true
187
188
  },
188
189
  {
189
190
  "kind": "field",
190
191
  "name": "orientation",
191
192
  "privacy": "public",
192
193
  "type": {
193
- "text": "!ListOrientation"
194
+ "text": "string"
194
195
  },
195
196
  "description": "Define how items are disposed in the dom.\nPossible values are: `horizontal|vertical`.\nIt also changes navigation keys from left/right to up/down.",
196
197
  "attribute": "orientation"
@@ -218,7 +219,7 @@
218
219
  {
219
220
  "name": "orientation",
220
221
  "type": {
221
- "text": "!ListOrientation"
222
+ "text": "string"
222
223
  },
223
224
  "description": "Define how items are disposed in the dom.\nPossible values are: `horizontal|vertical`.\nIt also changes navigation keys from left/right to up/down.",
224
225
  "fieldName": "orientation"
@@ -265,16 +266,7 @@
265
266
  "description": "A mixin to toggle the `tabindex` attribute.\n\nThe attribute is set to -1 whenever the user disables the element\nand restored with the last known value once the element is enabled.",
266
267
  "name": "TabindexMixin",
267
268
  "members": [],
268
- "attributes": [
269
- {
270
- "name": "tabindex",
271
- "type": {
272
- "text": "number"
273
- },
274
- "description": "Indicates whether the element can be focused and where it participates in sequential keyboard navigation.",
275
- "fieldName": "tabindex"
276
- }
277
- ],
269
+ "attributes": [],
278
270
  "mixins": [
279
271
  {
280
272
  "name": "DisabledMixin",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/a11y-base",
3
- "version": "25.1.0-beta1",
3
+ "version": "25.1.0-beta3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,15 +32,15 @@
32
32
  ],
33
33
  "dependencies": {
34
34
  "@open-wc/dedupe-mixin": "^1.3.0",
35
- "@vaadin/component-base": "25.1.0-beta1",
35
+ "@vaadin/component-base": "25.1.0-beta3",
36
36
  "lit": "^3.0.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@vaadin/chai-plugins": "25.1.0-beta1",
40
- "@vaadin/test-runner-commands": "25.1.0-beta1",
39
+ "@vaadin/chai-plugins": "25.1.0-beta3",
40
+ "@vaadin/test-runner-commands": "25.1.0-beta3",
41
41
  "@vaadin/testing-helpers": "^2.0.0",
42
- "sinon": "^21.0.0"
42
+ "sinon": "^21.0.2"
43
43
  },
44
44
  "customElements": "custom-elements.json",
45
- "gitHead": "0ccf77c385fc6a92ac2a6344ce8804b94956226d"
45
+ "gitHead": "4251850231a42298fda23b83928da588831cdb5d"
46
46
  }
package/src/list-mixin.js CHANGED
@@ -46,7 +46,6 @@ export const ListMixin = (superClass) =>
46
46
  * Define how items are disposed in the dom.
47
47
  * Possible values are: `horizontal|vertical`.
48
48
  * It also changes navigation keys from left/right to up/down.
49
- * @type {!ListOrientation}
50
49
  */
51
50
  orientation: {
52
51
  type: String,