@vaadin/a11y-base 25.0.0-alpha16 → 25.0.0-alpha17

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/a11y-base",
3
- "version": "25.0.0-alpha16",
3
+ "version": "25.0.0-alpha17",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,14 +31,14 @@
31
31
  ],
32
32
  "dependencies": {
33
33
  "@open-wc/dedupe-mixin": "^1.3.0",
34
- "@vaadin/component-base": "25.0.0-alpha16",
34
+ "@vaadin/component-base": "25.0.0-alpha17",
35
35
  "lit": "^3.0.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@vaadin/chai-plugins": "25.0.0-alpha16",
39
- "@vaadin/test-runner-commands": "25.0.0-alpha16",
38
+ "@vaadin/chai-plugins": "25.0.0-alpha17",
39
+ "@vaadin/test-runner-commands": "25.0.0-alpha17",
40
40
  "@vaadin/testing-helpers": "^2.0.0",
41
- "sinon": "^18.0.0"
41
+ "sinon": "^21.0.0"
42
42
  },
43
- "gitHead": "4b316158a4a4f702f032bc9940fc82f0faa840f4"
43
+ "gitHead": "8264c71309907be99368b09414f0f8d7f591e0b9"
44
44
  }
@@ -36,15 +36,9 @@ export declare class ListMixinClass {
36
36
  orientation: 'horizontal' | 'vertical';
37
37
 
38
38
  /**
39
- * The list of items from which a selection can be made.
39
+ * A read-only list of items from which a selection can be made.
40
40
  * It is populated from the elements passed to the light DOM,
41
41
  * and updated dynamically when adding or removing items.
42
- *
43
- * The item elements must implement `Vaadin.ItemMixin`.
44
- *
45
- * Note: unlike `<vaadin-combo-box>`, this property is read-only,
46
- * so if you want to provide items by iterating array of data,
47
- * you have to use `dom-repeat` and place it to the light DOM.
48
42
  */
49
43
  readonly items: Element[] | undefined;
50
44
 
package/src/list-mixin.js CHANGED
@@ -56,15 +56,9 @@ export const ListMixin = (superClass) =>
56
56
  },
57
57
 
58
58
  /**
59
- * The list of items from which a selection can be made.
59
+ * A read-only list of items from which a selection can be made.
60
60
  * It is populated from the elements passed to the light DOM,
61
61
  * and updated dynamically when adding or removing items.
62
- *
63
- * The item elements must implement `Vaadin.ItemMixin`.
64
- *
65
- * Note: unlike `<vaadin-combo-box>`, this property is read-only,
66
- * so if you want to provide items by iterating array of data,
67
- * you have to use `dom-repeat` and place it to the light DOM.
68
62
  * @type {!Array<!Element> | undefined}
69
63
  */
70
64
  items: {