@vaadin/tabs 25.1.0-beta2 → 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.
@@ -58,19 +58,10 @@
58
58
  {
59
59
  "kind": "field",
60
60
  "name": "value",
61
- "return": {
62
- "type": {
63
- "text": "string"
64
- }
61
+ "description": "Submittable string value. The default value is the trimmed text content of the element.",
62
+ "type": {
63
+ "text": "string"
65
64
  },
66
- "parameters": [
67
- {
68
- "name": "value",
69
- "type": {
70
- "text": "string"
71
- }
72
- }
73
- ],
74
65
  "inheritedFrom": {
75
66
  "name": "ItemMixin",
76
67
  "package": "@vaadin/item/src/vaadin-item-mixin.js"
@@ -176,7 +167,7 @@
176
167
  "name": "orientation",
177
168
  "privacy": "public",
178
169
  "type": {
179
- "text": "!ListOrientation"
170
+ "text": "string"
180
171
  },
181
172
  "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
182
173
  "attribute": "orientation",
@@ -216,7 +207,7 @@
216
207
  {
217
208
  "name": "orientation",
218
209
  "type": {
219
- "text": "!ListOrientation"
210
+ "text": "string"
220
211
  },
221
212
  "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
222
213
  "fieldName": "orientation",
@@ -309,7 +300,7 @@
309
300
  "name": "orientation",
310
301
  "privacy": "public",
311
302
  "type": {
312
- "text": "!ListOrientation"
303
+ "text": "string"
313
304
  },
314
305
  "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
315
306
  "attribute": "orientation",
@@ -393,7 +384,7 @@
393
384
  {
394
385
  "name": "orientation",
395
386
  "type": {
396
- "text": "!ListOrientation"
387
+ "text": "string"
397
388
  },
398
389
  "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
399
390
  "fieldName": "orientation",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/tabs",
3
- "version": "25.1.0-beta2",
3
+ "version": "25.1.0-beta3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,24 +35,24 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.1.0-beta2",
39
- "@vaadin/component-base": "25.1.0-beta2",
40
- "@vaadin/item": "25.1.0-beta2",
41
- "@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
38
+ "@vaadin/a11y-base": "25.1.0-beta3",
39
+ "@vaadin/component-base": "25.1.0-beta3",
40
+ "@vaadin/item": "25.1.0-beta3",
41
+ "@vaadin/vaadin-themable-mixin": "25.1.0-beta3",
42
42
  "lit": "^3.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@vaadin/aura": "25.1.0-beta2",
46
- "@vaadin/chai-plugins": "25.1.0-beta2",
47
- "@vaadin/test-runner-commands": "25.1.0-beta2",
45
+ "@vaadin/aura": "25.1.0-beta3",
46
+ "@vaadin/chai-plugins": "25.1.0-beta3",
47
+ "@vaadin/test-runner-commands": "25.1.0-beta3",
48
48
  "@vaadin/testing-helpers": "^2.0.0",
49
- "@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
50
- "sinon": "^21.0.0"
49
+ "@vaadin/vaadin-lumo-styles": "25.1.0-beta3",
50
+ "sinon": "^21.0.2"
51
51
  },
52
52
  "customElements": "custom-elements.json",
53
53
  "web-types": [
54
54
  "web-types.json",
55
55
  "web-types.lit.json"
56
56
  ],
57
- "gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
57
+ "gitHead": "4251850231a42298fda23b83928da588831cdb5d"
58
58
  }
@@ -18,7 +18,6 @@ export const TabsMixin = (superClass) =>
18
18
  return {
19
19
  /**
20
20
  * Set tabs disposition. Possible values are `horizontal|vertical`
21
- * @type {!TabsOrientation}
22
21
  */
23
22
  orientation: {
24
23
  value: 'horizontal',
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/tabs",
4
- "version": "25.1.0-beta2",
4
+ "version": "25.1.0-beta3",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -70,10 +70,10 @@
70
70
  },
71
71
  {
72
72
  "name": "value",
73
- "description": "",
73
+ "description": "Submittable string value. The default value is the trimmed text content of the element.",
74
74
  "value": {
75
75
  "type": [
76
- "string"
76
+ "?"
77
77
  ]
78
78
  }
79
79
  }
@@ -101,7 +101,9 @@
101
101
  "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
102
102
  "value": {
103
103
  "type": [
104
- "TabsOrientation"
104
+ "string",
105
+ "null",
106
+ "undefined"
105
107
  ]
106
108
  }
107
109
  },
@@ -146,7 +148,9 @@
146
148
  "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
147
149
  "value": {
148
150
  "type": [
149
- "TabsOrientation"
151
+ "string",
152
+ "null",
153
+ "undefined"
150
154
  ]
151
155
  }
152
156
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/tabs",
4
- "version": "25.1.0-beta2",
4
+ "version": "25.1.0-beta3",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -35,7 +35,7 @@
35
35
  },
36
36
  {
37
37
  "name": ".value",
38
- "description": "",
38
+ "description": "Submittable string value. The default value is the trimmed text content of the element.",
39
39
  "value": {
40
40
  "kind": "expression"
41
41
  }