@progress/kendo-vue-upload 3.7.4-dev.202211301436 → 3.7.4-dev.202212020747
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-upload.js +1 -1
- package/dist/es/Upload.js +2 -1
- package/dist/es/interfaces/UploadProps.d.ts +4 -0
- package/dist/es/main.d.ts +2 -1
- package/dist/es/main.js +2 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/utils/validationUtils.js +4 -1
- package/dist/esm/Upload.js +2 -1
- package/dist/esm/interfaces/UploadProps.d.ts +4 -0
- package/dist/esm/main.d.ts +2 -1
- package/dist/esm/main.js +2 -1
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/utils/validationUtils.js +4 -1
- package/dist/npm/Upload.js +2 -1
- package/dist/npm/interfaces/UploadProps.d.ts +4 -0
- package/dist/npm/main.d.ts +2 -1
- package/dist/npm/main.js +3 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/utils/validationUtils.js +4 -1
- package/package.json +5 -5
package/dist/es/Upload.js
CHANGED
|
@@ -132,6 +132,7 @@ var UploadVue2 = {
|
|
|
132
132
|
};
|
|
133
133
|
}
|
|
134
134
|
},
|
|
135
|
+
validateFile: Function,
|
|
135
136
|
files: Array,
|
|
136
137
|
defaultFiles: Array
|
|
137
138
|
},
|
|
@@ -331,7 +332,7 @@ var UploadVue2 = {
|
|
|
331
332
|
var selectedFiles = utils.getAllFileInfo(files);
|
|
332
333
|
var newState;
|
|
333
334
|
selectedFiles = utils.assignGuidToFiles(selectedFiles, this.computedAsync.batch);
|
|
334
|
-
validationUtils.validateFiles(selectedFiles, this.$props.restrictions);
|
|
335
|
+
validationUtils.validateFiles(selectedFiles, this.$props.restrictions, this.validateFile);
|
|
335
336
|
if (!this.$props.multiple) {
|
|
336
337
|
newState = [];
|
|
337
338
|
} else {
|
|
@@ -68,6 +68,10 @@ export interface UploadProps extends UploadAsyncProps {
|
|
|
68
68
|
* Sets the restrictions for the selected files ([see example]({% slug filerestrictions_upload %})).
|
|
69
69
|
*/
|
|
70
70
|
restrictions?: UploadFileRestrictions;
|
|
71
|
+
/**
|
|
72
|
+
* Sets the custom restrictions for the selected files ([see example]({% slug filerestrictions_upload %})).
|
|
73
|
+
*/
|
|
74
|
+
validateFile?: (file: UploadFileInfo) => void;
|
|
71
75
|
/**
|
|
72
76
|
* The list of files which are displayed when the Upload is in controlled mode
|
|
73
77
|
* ([see example]({% slug controleduncontroled_upload %})).
|
package/dist/es/main.d.ts
CHANGED
|
@@ -21,5 +21,6 @@ import { UploadListItemProps } from './interfaces/UploadListItemProps';
|
|
|
21
21
|
import { UploadProps } from './interfaces/UploadProps';
|
|
22
22
|
import { UploadOnCancelEvent } from './interfaces/UploadOnCancelEvent';
|
|
23
23
|
import { UploadActionsLayout } from './interfaces/UploadActionsLayout';
|
|
24
|
+
import { messages } from './messages/main';
|
|
24
25
|
import { ExternalDropZone, ExternalDropZoneVue2 } from './ExternalDropZone';
|
|
25
|
-
export { UploadUI, UploadUIVue2, UploadUIProps, UploadFileRestrictions, Upload, UploadVue2, UploadProps, UploadOnAddEvent, UploadOnBeforeRemoveEvent, UploadOnBeforeUploadEvent, UploadOnProgressEvent, UploadOnRemoveEvent, UploadOnStatusChangeEvent, UploadOnCancelEvent, UploadResponse, UploadFileStatus, UploadAdditionalData, UploadAsyncProps, UploadFileInfo, UploadHttpHeaders, UploadListItemProps, UploadActionsLayout, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils };
|
|
26
|
+
export { UploadUI, UploadUIVue2, UploadUIProps, UploadFileRestrictions, Upload, UploadVue2, UploadProps, UploadOnAddEvent, UploadOnBeforeRemoveEvent, UploadOnBeforeUploadEvent, UploadOnProgressEvent, UploadOnRemoveEvent, UploadOnStatusChangeEvent, UploadOnCancelEvent, UploadResponse, UploadFileStatus, UploadAdditionalData, UploadAsyncProps, UploadFileInfo, UploadHttpHeaders, UploadListItemProps, UploadActionsLayout, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils, messages };
|
package/dist/es/main.js
CHANGED
|
@@ -5,5 +5,6 @@ import { UploadListMultiItem, UploadListMultiItemVue2 } from './UploadListMultiI
|
|
|
5
5
|
import utils from './utils/utils';
|
|
6
6
|
import { UploadListActionButton, UploadListActionButtonVue2 } from './UploadListActionButton';
|
|
7
7
|
import { UploadFileStatus } from './interfaces/UploadFileStatus';
|
|
8
|
+
import { messages } from './messages/main';
|
|
8
9
|
import { ExternalDropZone, ExternalDropZoneVue2 } from './ExternalDropZone';
|
|
9
|
-
export { UploadUI, UploadUIVue2, Upload, UploadVue2, UploadFileStatus, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils };
|
|
10
|
+
export { UploadUI, UploadUIVue2, Upload, UploadVue2, UploadFileStatus, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils, messages };
|
|
@@ -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: 1669967154,
|
|
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
|
};
|
|
@@ -32,7 +32,7 @@ var parseAllowedExtensions = function (extensions) {
|
|
|
32
32
|
});
|
|
33
33
|
return allowedExtensions;
|
|
34
34
|
};
|
|
35
|
-
var validateFiles = function (files, restrictionInfo) {
|
|
35
|
+
var validateFiles = function (files, restrictionInfo, validateFile) {
|
|
36
36
|
var allowedExtensions = parseAllowedExtensions(restrictionInfo.allowedExtensions || []);
|
|
37
37
|
var maxFileSize = restrictionInfo.maxFileSize || 0;
|
|
38
38
|
var minFileSize = restrictionInfo.minFileSize || 0;
|
|
@@ -40,6 +40,9 @@ var validateFiles = function (files, restrictionInfo) {
|
|
|
40
40
|
for (i = 0; i < files.length; i++) {
|
|
41
41
|
validateFileExtension(files[i], allowedExtensions);
|
|
42
42
|
validateFileSize(files[i], minFileSize, maxFileSize);
|
|
43
|
+
if (validateFile) {
|
|
44
|
+
validateFile(files[i]);
|
|
45
|
+
}
|
|
43
46
|
}
|
|
44
47
|
};
|
|
45
48
|
/**
|
package/dist/esm/Upload.js
CHANGED
|
@@ -132,6 +132,7 @@ var UploadVue2 = {
|
|
|
132
132
|
};
|
|
133
133
|
}
|
|
134
134
|
},
|
|
135
|
+
validateFile: Function,
|
|
135
136
|
files: Array,
|
|
136
137
|
defaultFiles: Array
|
|
137
138
|
},
|
|
@@ -331,7 +332,7 @@ var UploadVue2 = {
|
|
|
331
332
|
var selectedFiles = utils.getAllFileInfo(files);
|
|
332
333
|
var newState;
|
|
333
334
|
selectedFiles = utils.assignGuidToFiles(selectedFiles, this.computedAsync.batch);
|
|
334
|
-
validationUtils.validateFiles(selectedFiles, this.$props.restrictions);
|
|
335
|
+
validationUtils.validateFiles(selectedFiles, this.$props.restrictions, this.validateFile);
|
|
335
336
|
if (!this.$props.multiple) {
|
|
336
337
|
newState = [];
|
|
337
338
|
} else {
|
|
@@ -68,6 +68,10 @@ export interface UploadProps extends UploadAsyncProps {
|
|
|
68
68
|
* Sets the restrictions for the selected files ([see example]({% slug filerestrictions_upload %})).
|
|
69
69
|
*/
|
|
70
70
|
restrictions?: UploadFileRestrictions;
|
|
71
|
+
/**
|
|
72
|
+
* Sets the custom restrictions for the selected files ([see example]({% slug filerestrictions_upload %})).
|
|
73
|
+
*/
|
|
74
|
+
validateFile?: (file: UploadFileInfo) => void;
|
|
71
75
|
/**
|
|
72
76
|
* The list of files which are displayed when the Upload is in controlled mode
|
|
73
77
|
* ([see example]({% slug controleduncontroled_upload %})).
|
package/dist/esm/main.d.ts
CHANGED
|
@@ -21,5 +21,6 @@ import { UploadListItemProps } from './interfaces/UploadListItemProps';
|
|
|
21
21
|
import { UploadProps } from './interfaces/UploadProps';
|
|
22
22
|
import { UploadOnCancelEvent } from './interfaces/UploadOnCancelEvent';
|
|
23
23
|
import { UploadActionsLayout } from './interfaces/UploadActionsLayout';
|
|
24
|
+
import { messages } from './messages/main';
|
|
24
25
|
import { ExternalDropZone, ExternalDropZoneVue2 } from './ExternalDropZone';
|
|
25
|
-
export { UploadUI, UploadUIVue2, UploadUIProps, UploadFileRestrictions, Upload, UploadVue2, UploadProps, UploadOnAddEvent, UploadOnBeforeRemoveEvent, UploadOnBeforeUploadEvent, UploadOnProgressEvent, UploadOnRemoveEvent, UploadOnStatusChangeEvent, UploadOnCancelEvent, UploadResponse, UploadFileStatus, UploadAdditionalData, UploadAsyncProps, UploadFileInfo, UploadHttpHeaders, UploadListItemProps, UploadActionsLayout, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils };
|
|
26
|
+
export { UploadUI, UploadUIVue2, UploadUIProps, UploadFileRestrictions, Upload, UploadVue2, UploadProps, UploadOnAddEvent, UploadOnBeforeRemoveEvent, UploadOnBeforeUploadEvent, UploadOnProgressEvent, UploadOnRemoveEvent, UploadOnStatusChangeEvent, UploadOnCancelEvent, UploadResponse, UploadFileStatus, UploadAdditionalData, UploadAsyncProps, UploadFileInfo, UploadHttpHeaders, UploadListItemProps, UploadActionsLayout, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils, messages };
|
package/dist/esm/main.js
CHANGED
|
@@ -5,5 +5,6 @@ import { UploadListMultiItem, UploadListMultiItemVue2 } from './UploadListMultiI
|
|
|
5
5
|
import utils from './utils/utils.js';
|
|
6
6
|
import { UploadListActionButton, UploadListActionButtonVue2 } from './UploadListActionButton.js';
|
|
7
7
|
import { UploadFileStatus } from './interfaces/UploadFileStatus.js';
|
|
8
|
+
import { messages } from './messages/main.js';
|
|
8
9
|
import { ExternalDropZone, ExternalDropZoneVue2 } from './ExternalDropZone.js';
|
|
9
|
-
export { UploadUI, UploadUIVue2, Upload, UploadVue2, UploadFileStatus, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils };
|
|
10
|
+
export { UploadUI, UploadUIVue2, Upload, UploadVue2, UploadFileStatus, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils, messages };
|
|
@@ -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: 1669967154,
|
|
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
|
};
|
|
@@ -32,7 +32,7 @@ var parseAllowedExtensions = function (extensions) {
|
|
|
32
32
|
});
|
|
33
33
|
return allowedExtensions;
|
|
34
34
|
};
|
|
35
|
-
var validateFiles = function (files, restrictionInfo) {
|
|
35
|
+
var validateFiles = function (files, restrictionInfo, validateFile) {
|
|
36
36
|
var allowedExtensions = parseAllowedExtensions(restrictionInfo.allowedExtensions || []);
|
|
37
37
|
var maxFileSize = restrictionInfo.maxFileSize || 0;
|
|
38
38
|
var minFileSize = restrictionInfo.minFileSize || 0;
|
|
@@ -40,6 +40,9 @@ var validateFiles = function (files, restrictionInfo) {
|
|
|
40
40
|
for (i = 0; i < files.length; i++) {
|
|
41
41
|
validateFileExtension(files[i], allowedExtensions);
|
|
42
42
|
validateFileSize(files[i], minFileSize, maxFileSize);
|
|
43
|
+
if (validateFile) {
|
|
44
|
+
validateFile(files[i]);
|
|
45
|
+
}
|
|
43
46
|
}
|
|
44
47
|
};
|
|
45
48
|
/**
|
package/dist/npm/Upload.js
CHANGED
|
@@ -138,6 +138,7 @@ var UploadVue2 = {
|
|
|
138
138
|
};
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
validateFile: Function,
|
|
141
142
|
files: Array,
|
|
142
143
|
defaultFiles: Array
|
|
143
144
|
},
|
|
@@ -337,7 +338,7 @@ var UploadVue2 = {
|
|
|
337
338
|
var selectedFiles = utils_1.default.getAllFileInfo(files);
|
|
338
339
|
var newState;
|
|
339
340
|
selectedFiles = utils_1.default.assignGuidToFiles(selectedFiles, this.computedAsync.batch);
|
|
340
|
-
validationUtils_1.default.validateFiles(selectedFiles, this.$props.restrictions);
|
|
341
|
+
validationUtils_1.default.validateFiles(selectedFiles, this.$props.restrictions, this.validateFile);
|
|
341
342
|
if (!this.$props.multiple) {
|
|
342
343
|
newState = [];
|
|
343
344
|
} else {
|
|
@@ -68,6 +68,10 @@ export interface UploadProps extends UploadAsyncProps {
|
|
|
68
68
|
* Sets the restrictions for the selected files ([see example]({% slug filerestrictions_upload %})).
|
|
69
69
|
*/
|
|
70
70
|
restrictions?: UploadFileRestrictions;
|
|
71
|
+
/**
|
|
72
|
+
* Sets the custom restrictions for the selected files ([see example]({% slug filerestrictions_upload %})).
|
|
73
|
+
*/
|
|
74
|
+
validateFile?: (file: UploadFileInfo) => void;
|
|
71
75
|
/**
|
|
72
76
|
* The list of files which are displayed when the Upload is in controlled mode
|
|
73
77
|
* ([see example]({% slug controleduncontroled_upload %})).
|
package/dist/npm/main.d.ts
CHANGED
|
@@ -21,5 +21,6 @@ import { UploadListItemProps } from './interfaces/UploadListItemProps';
|
|
|
21
21
|
import { UploadProps } from './interfaces/UploadProps';
|
|
22
22
|
import { UploadOnCancelEvent } from './interfaces/UploadOnCancelEvent';
|
|
23
23
|
import { UploadActionsLayout } from './interfaces/UploadActionsLayout';
|
|
24
|
+
import { messages } from './messages/main';
|
|
24
25
|
import { ExternalDropZone, ExternalDropZoneVue2 } from './ExternalDropZone';
|
|
25
|
-
export { UploadUI, UploadUIVue2, UploadUIProps, UploadFileRestrictions, Upload, UploadVue2, UploadProps, UploadOnAddEvent, UploadOnBeforeRemoveEvent, UploadOnBeforeUploadEvent, UploadOnProgressEvent, UploadOnRemoveEvent, UploadOnStatusChangeEvent, UploadOnCancelEvent, UploadResponse, UploadFileStatus, UploadAdditionalData, UploadAsyncProps, UploadFileInfo, UploadHttpHeaders, UploadListItemProps, UploadActionsLayout, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils };
|
|
26
|
+
export { UploadUI, UploadUIVue2, UploadUIProps, UploadFileRestrictions, Upload, UploadVue2, UploadProps, UploadOnAddEvent, UploadOnBeforeRemoveEvent, UploadOnBeforeUploadEvent, UploadOnProgressEvent, UploadOnRemoveEvent, UploadOnStatusChangeEvent, UploadOnCancelEvent, UploadResponse, UploadFileStatus, UploadAdditionalData, UploadAsyncProps, UploadFileInfo, UploadHttpHeaders, UploadListItemProps, UploadActionsLayout, ExternalDropZone, ExternalDropZoneVue2, UploadListSingleItem, UploadListSingleItemVue2, UploadListMultiItem, UploadListMultiItemVue2, UploadListActionButton, UploadListActionButtonVue2, utils, messages };
|
package/dist/npm/main.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.utils = exports.UploadListActionButtonVue2 = exports.UploadListActionButton = exports.UploadListMultiItemVue2 = exports.UploadListMultiItem = exports.UploadListSingleItemVue2 = exports.UploadListSingleItem = exports.ExternalDropZoneVue2 = exports.ExternalDropZone = exports.UploadFileStatus = exports.UploadVue2 = exports.Upload = exports.UploadUIVue2 = exports.UploadUI = void 0;
|
|
3
|
+
exports.messages = exports.utils = exports.UploadListActionButtonVue2 = exports.UploadListActionButton = exports.UploadListMultiItemVue2 = exports.UploadListMultiItem = exports.UploadListSingleItemVue2 = exports.UploadListSingleItem = exports.ExternalDropZoneVue2 = exports.ExternalDropZone = exports.UploadFileStatus = exports.UploadVue2 = exports.Upload = exports.UploadUIVue2 = exports.UploadUI = void 0;
|
|
4
4
|
var UploadUI_1 = require("./UploadUI");
|
|
5
5
|
Object.defineProperty(exports, "UploadUI", { enumerable: true, get: function () { return UploadUI_1.UploadUI; } });
|
|
6
6
|
Object.defineProperty(exports, "UploadUIVue2", { enumerable: true, get: function () { return UploadUI_1.UploadUIVue2; } });
|
|
@@ -20,6 +20,8 @@ Object.defineProperty(exports, "UploadListActionButton", { enumerable: true, get
|
|
|
20
20
|
Object.defineProperty(exports, "UploadListActionButtonVue2", { enumerable: true, get: function () { return UploadListActionButton_1.UploadListActionButtonVue2; } });
|
|
21
21
|
var UploadFileStatus_1 = require("./interfaces/UploadFileStatus");
|
|
22
22
|
Object.defineProperty(exports, "UploadFileStatus", { enumerable: true, get: function () { return UploadFileStatus_1.UploadFileStatus; } });
|
|
23
|
+
var main_1 = require("./messages/main");
|
|
24
|
+
Object.defineProperty(exports, "messages", { enumerable: true, get: function () { return main_1.messages; } });
|
|
23
25
|
var ExternalDropZone_1 = require("./ExternalDropZone");
|
|
24
26
|
Object.defineProperty(exports, "ExternalDropZone", { enumerable: true, get: function () { return ExternalDropZone_1.ExternalDropZone; } });
|
|
25
27
|
Object.defineProperty(exports, "ExternalDropZoneVue2", { enumerable: true, get: function () { return ExternalDropZone_1.ExternalDropZoneVue2; } });
|
|
@@ -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: 1669967154,
|
|
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
|
};
|
|
@@ -34,7 +34,7 @@ var parseAllowedExtensions = function (extensions) {
|
|
|
34
34
|
});
|
|
35
35
|
return allowedExtensions;
|
|
36
36
|
};
|
|
37
|
-
var validateFiles = function (files, restrictionInfo) {
|
|
37
|
+
var validateFiles = function (files, restrictionInfo, validateFile) {
|
|
38
38
|
var allowedExtensions = parseAllowedExtensions(restrictionInfo.allowedExtensions || []);
|
|
39
39
|
var maxFileSize = restrictionInfo.maxFileSize || 0;
|
|
40
40
|
var minFileSize = restrictionInfo.minFileSize || 0;
|
|
@@ -42,6 +42,9 @@ var validateFiles = function (files, restrictionInfo) {
|
|
|
42
42
|
for (i = 0; i < files.length; i++) {
|
|
43
43
|
validateFileExtension(files[i], allowedExtensions);
|
|
44
44
|
validateFileSize(files[i], minFileSize, maxFileSize);
|
|
45
|
+
if (validateFile) {
|
|
46
|
+
validateFile(files[i]);
|
|
47
|
+
}
|
|
45
48
|
}
|
|
46
49
|
};
|
|
47
50
|
/**
|
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": "3.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202212020747",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "cd ../../ && npm run test -- --testPathPattern=/packages/upload/.*",
|
|
21
|
-
"start": "gulp start",
|
|
21
|
+
"start": "gulp start --notsc",
|
|
22
22
|
"build-package": "gulp build-package"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"vue": "^2.6.12 || ^3.0.2"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
36
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
35
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202212020747",
|
|
36
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202212020747",
|
|
37
37
|
"axios": "0.24.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@progress/kendo-licensing": "^1.1.0",
|
|
41
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
41
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202212020747"
|
|
42
42
|
},
|
|
43
43
|
"@progress": {
|
|
44
44
|
"friendlyName": "Upload",
|