@progress/kendo-vue-scrollview 3.10.2 → 3.11.0-dev.202305230751
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-scrollview.js +1 -1
- package/dist/es/ScrollView.js +12 -9
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/ScrollView.js +12 -9
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/ScrollView.js +12 -9
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +6 -6
package/dist/es/ScrollView.js
CHANGED
|
@@ -72,7 +72,6 @@ var ScrollViewVue2 = {
|
|
|
72
72
|
computed: {
|
|
73
73
|
scrollViewClasses: function scrollViewClasses() {
|
|
74
74
|
return {
|
|
75
|
-
'k-widget': true,
|
|
76
75
|
'k-scrollview': true,
|
|
77
76
|
'k-scrollview-light': this.pagerOverlay === 'light',
|
|
78
77
|
'k-scrollview-dark': this.pagerOverlay === 'dark'
|
|
@@ -163,12 +162,14 @@ var ScrollViewVue2 = {
|
|
|
163
162
|
"click": this.handlePrevClick
|
|
164
163
|
}
|
|
165
164
|
}, [h(Icon, {
|
|
166
|
-
name:
|
|
165
|
+
name: this.isRtl ? 'chevron-right' : 'chevron-left',
|
|
167
166
|
attrs: this.v3 ? undefined : {
|
|
168
|
-
name:
|
|
169
|
-
icon: chevronLeftIcon
|
|
167
|
+
name: this.isRtl ? 'chevron-right' : 'chevron-left',
|
|
168
|
+
icon: this.isRtl ? chevronRightIcon : chevronLeftIcon,
|
|
169
|
+
size: 'xxxlarge'
|
|
170
170
|
},
|
|
171
|
-
icon: chevronLeftIcon
|
|
171
|
+
icon: this.isRtl ? chevronRightIcon : chevronLeftIcon,
|
|
172
|
+
size: 'xxxlarge'
|
|
172
173
|
})]), this.displayRightArrow && h("a", {
|
|
173
174
|
"class": "k-scrollview-next",
|
|
174
175
|
"aria-label": "next",
|
|
@@ -180,12 +181,14 @@ var ScrollViewVue2 = {
|
|
|
180
181
|
"click": this.handleNextClick
|
|
181
182
|
}
|
|
182
183
|
}, [h(Icon, {
|
|
183
|
-
name:
|
|
184
|
+
name: this.isRtl ? 'chevron-left' : 'chevron-right',
|
|
184
185
|
attrs: this.v3 ? undefined : {
|
|
185
|
-
name:
|
|
186
|
-
icon: chevronRightIcon
|
|
186
|
+
name: this.isRtl ? 'chevron-left' : 'chevron-right',
|
|
187
|
+
icon: this.isRtl ? chevronLeftIcon : chevronRightIcon,
|
|
188
|
+
size: 'xxxlarge'
|
|
187
189
|
},
|
|
188
|
-
icon: chevronRightIcon
|
|
190
|
+
icon: this.isRtl ? chevronLeftIcon : chevronRightIcon,
|
|
191
|
+
size: 'xxxlarge'
|
|
189
192
|
})])], pageable && h("div", {
|
|
190
193
|
"class": "k-scrollview-nav-wrap"
|
|
191
194
|
}, [h("ul", {
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-scrollview',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1684828129,
|
|
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
|
};
|
package/dist/esm/ScrollView.js
CHANGED
|
@@ -72,7 +72,6 @@ var ScrollViewVue2 = {
|
|
|
72
72
|
computed: {
|
|
73
73
|
scrollViewClasses: function scrollViewClasses() {
|
|
74
74
|
return {
|
|
75
|
-
'k-widget': true,
|
|
76
75
|
'k-scrollview': true,
|
|
77
76
|
'k-scrollview-light': this.pagerOverlay === 'light',
|
|
78
77
|
'k-scrollview-dark': this.pagerOverlay === 'dark'
|
|
@@ -163,12 +162,14 @@ var ScrollViewVue2 = {
|
|
|
163
162
|
"click": this.handlePrevClick
|
|
164
163
|
}
|
|
165
164
|
}, [h(Icon, {
|
|
166
|
-
name:
|
|
165
|
+
name: this.isRtl ? 'chevron-right' : 'chevron-left',
|
|
167
166
|
attrs: this.v3 ? undefined : {
|
|
168
|
-
name:
|
|
169
|
-
icon: chevronLeftIcon
|
|
167
|
+
name: this.isRtl ? 'chevron-right' : 'chevron-left',
|
|
168
|
+
icon: this.isRtl ? chevronRightIcon : chevronLeftIcon,
|
|
169
|
+
size: 'xxxlarge'
|
|
170
170
|
},
|
|
171
|
-
icon: chevronLeftIcon
|
|
171
|
+
icon: this.isRtl ? chevronRightIcon : chevronLeftIcon,
|
|
172
|
+
size: 'xxxlarge'
|
|
172
173
|
})]), this.displayRightArrow && h("a", {
|
|
173
174
|
"class": "k-scrollview-next",
|
|
174
175
|
"aria-label": "next",
|
|
@@ -180,12 +181,14 @@ var ScrollViewVue2 = {
|
|
|
180
181
|
"click": this.handleNextClick
|
|
181
182
|
}
|
|
182
183
|
}, [h(Icon, {
|
|
183
|
-
name:
|
|
184
|
+
name: this.isRtl ? 'chevron-left' : 'chevron-right',
|
|
184
185
|
attrs: this.v3 ? undefined : {
|
|
185
|
-
name:
|
|
186
|
-
icon: chevronRightIcon
|
|
186
|
+
name: this.isRtl ? 'chevron-left' : 'chevron-right',
|
|
187
|
+
icon: this.isRtl ? chevronLeftIcon : chevronRightIcon,
|
|
188
|
+
size: 'xxxlarge'
|
|
187
189
|
},
|
|
188
|
-
icon: chevronRightIcon
|
|
190
|
+
icon: this.isRtl ? chevronLeftIcon : chevronRightIcon,
|
|
191
|
+
size: 'xxxlarge'
|
|
189
192
|
})])], pageable && h("div", {
|
|
190
193
|
"class": "k-scrollview-nav-wrap"
|
|
191
194
|
}, [h("ul", {
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-scrollview',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1684828129,
|
|
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
|
};
|
package/dist/npm/ScrollView.js
CHANGED
|
@@ -78,7 +78,6 @@ var ScrollViewVue2 = {
|
|
|
78
78
|
computed: {
|
|
79
79
|
scrollViewClasses: function scrollViewClasses() {
|
|
80
80
|
return {
|
|
81
|
-
'k-widget': true,
|
|
82
81
|
'k-scrollview': true,
|
|
83
82
|
'k-scrollview-light': this.pagerOverlay === 'light',
|
|
84
83
|
'k-scrollview-dark': this.pagerOverlay === 'dark'
|
|
@@ -169,12 +168,14 @@ var ScrollViewVue2 = {
|
|
|
169
168
|
"click": this.handlePrevClick
|
|
170
169
|
}
|
|
171
170
|
}, [h(kendo_vue_common_1.Icon, {
|
|
172
|
-
name:
|
|
171
|
+
name: this.isRtl ? 'chevron-right' : 'chevron-left',
|
|
173
172
|
attrs: this.v3 ? undefined : {
|
|
174
|
-
name:
|
|
175
|
-
icon: kendo_svg_icons_1.chevronLeftIcon
|
|
173
|
+
name: this.isRtl ? 'chevron-right' : 'chevron-left',
|
|
174
|
+
icon: this.isRtl ? kendo_svg_icons_1.chevronRightIcon : kendo_svg_icons_1.chevronLeftIcon,
|
|
175
|
+
size: 'xxxlarge'
|
|
176
176
|
},
|
|
177
|
-
icon: kendo_svg_icons_1.chevronLeftIcon
|
|
177
|
+
icon: this.isRtl ? kendo_svg_icons_1.chevronRightIcon : kendo_svg_icons_1.chevronLeftIcon,
|
|
178
|
+
size: 'xxxlarge'
|
|
178
179
|
})]), this.displayRightArrow && h("a", {
|
|
179
180
|
"class": "k-scrollview-next",
|
|
180
181
|
"aria-label": "next",
|
|
@@ -186,12 +187,14 @@ var ScrollViewVue2 = {
|
|
|
186
187
|
"click": this.handleNextClick
|
|
187
188
|
}
|
|
188
189
|
}, [h(kendo_vue_common_1.Icon, {
|
|
189
|
-
name:
|
|
190
|
+
name: this.isRtl ? 'chevron-left' : 'chevron-right',
|
|
190
191
|
attrs: this.v3 ? undefined : {
|
|
191
|
-
name:
|
|
192
|
-
icon: kendo_svg_icons_1.chevronRightIcon
|
|
192
|
+
name: this.isRtl ? 'chevron-left' : 'chevron-right',
|
|
193
|
+
icon: this.isRtl ? kendo_svg_icons_1.chevronLeftIcon : kendo_svg_icons_1.chevronRightIcon,
|
|
194
|
+
size: 'xxxlarge'
|
|
193
195
|
},
|
|
194
|
-
icon: kendo_svg_icons_1.chevronRightIcon
|
|
196
|
+
icon: this.isRtl ? kendo_svg_icons_1.chevronLeftIcon : kendo_svg_icons_1.chevronRightIcon,
|
|
197
|
+
size: 'xxxlarge'
|
|
195
198
|
})])], pageable && h("div", {
|
|
196
199
|
"class": "k-scrollview-nav-wrap"
|
|
197
200
|
}, [h("ul", {
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-scrollview',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1684828129,
|
|
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
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-scrollview",
|
|
3
3
|
"description": "Kendo UI for Vue ScrollView package",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.11.0-dev.202305230751",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
"@progress/kendo-drawing": "^1.8.0",
|
|
44
44
|
"@progress/kendo-licensing": "^1.3.0",
|
|
45
45
|
"@progress/kendo-svg-icons": "^1.0.0",
|
|
46
|
-
"@progress/kendo-vue-animation": "3.
|
|
47
|
-
"@progress/kendo-vue-buttons": "3.
|
|
48
|
-
"@progress/kendo-vue-inputs": "3.
|
|
49
|
-
"@progress/kendo-vue-intl": "3.
|
|
46
|
+
"@progress/kendo-vue-animation": "3.11.0-dev.202305230751",
|
|
47
|
+
"@progress/kendo-vue-buttons": "3.11.0-dev.202305230751",
|
|
48
|
+
"@progress/kendo-vue-inputs": "3.11.0-dev.202305230751",
|
|
49
|
+
"@progress/kendo-vue-intl": "3.11.0-dev.202305230751"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-vue-common": "3.
|
|
52
|
+
"@progress/kendo-vue-common": "3.11.0-dev.202305230751"
|
|
53
53
|
},
|
|
54
54
|
"@progress": {
|
|
55
55
|
"friendlyName": "ScrollView",
|