@vaadin/tabs 25.1.0-alpha6 → 25.1.0-alpha8
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 +430 -0
- package/package.json +12 -10
- package/src/vaadin-tab.js +1 -1
- package/src/vaadin-tabs.js +1 -1
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
|
@@ -0,0 +1,430 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0.0",
|
|
3
|
+
"readme": "",
|
|
4
|
+
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"kind": "javascript-module",
|
|
7
|
+
"path": "vaadin-tabs.js",
|
|
8
|
+
"declarations": [],
|
|
9
|
+
"exports": [
|
|
10
|
+
{
|
|
11
|
+
"kind": "js",
|
|
12
|
+
"name": "*",
|
|
13
|
+
"declaration": {
|
|
14
|
+
"name": "*",
|
|
15
|
+
"module": "src/vaadin-tabs.js"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"kind": "javascript-module",
|
|
22
|
+
"path": "vaadin-tab.js",
|
|
23
|
+
"declarations": [],
|
|
24
|
+
"exports": [
|
|
25
|
+
{
|
|
26
|
+
"kind": "js",
|
|
27
|
+
"name": "*",
|
|
28
|
+
"declaration": {
|
|
29
|
+
"name": "*",
|
|
30
|
+
"module": "src/vaadin-tab.js"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"kind": "javascript-module",
|
|
37
|
+
"path": "src/vaadin-tab.js",
|
|
38
|
+
"declarations": [
|
|
39
|
+
{
|
|
40
|
+
"kind": "class",
|
|
41
|
+
"description": "`<vaadin-tab>` is a Web Component providing an accessible and customizable tab.\n\n```html\n<vaadin-tab>Tab 1</vaadin-tab>\n```\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------|---------------------------------\n`disabled` | Set when the element is disabled\n`focused` | Set when the element is focused\n`focus-ring` | Set when the element is keyboard focused\n`selected` | Set when the tab is selected\n`active` | Set when mousedown or enter/spacebar pressed\n`orientation` | Set to `horizontal` or `vertical` depending on the direction of items\n`has-tooltip` | Set when the tab has a slotted tooltip\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:------------------------------|\n| `--vaadin-tab-background` |\n| `--vaadin-tab-border-color` |\n| `--vaadin-tab-border-width` |\n| `--vaadin-tab-font-size` |\n| `--vaadin-tab-font-weight` |\n| `--vaadin-tab-gap` |\n| `--vaadin-tab-padding` |\n| `--vaadin-tab-text-color` |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
42
|
+
"name": "Tab",
|
|
43
|
+
"members": [
|
|
44
|
+
{
|
|
45
|
+
"kind": "field",
|
|
46
|
+
"name": "selected",
|
|
47
|
+
"privacy": "public",
|
|
48
|
+
"type": {
|
|
49
|
+
"text": "boolean"
|
|
50
|
+
},
|
|
51
|
+
"description": "If true, the item is in selected state.",
|
|
52
|
+
"attribute": "selected",
|
|
53
|
+
"inheritedFrom": {
|
|
54
|
+
"name": "ItemMixin",
|
|
55
|
+
"package": "@vaadin/item/src/vaadin-item-mixin.js"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"kind": "field",
|
|
60
|
+
"name": "value",
|
|
61
|
+
"return": {
|
|
62
|
+
"type": {
|
|
63
|
+
"text": "string"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"parameters": [
|
|
67
|
+
{
|
|
68
|
+
"name": "value",
|
|
69
|
+
"type": {
|
|
70
|
+
"text": "string"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"inheritedFrom": {
|
|
75
|
+
"name": "ItemMixin",
|
|
76
|
+
"package": "@vaadin/item/src/vaadin-item-mixin.js"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"mixins": [
|
|
81
|
+
{
|
|
82
|
+
"name": "ItemMixin",
|
|
83
|
+
"package": "@vaadin/item/src/vaadin-item-mixin.js"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "ThemableMixin",
|
|
87
|
+
"package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "ElementMixin",
|
|
91
|
+
"package": "@vaadin/component-base/src/element-mixin.js"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "PolylitMixin",
|
|
95
|
+
"package": "@vaadin/component-base/src/polylit-mixin.js"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "LumoInjectionMixin",
|
|
99
|
+
"package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"superclass": {
|
|
103
|
+
"name": "LitElement",
|
|
104
|
+
"package": "lit"
|
|
105
|
+
},
|
|
106
|
+
"tagName": "vaadin-tab",
|
|
107
|
+
"customElement": true,
|
|
108
|
+
"attributes": [
|
|
109
|
+
{
|
|
110
|
+
"name": "selected",
|
|
111
|
+
"type": {
|
|
112
|
+
"text": "boolean"
|
|
113
|
+
},
|
|
114
|
+
"description": "If true, the item is in selected state.",
|
|
115
|
+
"fieldName": "selected",
|
|
116
|
+
"inheritedFrom": {
|
|
117
|
+
"name": "ItemMixin",
|
|
118
|
+
"package": "@vaadin/item/src/vaadin-item-mixin.js"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"events": []
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"exports": [
|
|
126
|
+
{
|
|
127
|
+
"kind": "js",
|
|
128
|
+
"name": "Tab",
|
|
129
|
+
"declaration": {
|
|
130
|
+
"name": "Tab",
|
|
131
|
+
"module": "src/vaadin-tab.js"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"kind": "javascript-module",
|
|
138
|
+
"path": "src/vaadin-tabs-mixin.js",
|
|
139
|
+
"declarations": [
|
|
140
|
+
{
|
|
141
|
+
"kind": "mixin",
|
|
142
|
+
"description": "",
|
|
143
|
+
"name": "TabsMixin",
|
|
144
|
+
"members": [
|
|
145
|
+
{
|
|
146
|
+
"kind": "field",
|
|
147
|
+
"name": "disabled",
|
|
148
|
+
"privacy": "public",
|
|
149
|
+
"type": {
|
|
150
|
+
"text": "boolean"
|
|
151
|
+
},
|
|
152
|
+
"description": "If true, the user cannot interact with this element.\nWhen the element is disabled, the selected item is\nnot updated when `selected` property is changed.",
|
|
153
|
+
"attribute": "disabled",
|
|
154
|
+
"inheritedFrom": {
|
|
155
|
+
"name": "ListMixin",
|
|
156
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"kind": "field",
|
|
161
|
+
"name": "items",
|
|
162
|
+
"privacy": "public",
|
|
163
|
+
"type": {
|
|
164
|
+
"text": "!Array<!Element> | undefined"
|
|
165
|
+
},
|
|
166
|
+
"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.",
|
|
167
|
+
"attribute": "items",
|
|
168
|
+
"inheritedFrom": {
|
|
169
|
+
"name": "ListMixin",
|
|
170
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"kind": "field",
|
|
175
|
+
"name": "orientation",
|
|
176
|
+
"privacy": "public",
|
|
177
|
+
"type": {
|
|
178
|
+
"text": "!ListOrientation"
|
|
179
|
+
},
|
|
180
|
+
"description": "Set tabs disposition. Possible values are `horizontal|vertical`",
|
|
181
|
+
"attribute": "orientation",
|
|
182
|
+
"inheritedFrom": {
|
|
183
|
+
"name": "ListMixin",
|
|
184
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"kind": "field",
|
|
189
|
+
"name": "selected",
|
|
190
|
+
"privacy": "public",
|
|
191
|
+
"type": {
|
|
192
|
+
"text": "number"
|
|
193
|
+
},
|
|
194
|
+
"description": "The index of the selected tab.",
|
|
195
|
+
"attribute": "selected",
|
|
196
|
+
"inheritedFrom": {
|
|
197
|
+
"name": "ListMixin",
|
|
198
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"attributes": [
|
|
203
|
+
{
|
|
204
|
+
"name": "disabled",
|
|
205
|
+
"type": {
|
|
206
|
+
"text": "boolean"
|
|
207
|
+
},
|
|
208
|
+
"description": "If true, the user cannot interact with this element.\nWhen the element is disabled, the selected item is\nnot updated when `selected` property is changed.",
|
|
209
|
+
"fieldName": "disabled",
|
|
210
|
+
"inheritedFrom": {
|
|
211
|
+
"name": "ListMixin",
|
|
212
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "orientation",
|
|
217
|
+
"type": {
|
|
218
|
+
"text": "!ListOrientation"
|
|
219
|
+
},
|
|
220
|
+
"description": "Set tabs disposition. Possible values are `horizontal|vertical`",
|
|
221
|
+
"fieldName": "orientation",
|
|
222
|
+
"inheritedFrom": {
|
|
223
|
+
"name": "ListMixin",
|
|
224
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "selected",
|
|
229
|
+
"type": {
|
|
230
|
+
"text": "number"
|
|
231
|
+
},
|
|
232
|
+
"description": "The index of the selected tab.",
|
|
233
|
+
"fieldName": "selected",
|
|
234
|
+
"inheritedFrom": {
|
|
235
|
+
"name": "ListMixin",
|
|
236
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"mixins": [
|
|
241
|
+
{
|
|
242
|
+
"name": "ResizeMixin",
|
|
243
|
+
"package": "@vaadin/component-base/src/resize-mixin.js"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "ListMixin",
|
|
247
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
248
|
+
}
|
|
249
|
+
],
|
|
250
|
+
"parameters": [
|
|
251
|
+
{
|
|
252
|
+
"name": "superClass"
|
|
253
|
+
}
|
|
254
|
+
]
|
|
255
|
+
}
|
|
256
|
+
],
|
|
257
|
+
"exports": [
|
|
258
|
+
{
|
|
259
|
+
"kind": "js",
|
|
260
|
+
"name": "TabsMixin",
|
|
261
|
+
"declaration": {
|
|
262
|
+
"name": "TabsMixin",
|
|
263
|
+
"module": "src/vaadin-tabs-mixin.js"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"kind": "javascript-module",
|
|
270
|
+
"path": "src/vaadin-tabs.js",
|
|
271
|
+
"declarations": [
|
|
272
|
+
{
|
|
273
|
+
"kind": "class",
|
|
274
|
+
"description": "`<vaadin-tabs>` is a Web Component for organizing and grouping content into sections.\n\n```html\n<vaadin-tabs selected=\"4\">\n <vaadin-tab>Page 1</vaadin-tab>\n <vaadin-tab>Page 2</vaadin-tab>\n <vaadin-tab>Page 3</vaadin-tab>\n <vaadin-tab>Page 4</vaadin-tab>\n</vaadin-tabs>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n------------------|--------------------------------------\n`back-button` | Button for moving the scroll back\n`tabs` | The tabs container\n`forward-button` | Button for moving the scroll forward\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------|--------------------------------------\n`orientation` | Tabs disposition, valid values are `horizontal` and `vertical`\n`overflow` | It's set to `start`, `end`, none or both.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:--------------------------------|\n| `--vaadin-tabs-background` |\n| `--vaadin-tabs-border-color` |\n| `--vaadin-tabs-border-radius` |\n| `--vaadin-tabs-border-width` |\n| `--vaadin-tabs-font-size` |\n| `--vaadin-tabs-font-weight` |\n| `--vaadin-tabs-gap` |\n| `--vaadin-tabs-padding` |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
275
|
+
"name": "Tabs",
|
|
276
|
+
"members": [
|
|
277
|
+
{
|
|
278
|
+
"kind": "field",
|
|
279
|
+
"name": "disabled",
|
|
280
|
+
"privacy": "public",
|
|
281
|
+
"type": {
|
|
282
|
+
"text": "boolean"
|
|
283
|
+
},
|
|
284
|
+
"description": "If true, the user cannot interact with this element.\nWhen the element is disabled, the selected item is\nnot updated when `selected` property is changed.",
|
|
285
|
+
"attribute": "disabled",
|
|
286
|
+
"inheritedFrom": {
|
|
287
|
+
"name": "ListMixin",
|
|
288
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"kind": "field",
|
|
293
|
+
"name": "items",
|
|
294
|
+
"privacy": "public",
|
|
295
|
+
"type": {
|
|
296
|
+
"text": "!Array<!Element> | undefined"
|
|
297
|
+
},
|
|
298
|
+
"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.",
|
|
299
|
+
"attribute": "items",
|
|
300
|
+
"inheritedFrom": {
|
|
301
|
+
"name": "ListMixin",
|
|
302
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"kind": "field",
|
|
307
|
+
"name": "orientation",
|
|
308
|
+
"privacy": "public",
|
|
309
|
+
"type": {
|
|
310
|
+
"text": "!ListOrientation"
|
|
311
|
+
},
|
|
312
|
+
"description": "Set tabs disposition. Possible values are `horizontal|vertical`",
|
|
313
|
+
"attribute": "orientation",
|
|
314
|
+
"inheritedFrom": {
|
|
315
|
+
"name": "ListMixin",
|
|
316
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"kind": "field",
|
|
321
|
+
"name": "selected",
|
|
322
|
+
"privacy": "public",
|
|
323
|
+
"type": {
|
|
324
|
+
"text": "number"
|
|
325
|
+
},
|
|
326
|
+
"description": "The index of the selected tab.",
|
|
327
|
+
"attribute": "selected",
|
|
328
|
+
"inheritedFrom": {
|
|
329
|
+
"name": "ListMixin",
|
|
330
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
"events": [
|
|
335
|
+
{
|
|
336
|
+
"type": {
|
|
337
|
+
"text": "CustomEvent"
|
|
338
|
+
},
|
|
339
|
+
"description": "Fired when the `items` property changes.",
|
|
340
|
+
"name": "items-changed"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"type": {
|
|
344
|
+
"text": "CustomEvent"
|
|
345
|
+
},
|
|
346
|
+
"description": "Fired when the `selected` property changes.",
|
|
347
|
+
"name": "selected-changed"
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"mixins": [
|
|
351
|
+
{
|
|
352
|
+
"name": "TabsMixin",
|
|
353
|
+
"module": "src/vaadin-tabs-mixin.js"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "ElementMixin",
|
|
357
|
+
"package": "@vaadin/component-base/src/element-mixin.js"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"name": "ThemableMixin",
|
|
361
|
+
"package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "PolylitMixin",
|
|
365
|
+
"package": "@vaadin/component-base/src/polylit-mixin.js"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "LumoInjectionMixin",
|
|
369
|
+
"package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
|
|
370
|
+
}
|
|
371
|
+
],
|
|
372
|
+
"superclass": {
|
|
373
|
+
"name": "LitElement",
|
|
374
|
+
"package": "lit"
|
|
375
|
+
},
|
|
376
|
+
"tagName": "vaadin-tabs",
|
|
377
|
+
"customElement": true,
|
|
378
|
+
"attributes": [
|
|
379
|
+
{
|
|
380
|
+
"name": "disabled",
|
|
381
|
+
"type": {
|
|
382
|
+
"text": "boolean"
|
|
383
|
+
},
|
|
384
|
+
"description": "If true, the user cannot interact with this element.\nWhen the element is disabled, the selected item is\nnot updated when `selected` property is changed.",
|
|
385
|
+
"fieldName": "disabled",
|
|
386
|
+
"inheritedFrom": {
|
|
387
|
+
"name": "ListMixin",
|
|
388
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"name": "orientation",
|
|
393
|
+
"type": {
|
|
394
|
+
"text": "!ListOrientation"
|
|
395
|
+
},
|
|
396
|
+
"description": "Set tabs disposition. Possible values are `horizontal|vertical`",
|
|
397
|
+
"fieldName": "orientation",
|
|
398
|
+
"inheritedFrom": {
|
|
399
|
+
"name": "ListMixin",
|
|
400
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "selected",
|
|
405
|
+
"type": {
|
|
406
|
+
"text": "number"
|
|
407
|
+
},
|
|
408
|
+
"description": "The index of the selected tab.",
|
|
409
|
+
"fieldName": "selected",
|
|
410
|
+
"inheritedFrom": {
|
|
411
|
+
"name": "ListMixin",
|
|
412
|
+
"package": "@vaadin/a11y-base/src/list-mixin.js"
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
]
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
"exports": [
|
|
419
|
+
{
|
|
420
|
+
"kind": "js",
|
|
421
|
+
"name": "Tabs",
|
|
422
|
+
"declaration": {
|
|
423
|
+
"name": "Tabs",
|
|
424
|
+
"module": "src/vaadin-tabs.js"
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
]
|
|
428
|
+
}
|
|
429
|
+
]
|
|
430
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/tabs",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-alpha8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"src",
|
|
24
24
|
"vaadin-*.d.ts",
|
|
25
25
|
"vaadin-*.js",
|
|
26
|
+
"custom-elements.json",
|
|
26
27
|
"web-types.json",
|
|
27
28
|
"web-types.lit.json"
|
|
28
29
|
],
|
|
@@ -34,23 +35,24 @@
|
|
|
34
35
|
],
|
|
35
36
|
"dependencies": {
|
|
36
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/a11y-base": "25.1.0-
|
|
38
|
-
"@vaadin/component-base": "25.1.0-
|
|
39
|
-
"@vaadin/item": "25.1.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "25.1.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.1.0-alpha8",
|
|
39
|
+
"@vaadin/component-base": "25.1.0-alpha8",
|
|
40
|
+
"@vaadin/item": "25.1.0-alpha8",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-alpha8",
|
|
41
42
|
"lit": "^3.0.0"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
|
-
"@vaadin/aura": "25.1.0-
|
|
45
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
46
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
45
|
+
"@vaadin/aura": "25.1.0-alpha8",
|
|
46
|
+
"@vaadin/chai-plugins": "25.1.0-alpha8",
|
|
47
|
+
"@vaadin/test-runner-commands": "25.1.0-alpha8",
|
|
47
48
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-alpha8",
|
|
49
50
|
"sinon": "^21.0.0"
|
|
50
51
|
},
|
|
52
|
+
"customElements": "custom-elements.json",
|
|
51
53
|
"web-types": [
|
|
52
54
|
"web-types.json",
|
|
53
55
|
"web-types.lit.json"
|
|
54
56
|
],
|
|
55
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "810590c9c7682a9326c9352df795b5ea4891a71f"
|
|
56
58
|
}
|
package/src/vaadin-tab.js
CHANGED
|
@@ -47,7 +47,7 @@ import { tabStyles } from './styles/vaadin-tab-base-styles.js';
|
|
|
47
47
|
*
|
|
48
48
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
49
49
|
*
|
|
50
|
-
* @customElement
|
|
50
|
+
* @customElement vaadin-tab
|
|
51
51
|
* @extends HTMLElement
|
|
52
52
|
* @mixes ElementMixin
|
|
53
53
|
* @mixes ItemMixin
|
package/src/vaadin-tabs.js
CHANGED
|
@@ -60,7 +60,7 @@ import { TabsMixin } from './vaadin-tabs-mixin.js';
|
|
|
60
60
|
* @fires {CustomEvent} items-changed - Fired when the `items` property changes.
|
|
61
61
|
* @fires {CustomEvent} selected-changed - Fired when the `selected` property changes.
|
|
62
62
|
*
|
|
63
|
-
* @customElement
|
|
63
|
+
* @customElement vaadin-tabs
|
|
64
64
|
* @extends HTMLElement
|
|
65
65
|
* @mixes ElementMixin
|
|
66
66
|
* @mixes TabsMixin
|
package/web-types.json
CHANGED