@progress/kendo-vue-upload 4.3.0 → 4.3.1-dev.202402051124
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/README.md +1 -1
- package/dist/cdn/js/kendo-vue-upload.js +1 -1
- package/dist/es/UploadListActionButton.js +9 -6
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/UploadListActionButton.js +9 -6
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/UploadListActionButton.js +9 -6
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +5 -5
|
@@ -10,6 +10,7 @@ import { Button as KButton } from '@progress/kendo-vue-buttons';
|
|
|
10
10
|
import { UploadFileStatus } from './interfaces/UploadFileStatus';
|
|
11
11
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
12
12
|
import { messages, cancel, retry, remove } from './messages/main';
|
|
13
|
+
import { cancelIcon, xIcon, arrowRotateCwIcon } from '@progress/kendo-svg-icons';
|
|
13
14
|
/**
|
|
14
15
|
* @hidden
|
|
15
16
|
*/
|
|
@@ -118,19 +119,21 @@ var UploadListActionButtonVue2 = {
|
|
|
118
119
|
type: "button",
|
|
119
120
|
attrs: this.v3 ? undefined : {
|
|
120
121
|
type: "button",
|
|
122
|
+
fillMode: 'flat',
|
|
121
123
|
tabindex: -1,
|
|
122
124
|
disabled: this.disabled,
|
|
123
|
-
icon: 'arrow-rotate-cw-small'
|
|
124
|
-
|
|
125
|
-
,
|
|
125
|
+
icon: 'arrow-rotate-cw-small',
|
|
126
|
+
svgIcon: arrowRotateCwIcon,
|
|
126
127
|
iconClass: 'k-retry',
|
|
127
128
|
ariaLabel: this.retryButtonTitle(localizationService),
|
|
128
129
|
title: this.retryButtonTitle(localizationService)
|
|
129
130
|
},
|
|
131
|
+
fillMode: 'flat',
|
|
130
132
|
tabindex: -1,
|
|
131
133
|
disabled: this.disabled,
|
|
132
134
|
"class": this.buttonClassNames('retry'),
|
|
133
135
|
icon: 'arrow-rotate-cw-small',
|
|
136
|
+
svgIcon: arrowRotateCwIcon,
|
|
134
137
|
iconClass: 'k-retry',
|
|
135
138
|
ariaLabel: this.retryButtonTitle(localizationService),
|
|
136
139
|
title: this.retryButtonTitle(localizationService),
|
|
@@ -151,9 +154,8 @@ var UploadListActionButtonVue2 = {
|
|
|
151
154
|
fillMode: 'flat',
|
|
152
155
|
tabindex: -1,
|
|
153
156
|
disabled: this.disabled,
|
|
154
|
-
icon: isProgressVisible ? 'deny' : 'x'
|
|
155
|
-
|
|
156
|
-
,
|
|
157
|
+
icon: isProgressVisible ? 'deny' : 'x',
|
|
158
|
+
svgIcon: isProgressVisible ? cancelIcon : xIcon,
|
|
157
159
|
ariaLabel: this.actionButtonTitle(status, localizationService),
|
|
158
160
|
title: this.actionButtonTitle(status, localizationService)
|
|
159
161
|
},
|
|
@@ -170,6 +172,7 @@ var UploadListActionButtonVue2 = {
|
|
|
170
172
|
onBlur: this.onActionBlur,
|
|
171
173
|
onClick: this.onActionClick,
|
|
172
174
|
icon: isProgressVisible ? 'deny' : 'x',
|
|
175
|
+
svgIcon: isProgressVisible ? cancelIcon : xIcon,
|
|
173
176
|
ariaLabel: this.actionButtonTitle(status, localizationService),
|
|
174
177
|
title: this.actionButtonTitle(status, localizationService)
|
|
175
178
|
}) : undefined]);
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-upload',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1707132189,
|
|
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
|
};
|
|
@@ -10,6 +10,7 @@ import { Button as KButton } from '@progress/kendo-vue-buttons';
|
|
|
10
10
|
import { UploadFileStatus } from './interfaces/UploadFileStatus.js';
|
|
11
11
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
12
12
|
import { messages, cancel, retry, remove } from './messages/main.js';
|
|
13
|
+
import { cancelIcon, xIcon, arrowRotateCwIcon } from '@progress/kendo-svg-icons';
|
|
13
14
|
/**
|
|
14
15
|
* @hidden
|
|
15
16
|
*/
|
|
@@ -118,19 +119,21 @@ var UploadListActionButtonVue2 = {
|
|
|
118
119
|
type: "button",
|
|
119
120
|
attrs: this.v3 ? undefined : {
|
|
120
121
|
type: "button",
|
|
122
|
+
fillMode: 'flat',
|
|
121
123
|
tabindex: -1,
|
|
122
124
|
disabled: this.disabled,
|
|
123
|
-
icon: 'arrow-rotate-cw-small'
|
|
124
|
-
|
|
125
|
-
,
|
|
125
|
+
icon: 'arrow-rotate-cw-small',
|
|
126
|
+
svgIcon: arrowRotateCwIcon,
|
|
126
127
|
iconClass: 'k-retry',
|
|
127
128
|
ariaLabel: this.retryButtonTitle(localizationService),
|
|
128
129
|
title: this.retryButtonTitle(localizationService)
|
|
129
130
|
},
|
|
131
|
+
fillMode: 'flat',
|
|
130
132
|
tabindex: -1,
|
|
131
133
|
disabled: this.disabled,
|
|
132
134
|
"class": this.buttonClassNames('retry'),
|
|
133
135
|
icon: 'arrow-rotate-cw-small',
|
|
136
|
+
svgIcon: arrowRotateCwIcon,
|
|
134
137
|
iconClass: 'k-retry',
|
|
135
138
|
ariaLabel: this.retryButtonTitle(localizationService),
|
|
136
139
|
title: this.retryButtonTitle(localizationService),
|
|
@@ -151,9 +154,8 @@ var UploadListActionButtonVue2 = {
|
|
|
151
154
|
fillMode: 'flat',
|
|
152
155
|
tabindex: -1,
|
|
153
156
|
disabled: this.disabled,
|
|
154
|
-
icon: isProgressVisible ? 'deny' : 'x'
|
|
155
|
-
|
|
156
|
-
,
|
|
157
|
+
icon: isProgressVisible ? 'deny' : 'x',
|
|
158
|
+
svgIcon: isProgressVisible ? cancelIcon : xIcon,
|
|
157
159
|
ariaLabel: this.actionButtonTitle(status, localizationService),
|
|
158
160
|
title: this.actionButtonTitle(status, localizationService)
|
|
159
161
|
},
|
|
@@ -170,6 +172,7 @@ var UploadListActionButtonVue2 = {
|
|
|
170
172
|
onBlur: this.onActionBlur,
|
|
171
173
|
onClick: this.onActionClick,
|
|
172
174
|
icon: isProgressVisible ? 'deny' : 'x',
|
|
175
|
+
svgIcon: isProgressVisible ? cancelIcon : xIcon,
|
|
173
176
|
ariaLabel: this.actionButtonTitle(status, localizationService),
|
|
174
177
|
title: this.actionButtonTitle(status, localizationService)
|
|
175
178
|
}) : undefined]);
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-upload',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1707132189,
|
|
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
|
};
|
|
@@ -16,6 +16,7 @@ var kendo_vue_buttons_1 = require("@progress/kendo-vue-buttons");
|
|
|
16
16
|
var UploadFileStatus_1 = require("./interfaces/UploadFileStatus");
|
|
17
17
|
var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
|
|
18
18
|
var main_1 = require("./messages/main");
|
|
19
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
19
20
|
/**
|
|
20
21
|
* @hidden
|
|
21
22
|
*/
|
|
@@ -124,19 +125,21 @@ var UploadListActionButtonVue2 = {
|
|
|
124
125
|
type: "button",
|
|
125
126
|
attrs: this.v3 ? undefined : {
|
|
126
127
|
type: "button",
|
|
128
|
+
fillMode: 'flat',
|
|
127
129
|
tabindex: -1,
|
|
128
130
|
disabled: this.disabled,
|
|
129
|
-
icon: 'arrow-rotate-cw-small'
|
|
130
|
-
|
|
131
|
-
,
|
|
131
|
+
icon: 'arrow-rotate-cw-small',
|
|
132
|
+
svgIcon: kendo_svg_icons_1.arrowRotateCwIcon,
|
|
132
133
|
iconClass: 'k-retry',
|
|
133
134
|
ariaLabel: this.retryButtonTitle(localizationService),
|
|
134
135
|
title: this.retryButtonTitle(localizationService)
|
|
135
136
|
},
|
|
137
|
+
fillMode: 'flat',
|
|
136
138
|
tabindex: -1,
|
|
137
139
|
disabled: this.disabled,
|
|
138
140
|
"class": this.buttonClassNames('retry'),
|
|
139
141
|
icon: 'arrow-rotate-cw-small',
|
|
142
|
+
svgIcon: kendo_svg_icons_1.arrowRotateCwIcon,
|
|
140
143
|
iconClass: 'k-retry',
|
|
141
144
|
ariaLabel: this.retryButtonTitle(localizationService),
|
|
142
145
|
title: this.retryButtonTitle(localizationService),
|
|
@@ -157,9 +160,8 @@ var UploadListActionButtonVue2 = {
|
|
|
157
160
|
fillMode: 'flat',
|
|
158
161
|
tabindex: -1,
|
|
159
162
|
disabled: this.disabled,
|
|
160
|
-
icon: isProgressVisible ? 'deny' : 'x'
|
|
161
|
-
|
|
162
|
-
,
|
|
163
|
+
icon: isProgressVisible ? 'deny' : 'x',
|
|
164
|
+
svgIcon: isProgressVisible ? kendo_svg_icons_1.cancelIcon : kendo_svg_icons_1.xIcon,
|
|
163
165
|
ariaLabel: this.actionButtonTitle(status, localizationService),
|
|
164
166
|
title: this.actionButtonTitle(status, localizationService)
|
|
165
167
|
},
|
|
@@ -176,6 +178,7 @@ var UploadListActionButtonVue2 = {
|
|
|
176
178
|
onBlur: this.onActionBlur,
|
|
177
179
|
onClick: this.onActionClick,
|
|
178
180
|
icon: isProgressVisible ? 'deny' : 'x',
|
|
181
|
+
svgIcon: isProgressVisible ? kendo_svg_icons_1.cancelIcon : kendo_svg_icons_1.xIcon,
|
|
179
182
|
ariaLabel: this.actionButtonTitle(status, localizationService),
|
|
180
183
|
title: this.actionButtonTitle(status, localizationService)
|
|
181
184
|
}) : undefined]);
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-upload',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1707132189,
|
|
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-upload",
|
|
3
3
|
"description": "Kendo UI for Vue Upload package",
|
|
4
|
-
"version": "4.3.
|
|
4
|
+
"version": "4.3.1-dev.202402051124",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"vue": "^2.6.12 || ^3.0.2"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@progress/kendo-vue-buttons": "4.3.
|
|
38
|
-
"@progress/kendo-vue-common": "4.3.
|
|
39
|
-
"@progress/kendo-vue-progressbars": "4.3.
|
|
37
|
+
"@progress/kendo-vue-buttons": "4.3.1-dev.202402051124",
|
|
38
|
+
"@progress/kendo-vue-common": "4.3.1-dev.202402051124",
|
|
39
|
+
"@progress/kendo-vue-progressbars": "4.3.1-dev.202402051124",
|
|
40
40
|
"axios": "^1.6.5"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@progress/kendo-licensing": "^1.3.0",
|
|
44
44
|
"@progress/kendo-svg-icons": "^2.0.0",
|
|
45
|
-
"@progress/kendo-vue-intl": "4.3.
|
|
45
|
+
"@progress/kendo-vue-intl": "4.3.1-dev.202402051124"
|
|
46
46
|
},
|
|
47
47
|
"@progress": {
|
|
48
48
|
"friendlyName": "Upload",
|