@vaadin/a11y-base 25.1.0-beta2 → 25.1.0-beta4
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/custom-elements.json +2 -2
- package/package.json +6 -6
- package/src/list-mixin.js +0 -1
package/custom-elements.json
CHANGED
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
"name": "orientation",
|
|
192
192
|
"privacy": "public",
|
|
193
193
|
"type": {
|
|
194
|
-
"text": "
|
|
194
|
+
"text": "string"
|
|
195
195
|
},
|
|
196
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.",
|
|
197
197
|
"attribute": "orientation"
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
{
|
|
220
220
|
"name": "orientation",
|
|
221
221
|
"type": {
|
|
222
|
-
"text": "
|
|
222
|
+
"text": "string"
|
|
223
223
|
},
|
|
224
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.",
|
|
225
225
|
"fieldName": "orientation"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/a11y-base",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-beta4",
|
|
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-
|
|
35
|
+
"@vaadin/component-base": "25.1.0-beta4",
|
|
36
36
|
"lit": "^3.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
40
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
39
|
+
"@vaadin/chai-plugins": "25.1.0-beta4",
|
|
40
|
+
"@vaadin/test-runner-commands": "25.1.0-beta4",
|
|
41
41
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
42
|
-
"sinon": "^21.0.
|
|
42
|
+
"sinon": "^21.0.2"
|
|
43
43
|
},
|
|
44
44
|
"customElements": "custom-elements.json",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "b27f6706a2b5c07cedec353fccbdecee95d53024"
|
|
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,
|