@vaadin/tabsheet 25.0.0-alpha15 → 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 +10 -10
- package/src/vaadin-tabsheet-mixin.d.ts +1 -3
- package/src/vaadin-tabsheet-mixin.js +1 -3
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/tabsheet",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-alpha17",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,22 +34,22 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/component-base": "25.0.0-
|
|
38
|
-
"@vaadin/scroller": "25.0.0-
|
|
39
|
-
"@vaadin/tabs": "25.0.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
37
|
+
"@vaadin/component-base": "25.0.0-alpha17",
|
|
38
|
+
"@vaadin/scroller": "25.0.0-alpha17",
|
|
39
|
+
"@vaadin/tabs": "25.0.0-alpha17",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha17",
|
|
41
41
|
"lit": "^3.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
45
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
44
|
+
"@vaadin/chai-plugins": "25.0.0-alpha17",
|
|
45
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha17",
|
|
46
46
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
48
|
-
"sinon": "^
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha17",
|
|
48
|
+
"sinon": "^21.0.0"
|
|
49
49
|
},
|
|
50
50
|
"web-types": [
|
|
51
51
|
"web-types.json",
|
|
52
52
|
"web-types.lit.json"
|
|
53
53
|
],
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "8264c71309907be99368b09414f0f8d7f591e0b9"
|
|
55
55
|
}
|
|
@@ -21,11 +21,9 @@ export declare class TabSheetMixinClass<Tab extends HTMLElement> {
|
|
|
21
21
|
selected: number | null | undefined;
|
|
22
22
|
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* A read-only list of `<vaadin-tab>`s from which a selection can be made.
|
|
25
25
|
* It is populated from the elements passed inside the slotted
|
|
26
26
|
* `<vaadin-tabs>`, and updated dynamically when adding or removing items.
|
|
27
|
-
*
|
|
28
|
-
* Note: unlike `<vaadin-combo-box>`, this property is read-only.
|
|
29
27
|
*/
|
|
30
28
|
readonly items: Tab[] | undefined;
|
|
31
29
|
}
|
|
@@ -79,11 +79,9 @@ export const TabSheetMixin = (superClass) =>
|
|
|
79
79
|
static get properties() {
|
|
80
80
|
return {
|
|
81
81
|
/**
|
|
82
|
-
*
|
|
82
|
+
* A read-only list of `<vaadin-tab>`s from which a selection can be made.
|
|
83
83
|
* It is populated from the elements passed inside the slotted
|
|
84
84
|
* `<vaadin-tabs>`, and updated dynamically when adding or removing items.
|
|
85
|
-
*
|
|
86
|
-
* Note: unlike `<vaadin-combo-box>`, this property is read-only.
|
|
87
85
|
* @type {!Array<!Tab> | undefined}
|
|
88
86
|
*/
|
|
89
87
|
items: {
|
package/web-types.json
CHANGED