@progress/kendo-vue-layout 3.5.2-dev.202209020458 → 3.5.3-dev.202209051408
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/dist/cdn/js/kendo-vue-layout.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tabstrip/TabStripContent.js +25 -40
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/tabstrip/TabStripContent.js +25 -40
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tabstrip/TabStripContent.js +25 -40
- package/package.json +10 -10
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-layout',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1662386269,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -66,8 +66,6 @@ var TabStripContentVue2 = {
|
|
|
66
66
|
}, selectedTab && selectedTab.contentClassName);
|
|
67
67
|
|
|
68
68
|
var renderChild = function renderChild(tab, idx) {
|
|
69
|
-
var _this = this;
|
|
70
|
-
|
|
71
69
|
var visible = idx === this.$props.selected;
|
|
72
70
|
var animationStyle = {
|
|
73
71
|
position: 'initial',
|
|
@@ -79,46 +77,33 @@ var TabStripContentVue2 = {
|
|
|
79
77
|
template: tab.content,
|
|
80
78
|
defaultRendering: null
|
|
81
79
|
}) : tab;
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
attrs: this.v3 ? undefined : {
|
|
86
|
-
appear: this.v3 ? true : visible,
|
|
87
|
-
enter: this.$props.animation,
|
|
88
|
-
exit: this.$props.keepTabsMounted
|
|
89
|
-
},
|
|
90
|
-
key: idx,
|
|
91
|
-
"class": this.animationClass[idx],
|
|
92
|
-
enter: this.$props.animation,
|
|
93
|
-
exit: this.$props.keepTabsMounted,
|
|
94
|
-
style: animationStyle
|
|
95
|
-
}, this.v3 ? function () {
|
|
96
|
-
return [h("div", {
|
|
97
|
-
role: 'tabpanel',
|
|
98
|
-
attrs: _this.v3 ? undefined : {
|
|
99
|
-
role: 'tabpanel',
|
|
100
|
-
"aria-expanded": true,
|
|
101
|
-
id: String(_this.contentId + idx)
|
|
102
|
-
},
|
|
103
|
-
"aria-expanded": true,
|
|
104
|
-
id: String(_this.contentId + idx),
|
|
105
|
-
key: idx
|
|
106
|
-
}, [// hasTabs ?
|
|
107
|
-
// visible ? content : null
|
|
108
|
-
// :
|
|
109
|
-
content])];
|
|
110
|
-
} : [h("div", {
|
|
80
|
+
var tabPanel = h("div", {
|
|
81
|
+
role: 'tabpanel',
|
|
82
|
+
attrs: this.v3 ? undefined : {
|
|
111
83
|
role: 'tabpanel',
|
|
112
|
-
attrs: _this.v3 ? undefined : {
|
|
113
|
-
role: 'tabpanel',
|
|
114
|
-
"aria-expanded": true,
|
|
115
|
-
id: String(_this.contentId + idx)
|
|
116
|
-
},
|
|
117
84
|
"aria-expanded": true,
|
|
118
|
-
id: String(
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
85
|
+
id: String(this.contentId + idx)
|
|
86
|
+
},
|
|
87
|
+
"aria-expanded": true,
|
|
88
|
+
id: String(this.contentId + idx),
|
|
89
|
+
key: idx
|
|
90
|
+
}, [content]);
|
|
91
|
+
return (hasTabs ? this.animation : true) ? // @ts-ignore function children
|
|
92
|
+
h(Fade, {
|
|
93
|
+
appear: this.v3 ? true : visible,
|
|
94
|
+
attrs: this.v3 ? undefined : {
|
|
95
|
+
appear: this.v3 ? true : visible,
|
|
96
|
+
enter: this.$props.animation,
|
|
97
|
+
exit: this.$props.keepTabsMounted
|
|
98
|
+
},
|
|
99
|
+
key: idx,
|
|
100
|
+
"class": this.animationClass[idx],
|
|
101
|
+
enter: this.$props.animation,
|
|
102
|
+
exit: this.$props.keepTabsMounted,
|
|
103
|
+
style: animationStyle
|
|
104
|
+
}, this.v3 ? function () {
|
|
105
|
+
return [tabPanel];
|
|
106
|
+
} : [tabPanel]) : visible ? tabPanel : null;
|
|
122
107
|
};
|
|
123
108
|
|
|
124
109
|
var renderContent = function renderContent() {
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-layout',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1662386269,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -66,8 +66,6 @@ var TabStripContentVue2 = {
|
|
|
66
66
|
}, selectedTab && selectedTab.contentClassName);
|
|
67
67
|
|
|
68
68
|
var renderChild = function renderChild(tab, idx) {
|
|
69
|
-
var _this = this;
|
|
70
|
-
|
|
71
69
|
var visible = idx === this.$props.selected;
|
|
72
70
|
var animationStyle = {
|
|
73
71
|
position: 'initial',
|
|
@@ -79,46 +77,33 @@ var TabStripContentVue2 = {
|
|
|
79
77
|
template: tab.content,
|
|
80
78
|
defaultRendering: null
|
|
81
79
|
}) : tab;
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
attrs: this.v3 ? undefined : {
|
|
86
|
-
appear: this.v3 ? true : visible,
|
|
87
|
-
enter: this.$props.animation,
|
|
88
|
-
exit: this.$props.keepTabsMounted
|
|
89
|
-
},
|
|
90
|
-
key: idx,
|
|
91
|
-
"class": this.animationClass[idx],
|
|
92
|
-
enter: this.$props.animation,
|
|
93
|
-
exit: this.$props.keepTabsMounted,
|
|
94
|
-
style: animationStyle
|
|
95
|
-
}, this.v3 ? function () {
|
|
96
|
-
return [h("div", {
|
|
97
|
-
role: 'tabpanel',
|
|
98
|
-
attrs: _this.v3 ? undefined : {
|
|
99
|
-
role: 'tabpanel',
|
|
100
|
-
"aria-expanded": true,
|
|
101
|
-
id: String(_this.contentId + idx)
|
|
102
|
-
},
|
|
103
|
-
"aria-expanded": true,
|
|
104
|
-
id: String(_this.contentId + idx),
|
|
105
|
-
key: idx
|
|
106
|
-
}, [// hasTabs ?
|
|
107
|
-
// visible ? content : null
|
|
108
|
-
// :
|
|
109
|
-
content])];
|
|
110
|
-
} : [h("div", {
|
|
80
|
+
var tabPanel = h("div", {
|
|
81
|
+
role: 'tabpanel',
|
|
82
|
+
attrs: this.v3 ? undefined : {
|
|
111
83
|
role: 'tabpanel',
|
|
112
|
-
attrs: _this.v3 ? undefined : {
|
|
113
|
-
role: 'tabpanel',
|
|
114
|
-
"aria-expanded": true,
|
|
115
|
-
id: String(_this.contentId + idx)
|
|
116
|
-
},
|
|
117
84
|
"aria-expanded": true,
|
|
118
|
-
id: String(
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
85
|
+
id: String(this.contentId + idx)
|
|
86
|
+
},
|
|
87
|
+
"aria-expanded": true,
|
|
88
|
+
id: String(this.contentId + idx),
|
|
89
|
+
key: idx
|
|
90
|
+
}, [content]);
|
|
91
|
+
return (hasTabs ? this.animation : true) ? // @ts-ignore function children
|
|
92
|
+
h(Fade, {
|
|
93
|
+
appear: this.v3 ? true : visible,
|
|
94
|
+
attrs: this.v3 ? undefined : {
|
|
95
|
+
appear: this.v3 ? true : visible,
|
|
96
|
+
enter: this.$props.animation,
|
|
97
|
+
exit: this.$props.keepTabsMounted
|
|
98
|
+
},
|
|
99
|
+
key: idx,
|
|
100
|
+
"class": this.animationClass[idx],
|
|
101
|
+
enter: this.$props.animation,
|
|
102
|
+
exit: this.$props.keepTabsMounted,
|
|
103
|
+
style: animationStyle
|
|
104
|
+
}, this.v3 ? function () {
|
|
105
|
+
return [tabPanel];
|
|
106
|
+
} : [tabPanel]) : visible ? tabPanel : null;
|
|
122
107
|
};
|
|
123
108
|
|
|
124
109
|
var renderContent = function renderContent() {
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-layout',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1662386269,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
|
@@ -77,8 +77,6 @@ var TabStripContentVue2 = {
|
|
|
77
77
|
}, selectedTab && selectedTab.contentClassName);
|
|
78
78
|
|
|
79
79
|
var renderChild = function renderChild(tab, idx) {
|
|
80
|
-
var _this = this;
|
|
81
|
-
|
|
82
80
|
var visible = idx === this.$props.selected;
|
|
83
81
|
var animationStyle = {
|
|
84
82
|
position: 'initial',
|
|
@@ -90,46 +88,33 @@ var TabStripContentVue2 = {
|
|
|
90
88
|
template: tab.content,
|
|
91
89
|
defaultRendering: null
|
|
92
90
|
}) : tab;
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
attrs: this.v3 ? undefined : {
|
|
97
|
-
appear: this.v3 ? true : visible,
|
|
98
|
-
enter: this.$props.animation,
|
|
99
|
-
exit: this.$props.keepTabsMounted
|
|
100
|
-
},
|
|
101
|
-
key: idx,
|
|
102
|
-
"class": this.animationClass[idx],
|
|
103
|
-
enter: this.$props.animation,
|
|
104
|
-
exit: this.$props.keepTabsMounted,
|
|
105
|
-
style: animationStyle
|
|
106
|
-
}, this.v3 ? function () {
|
|
107
|
-
return [h("div", {
|
|
108
|
-
role: 'tabpanel',
|
|
109
|
-
attrs: _this.v3 ? undefined : {
|
|
110
|
-
role: 'tabpanel',
|
|
111
|
-
"aria-expanded": true,
|
|
112
|
-
id: String(_this.contentId + idx)
|
|
113
|
-
},
|
|
114
|
-
"aria-expanded": true,
|
|
115
|
-
id: String(_this.contentId + idx),
|
|
116
|
-
key: idx
|
|
117
|
-
}, [// hasTabs ?
|
|
118
|
-
// visible ? content : null
|
|
119
|
-
// :
|
|
120
|
-
content])];
|
|
121
|
-
} : [h("div", {
|
|
91
|
+
var tabPanel = h("div", {
|
|
92
|
+
role: 'tabpanel',
|
|
93
|
+
attrs: this.v3 ? undefined : {
|
|
122
94
|
role: 'tabpanel',
|
|
123
|
-
attrs: _this.v3 ? undefined : {
|
|
124
|
-
role: 'tabpanel',
|
|
125
|
-
"aria-expanded": true,
|
|
126
|
-
id: String(_this.contentId + idx)
|
|
127
|
-
},
|
|
128
95
|
"aria-expanded": true,
|
|
129
|
-
id: String(
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
96
|
+
id: String(this.contentId + idx)
|
|
97
|
+
},
|
|
98
|
+
"aria-expanded": true,
|
|
99
|
+
id: String(this.contentId + idx),
|
|
100
|
+
key: idx
|
|
101
|
+
}, [content]);
|
|
102
|
+
return (hasTabs ? this.animation : true) ? // @ts-ignore function children
|
|
103
|
+
h(kendo_vue_animation_1.Fade, {
|
|
104
|
+
appear: this.v3 ? true : visible,
|
|
105
|
+
attrs: this.v3 ? undefined : {
|
|
106
|
+
appear: this.v3 ? true : visible,
|
|
107
|
+
enter: this.$props.animation,
|
|
108
|
+
exit: this.$props.keepTabsMounted
|
|
109
|
+
},
|
|
110
|
+
key: idx,
|
|
111
|
+
"class": this.animationClass[idx],
|
|
112
|
+
enter: this.$props.animation,
|
|
113
|
+
exit: this.$props.keepTabsMounted,
|
|
114
|
+
style: animationStyle
|
|
115
|
+
}, this.v3 ? function () {
|
|
116
|
+
return [tabPanel];
|
|
117
|
+
} : [tabPanel]) : visible ? tabPanel : null;
|
|
133
118
|
};
|
|
134
119
|
|
|
135
120
|
var renderContent = function renderContent() {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-layout",
|
|
3
3
|
"description": "Kendo UI for Vue Layouts package",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.3-dev.202209051408",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -43,21 +43,21 @@
|
|
|
43
43
|
"vue": "^2.6.12 || ^3.0.2"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-vue-animation": "3.5.
|
|
47
|
-
"@progress/kendo-vue-common": "3.5.
|
|
48
|
-
"@progress/kendo-vue-popup": "3.5.
|
|
46
|
+
"@progress/kendo-vue-animation": "3.5.3-dev.202209051408",
|
|
47
|
+
"@progress/kendo-vue-common": "3.5.3-dev.202209051408",
|
|
48
|
+
"@progress/kendo-vue-popup": "3.5.3-dev.202209051408"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@progress/kendo-data-query": "^1.5.0",
|
|
52
52
|
"@progress/kendo-date-math": "^1.5.1",
|
|
53
53
|
"@progress/kendo-drawing": "^1.8.0",
|
|
54
54
|
"@progress/kendo-licensing": "^1.0.1",
|
|
55
|
-
"@progress/kendo-vue-buttons": "3.5.
|
|
56
|
-
"@progress/kendo-vue-dateinputs": "3.5.
|
|
57
|
-
"@progress/kendo-vue-dropdowns": "3.5.
|
|
58
|
-
"@progress/kendo-vue-inputs": "3.5.
|
|
59
|
-
"@progress/kendo-vue-intl": "3.5.
|
|
60
|
-
"@progress/kendo-vue-progressbars": "3.5.
|
|
55
|
+
"@progress/kendo-vue-buttons": "3.5.3-dev.202209051408",
|
|
56
|
+
"@progress/kendo-vue-dateinputs": "3.5.3-dev.202209051408",
|
|
57
|
+
"@progress/kendo-vue-dropdowns": "3.5.3-dev.202209051408",
|
|
58
|
+
"@progress/kendo-vue-inputs": "3.5.3-dev.202209051408",
|
|
59
|
+
"@progress/kendo-vue-intl": "3.5.3-dev.202209051408",
|
|
60
|
+
"@progress/kendo-vue-progressbars": "3.5.3-dev.202209051408"
|
|
61
61
|
},
|
|
62
62
|
"@progress": {
|
|
63
63
|
"friendlyName": "Layouts",
|