@progress/kendo-vue-upload 2.7.2-dev.202201051440 → 2.8.0-dev.202201111325
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/ExternalDropZone.d.ts +5 -6
- package/dist/es/ExternalDropZone.js +3 -3
- package/dist/es/Upload.d.ts +5 -6
- package/dist/es/Upload.js +3 -3
- package/dist/es/UploadActionButtons.d.ts +5 -6
- package/dist/es/UploadActionButtons.js +21 -12
- package/dist/es/UploadAddButton.d.ts +5 -6
- package/dist/es/UploadAddButton.js +4 -4
- package/dist/es/UploadDropZone.d.ts +5 -6
- package/dist/es/UploadDropZone.js +3 -3
- package/dist/es/UploadInput.d.ts +5 -6
- package/dist/es/UploadInput.js +3 -3
- package/dist/es/UploadList.d.ts +5 -6
- package/dist/es/UploadList.js +3 -3
- package/dist/es/UploadListActionButton.d.ts +5 -6
- package/dist/es/UploadListActionButton.js +3 -3
- package/dist/es/UploadListGroup.d.ts +5 -6
- package/dist/es/UploadListGroup.js +3 -3
- package/dist/es/UploadListMultiItem.d.ts +5 -6
- package/dist/es/UploadListMultiItem.js +3 -3
- package/dist/es/UploadListSingleItem.d.ts +5 -6
- package/dist/es/UploadListSingleItem.js +3 -3
- package/dist/es/UploadNavigation.d.ts +5 -6
- package/dist/es/UploadNavigation.js +3 -3
- package/dist/es/UploadStatus.d.ts +5 -6
- package/dist/es/UploadStatus.js +3 -3
- package/dist/es/UploadUI.d.ts +5 -6
- package/dist/es/UploadUI.js +3 -3
- package/dist/es/additionalTypes.ts +7 -1
- package/dist/es/main.d.ts +7 -7
- package/dist/es/main.js +7 -7
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/ExternalDropZone.d.ts +5 -6
- package/dist/npm/ExternalDropZone.js +5 -5
- package/dist/npm/Upload.d.ts +5 -6
- package/dist/npm/Upload.js +5 -5
- package/dist/npm/UploadActionButtons.d.ts +5 -6
- package/dist/npm/UploadActionButtons.js +24 -14
- package/dist/npm/UploadAddButton.d.ts +5 -6
- package/dist/npm/UploadAddButton.js +6 -6
- package/dist/npm/UploadDropZone.d.ts +5 -6
- package/dist/npm/UploadDropZone.js +5 -5
- package/dist/npm/UploadInput.d.ts +5 -6
- package/dist/npm/UploadInput.js +5 -5
- package/dist/npm/UploadList.d.ts +5 -6
- package/dist/npm/UploadList.js +5 -5
- package/dist/npm/UploadListActionButton.d.ts +5 -6
- package/dist/npm/UploadListActionButton.js +5 -5
- package/dist/npm/UploadListGroup.d.ts +5 -6
- package/dist/npm/UploadListGroup.js +5 -5
- package/dist/npm/UploadListMultiItem.d.ts +5 -6
- package/dist/npm/UploadListMultiItem.js +5 -5
- package/dist/npm/UploadListSingleItem.d.ts +5 -6
- package/dist/npm/UploadListSingleItem.js +5 -5
- package/dist/npm/UploadNavigation.d.ts +5 -6
- package/dist/npm/UploadNavigation.js +5 -5
- package/dist/npm/UploadStatus.d.ts +5 -6
- package/dist/npm/UploadStatus.js +5 -5
- package/dist/npm/UploadUI.d.ts +5 -6
- package/dist/npm/UploadUI.js +5 -5
- package/dist/npm/additionalTypes.ts +7 -1
- package/dist/npm/main.d.ts +7 -7
- package/dist/npm/main.js +7 -7
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +4 -3
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { DefineComponent } from './additionalTypes';
|
|
2
|
-
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
1
|
+
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from './additionalTypes';
|
|
3
2
|
declare type DefaultData<V> = object | ((this: V) => UploadListGroupData);
|
|
4
3
|
declare type DefaultMethods<V> = {
|
|
5
4
|
[key: string]: (this: V, ...args: any[]) => any;
|
|
@@ -44,7 +43,7 @@ export interface UploadListGroupComputed {
|
|
|
44
43
|
/**
|
|
45
44
|
* @hidden
|
|
46
45
|
*/
|
|
47
|
-
export interface UploadListGroupAll extends UploadListGroupMethods, UploadListGroupState, UploadListGroupData, UploadListGroupComputed,
|
|
46
|
+
export interface UploadListGroupAll extends UploadListGroupMethods, UploadListGroupState, UploadListGroupData, UploadListGroupComputed, Vue2type {
|
|
48
47
|
}
|
|
49
48
|
/**
|
|
50
49
|
* @hidden
|
|
@@ -52,6 +51,6 @@ export interface UploadListGroupAll extends UploadListGroupMethods, UploadListGr
|
|
|
52
51
|
/**
|
|
53
52
|
* Represents the default `UploadListGroup` component.
|
|
54
53
|
*/
|
|
55
|
-
declare let
|
|
56
|
-
declare const
|
|
57
|
-
export { UploadListGroup,
|
|
54
|
+
declare let UploadListGroupVue2: ComponentOptions<Vue2type, DefaultData<UploadListGroupData>, DefaultMethods<UploadListGroupAll>, UploadListGroupComputed, RecordPropsDefinition<UploadListGroupProps>>;
|
|
55
|
+
declare const UploadListGroup: DefineComponent<UploadListGroupProps, any, UploadListGroupData, UploadListGroupComputed, UploadListGroupMethods, {}, {}, {}, string, UploadListGroupProps, UploadListGroupProps, {}>;
|
|
56
|
+
export { UploadListGroup, UploadListGroupVue2 };
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.UploadListGroupVue2 = exports.UploadListGroup = void 0; // @ts-ignore
|
|
7
7
|
|
|
8
8
|
var Vue = require("vue");
|
|
9
9
|
|
|
@@ -29,7 +29,7 @@ var utils_1 = require("./utils/utils");
|
|
|
29
29
|
*/
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
var
|
|
32
|
+
var UploadListGroupVue2 = {
|
|
33
33
|
name: 'KendoVueUploadListGroup',
|
|
34
34
|
props: {
|
|
35
35
|
files: Array,
|
|
@@ -162,6 +162,6 @@ var UploadListGroup = {
|
|
|
162
162
|
}, [itemComponent]);
|
|
163
163
|
}
|
|
164
164
|
};
|
|
165
|
-
exports.
|
|
166
|
-
var
|
|
167
|
-
exports.
|
|
165
|
+
exports.UploadListGroupVue2 = UploadListGroupVue2;
|
|
166
|
+
var UploadListGroup = UploadListGroupVue2;
|
|
167
|
+
exports.UploadListGroup = UploadListGroup;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { DefineComponent } from './additionalTypes';
|
|
2
|
-
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
1
|
+
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from './additionalTypes';
|
|
3
2
|
declare type DefaultData<V> = object | ((this: V) => {});
|
|
4
3
|
declare type DefaultMethods<V> = {
|
|
5
4
|
[key: string]: (this: V, ...args: any[]) => any;
|
|
@@ -32,7 +31,7 @@ export interface UploadListMultiItemComputed {
|
|
|
32
31
|
/**
|
|
33
32
|
* @hidden
|
|
34
33
|
*/
|
|
35
|
-
export interface UploadListMultiItemAll extends UploadListMultiItemMethods, UploadListMultiItemState, UploadListMultiItemData, UploadListMultiItemComputed,
|
|
34
|
+
export interface UploadListMultiItemAll extends UploadListMultiItemMethods, UploadListMultiItemState, UploadListMultiItemData, UploadListMultiItemComputed, Vue2type {
|
|
36
35
|
}
|
|
37
36
|
/**
|
|
38
37
|
* @hidden
|
|
@@ -40,6 +39,6 @@ export interface UploadListMultiItemAll extends UploadListMultiItemMethods, Uplo
|
|
|
40
39
|
/**
|
|
41
40
|
* Represents the default `UploadListMultiItem` component.
|
|
42
41
|
*/
|
|
43
|
-
declare let
|
|
44
|
-
declare const
|
|
45
|
-
export { UploadListMultiItem,
|
|
42
|
+
declare let UploadListMultiItemVue2: ComponentOptions<Vue2type, DefaultData<UploadListMultiItemData>, DefaultMethods<UploadListMultiItemAll>, UploadListMultiItemComputed, RecordPropsDefinition<UploadListItemProps>>;
|
|
43
|
+
declare const UploadListMultiItem: DefineComponent<UploadListItemProps, any, UploadListMultiItemData, UploadListMultiItemComputed, UploadListMultiItemMethods, {}, {}, {}, string, UploadListItemProps, UploadListItemProps, {}>;
|
|
44
|
+
export { UploadListMultiItem, UploadListMultiItemVue2 };
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.UploadListMultiItemVue2 = exports.UploadListMultiItem = void 0; // @ts-ignore
|
|
7
7
|
|
|
8
8
|
var Vue = require("vue");
|
|
9
9
|
|
|
@@ -30,7 +30,7 @@ var UploadListActionButton_1 = require("./UploadListActionButton");
|
|
|
30
30
|
*/
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
var
|
|
33
|
+
var UploadListMultiItemVue2 = {
|
|
34
34
|
name: 'KendoVueUploadListMultiItem',
|
|
35
35
|
props: {
|
|
36
36
|
files: Array,
|
|
@@ -180,6 +180,6 @@ var UploadListMultiItem = {
|
|
|
180
180
|
})]);
|
|
181
181
|
}
|
|
182
182
|
};
|
|
183
|
-
exports.
|
|
184
|
-
var
|
|
185
|
-
exports.
|
|
183
|
+
exports.UploadListMultiItemVue2 = UploadListMultiItemVue2;
|
|
184
|
+
var UploadListMultiItem = UploadListMultiItemVue2;
|
|
185
|
+
exports.UploadListMultiItem = UploadListMultiItem;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { DefineComponent } from './additionalTypes';
|
|
2
|
-
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
1
|
+
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from './additionalTypes';
|
|
3
2
|
declare type DefaultData<V> = object | ((this: V) => {});
|
|
4
3
|
declare type DefaultMethods<V> = {
|
|
5
4
|
[key: string]: (this: V, ...args: any[]) => any;
|
|
@@ -32,7 +31,7 @@ export interface UploadListSingleItemComputed {
|
|
|
32
31
|
/**
|
|
33
32
|
* @hidden
|
|
34
33
|
*/
|
|
35
|
-
export interface UploadListSingleItemAll extends UploadListSingleItemMethods, UploadListSingleItemState, UploadListSingleItemData, UploadListSingleItemComputed,
|
|
34
|
+
export interface UploadListSingleItemAll extends UploadListSingleItemMethods, UploadListSingleItemState, UploadListSingleItemData, UploadListSingleItemComputed, Vue2type {
|
|
36
35
|
}
|
|
37
36
|
/**
|
|
38
37
|
* @hidden
|
|
@@ -40,6 +39,6 @@ export interface UploadListSingleItemAll extends UploadListSingleItemMethods, Up
|
|
|
40
39
|
/**
|
|
41
40
|
* Represents the default `UploadListSingleItem` component.
|
|
42
41
|
*/
|
|
43
|
-
declare let
|
|
44
|
-
declare const
|
|
45
|
-
export { UploadListSingleItem,
|
|
42
|
+
declare let UploadListSingleItemVue2: ComponentOptions<Vue2type, DefaultData<UploadListSingleItemData>, DefaultMethods<UploadListSingleItemAll>, UploadListSingleItemComputed, RecordPropsDefinition<UploadListItemProps>>;
|
|
43
|
+
declare const UploadListSingleItem: DefineComponent<UploadListItemProps, any, UploadListSingleItemData, UploadListSingleItemComputed, UploadListSingleItemMethods, {}, {}, {}, string, UploadListItemProps, UploadListItemProps, {}>;
|
|
44
|
+
export { UploadListSingleItem, UploadListSingleItemVue2 };
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.UploadListSingleItemVue2 = exports.UploadListSingleItem = void 0; // @ts-ignore
|
|
7
7
|
|
|
8
8
|
var Vue = require("vue");
|
|
9
9
|
|
|
@@ -30,7 +30,7 @@ var UploadListActionButton_1 = require("./UploadListActionButton");
|
|
|
30
30
|
*/
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
var
|
|
33
|
+
var UploadListSingleItemVue2 = {
|
|
34
34
|
name: 'KendoVueUploadListSingleItem',
|
|
35
35
|
props: {
|
|
36
36
|
files: Array,
|
|
@@ -236,6 +236,6 @@ var UploadListSingleItem = {
|
|
|
236
236
|
})]);
|
|
237
237
|
}
|
|
238
238
|
};
|
|
239
|
-
exports.
|
|
240
|
-
var
|
|
241
|
-
exports.
|
|
239
|
+
exports.UploadListSingleItemVue2 = UploadListSingleItemVue2;
|
|
240
|
+
var UploadListSingleItem = UploadListSingleItemVue2;
|
|
241
|
+
exports.UploadListSingleItem = UploadListSingleItem;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { DefineComponent } from './additionalTypes';
|
|
2
|
-
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
1
|
+
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from './additionalTypes';
|
|
3
2
|
declare type DefaultData<V> = object | ((this: V) => {});
|
|
4
3
|
declare type DefaultMethods<V> = {
|
|
5
4
|
[key: string]: (this: V, ...args: any[]) => any;
|
|
@@ -34,7 +33,7 @@ export interface UploadNavigationComputed {
|
|
|
34
33
|
/**
|
|
35
34
|
* @hidden
|
|
36
35
|
*/
|
|
37
|
-
export interface UploadNavigationAll extends UploadNavigationMethods, UploadNavigationState, UploadNavigationData, UploadNavigationComputed,
|
|
36
|
+
export interface UploadNavigationAll extends UploadNavigationMethods, UploadNavigationState, UploadNavigationData, UploadNavigationComputed, Vue2type {
|
|
38
37
|
}
|
|
39
38
|
/**
|
|
40
39
|
* @hidden
|
|
@@ -42,6 +41,6 @@ export interface UploadNavigationAll extends UploadNavigationMethods, UploadNavi
|
|
|
42
41
|
/**
|
|
43
42
|
* Represents the default `UploadNavigation` component.
|
|
44
43
|
*/
|
|
45
|
-
declare let
|
|
46
|
-
declare const
|
|
47
|
-
export { UploadNavigation,
|
|
44
|
+
declare let UploadNavigationVue2: ComponentOptions<Vue2type, DefaultData<UploadNavigationData>, DefaultMethods<UploadNavigationAll>, UploadNavigationComputed, RecordPropsDefinition<UploadUIProps>>;
|
|
45
|
+
declare const UploadNavigation: DefineComponent<UploadUIProps, any, UploadNavigationData, UploadNavigationComputed, UploadNavigationMethods, {}, {}, {}, string, UploadUIProps, UploadUIProps, {}>;
|
|
46
|
+
export { UploadNavigation, UploadNavigationVue2 };
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.UploadNavigationVue2 = exports.UploadNavigation = void 0; // @ts-ignore
|
|
7
7
|
|
|
8
8
|
var Vue = require("vue");
|
|
9
9
|
|
|
@@ -33,7 +33,7 @@ var DEFAULT_INDEX = -1;
|
|
|
33
33
|
* Represents the default `UploadNavigation` component.
|
|
34
34
|
*/
|
|
35
35
|
|
|
36
|
-
var
|
|
36
|
+
var UploadNavigationVue2 = {
|
|
37
37
|
name: 'KendoVueUploadNavigation',
|
|
38
38
|
props: {
|
|
39
39
|
async: Object,
|
|
@@ -353,6 +353,6 @@ var UploadNavigation = {
|
|
|
353
353
|
);
|
|
354
354
|
}
|
|
355
355
|
};
|
|
356
|
-
exports.
|
|
357
|
-
var
|
|
358
|
-
exports.
|
|
356
|
+
exports.UploadNavigationVue2 = UploadNavigationVue2;
|
|
357
|
+
var UploadNavigation = UploadNavigationVue2;
|
|
358
|
+
exports.UploadNavigation = UploadNavigation;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { DefineComponent } from './additionalTypes';
|
|
2
|
-
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
1
|
+
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from './additionalTypes';
|
|
3
2
|
declare type DefaultData<V> = object | ((this: V) => {});
|
|
4
3
|
declare type DefaultMethods<V> = {
|
|
5
4
|
[key: string]: (this: V, ...args: any[]) => any;
|
|
@@ -41,7 +40,7 @@ export interface UploadStatusComputed {
|
|
|
41
40
|
/**
|
|
42
41
|
* @hidden
|
|
43
42
|
*/
|
|
44
|
-
export interface UploadStatusAll extends UploadStatusMethods, UploadStatusState, UploadStatusData, UploadStatusComputed,
|
|
43
|
+
export interface UploadStatusAll extends UploadStatusMethods, UploadStatusState, UploadStatusData, UploadStatusComputed, Vue2type {
|
|
45
44
|
}
|
|
46
45
|
/**
|
|
47
46
|
* @hidden
|
|
@@ -49,6 +48,6 @@ export interface UploadStatusAll extends UploadStatusMethods, UploadStatusState,
|
|
|
49
48
|
/**
|
|
50
49
|
* Represents the default `UploadStatus` component.
|
|
51
50
|
*/
|
|
52
|
-
declare let
|
|
53
|
-
declare const
|
|
54
|
-
export { UploadStatus,
|
|
51
|
+
declare let UploadStatusVue2: ComponentOptions<Vue2type, DefaultData<UploadStatusData>, DefaultMethods<UploadStatusAll>, UploadStatusComputed, RecordPropsDefinition<UploadStatusProps>>;
|
|
52
|
+
declare const UploadStatus: DefineComponent<UploadStatusProps, any, UploadStatusData, UploadStatusComputed, UploadStatusMethods, {}, {}, {}, string, UploadStatusProps, UploadStatusProps, {}>;
|
|
53
|
+
export { UploadStatus, UploadStatusVue2 };
|
package/dist/npm/UploadStatus.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.UploadStatusVue2 = exports.UploadStatus = void 0; // @ts-ignore
|
|
7
7
|
|
|
8
8
|
var Vue = require("vue");
|
|
9
9
|
|
|
@@ -26,7 +26,7 @@ var messages_1 = require("./messages");
|
|
|
26
26
|
*/
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
var
|
|
29
|
+
var UploadStatusVue2 = {
|
|
30
30
|
props: {
|
|
31
31
|
isUploading: Boolean,
|
|
32
32
|
isUploaded: Boolean,
|
|
@@ -69,6 +69,6 @@ var UploadStatus = {
|
|
|
69
69
|
}), statusText]);
|
|
70
70
|
}
|
|
71
71
|
};
|
|
72
|
-
exports.
|
|
73
|
-
var
|
|
74
|
-
exports.
|
|
72
|
+
exports.UploadStatusVue2 = UploadStatusVue2;
|
|
73
|
+
var UploadStatus = UploadStatusVue2;
|
|
74
|
+
exports.UploadStatus = UploadStatus;
|
package/dist/npm/UploadUI.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { DefineComponent } from './additionalTypes';
|
|
2
|
-
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
1
|
+
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from './additionalTypes';
|
|
3
2
|
declare type DefaultData<V> = object | ((this: V) => {});
|
|
4
3
|
declare type DefaultMethods<V> = {
|
|
5
4
|
[key: string]: (this: V, ...args: any[]) => any;
|
|
@@ -69,7 +68,7 @@ export interface UploadUIComputed {
|
|
|
69
68
|
/**
|
|
70
69
|
* @hidden
|
|
71
70
|
*/
|
|
72
|
-
export interface UploadUIAll extends UploadUIMethods, UploadUIState, UploadUIData, UploadUIComputed,
|
|
71
|
+
export interface UploadUIAll extends UploadUIMethods, UploadUIState, UploadUIData, UploadUIComputed, Vue2type {
|
|
73
72
|
}
|
|
74
73
|
/**
|
|
75
74
|
* @hidden
|
|
@@ -77,6 +76,6 @@ export interface UploadUIAll extends UploadUIMethods, UploadUIState, UploadUIDat
|
|
|
77
76
|
/**
|
|
78
77
|
* Represents the default `UploadUI` component.
|
|
79
78
|
*/
|
|
80
|
-
declare let
|
|
81
|
-
declare const
|
|
82
|
-
export { UploadUI,
|
|
79
|
+
declare let UploadUIVue2: ComponentOptions<Vue2type, DefaultData<UploadUIData>, DefaultMethods<UploadUIAll>, UploadUIComputed, RecordPropsDefinition<UploadUIProps>>;
|
|
80
|
+
declare const UploadUI: DefineComponent<UploadUIProps, any, UploadUIData, UploadUIComputed, UploadUIMethods, {}, {}, {}, string, UploadUIProps, UploadUIProps, {}>;
|
|
81
|
+
export { UploadUI, UploadUIVue2 };
|
package/dist/npm/UploadUI.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.UploadUIVue2 = exports.UploadUI = void 0; // @ts-ignore
|
|
7
7
|
|
|
8
8
|
var Vue = require("vue");
|
|
9
9
|
|
|
@@ -28,7 +28,7 @@ var ADD_BUTTON_NAV_INDEX = -1;
|
|
|
28
28
|
* Represents the default `UploadUI` component.
|
|
29
29
|
*/
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var UploadUIVue2 = {
|
|
32
32
|
name: 'KendoVueUploadUI',
|
|
33
33
|
props: {
|
|
34
34
|
async: Object,
|
|
@@ -274,6 +274,6 @@ var UploadUI = {
|
|
|
274
274
|
}) : undefined]);
|
|
275
275
|
}
|
|
276
276
|
};
|
|
277
|
-
exports.
|
|
278
|
-
var
|
|
279
|
-
exports.
|
|
277
|
+
exports.UploadUIVue2 = UploadUIVue2;
|
|
278
|
+
var UploadUI = UploadUIVue2;
|
|
279
|
+
exports.UploadUI = UploadUI;
|
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
// @ts-ignore
|
|
2
2
|
import { DefineComponent } from 'vue';
|
|
3
|
-
|
|
3
|
+
// @ts-ignore
|
|
4
|
+
import * as Vue from 'vue';
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
type Vue2type = Vue.default;
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
9
|
+
export { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type };
|
package/dist/npm/main.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { UploadUI,
|
|
2
|
-
import { Upload,
|
|
3
|
-
import { UploadListSingleItem,
|
|
4
|
-
import { UploadListMultiItem,
|
|
1
|
+
import { UploadUI, UploadUIVue2, UploadUIProps } from './UploadUI';
|
|
2
|
+
import { Upload, UploadVue2 } from './Upload';
|
|
3
|
+
import { UploadListSingleItem, UploadListSingleItemVue2 } from './UploadListSingleItem';
|
|
4
|
+
import { UploadListMultiItem, UploadListMultiItemVue2 } from './UploadListMultiItem';
|
|
5
5
|
import utils from './utils/utils';
|
|
6
|
-
import { UploadListActionButton,
|
|
6
|
+
import { UploadListActionButton, UploadListActionButtonVue2 } from './UploadListActionButton';
|
|
7
7
|
import { UploadOnAddEvent } from './interfaces/UploadOnAddEvent';
|
|
8
8
|
import { UploadOnBeforeRemoveEvent } from './interfaces/UploadOnBeforeRemoveEvent';
|
|
9
9
|
import { UploadOnBeforeUploadEvent } from './interfaces/UploadOnBeforeUploadEvent';
|
|
@@ -21,5 +21,5 @@ 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 { ExternalDropZone,
|
|
25
|
-
export { UploadUI,
|
|
24
|
+
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 };
|
package/dist/npm/main.js
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.utils = exports.
|
|
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;
|
|
4
4
|
var UploadUI_1 = require("./UploadUI");
|
|
5
5
|
Object.defineProperty(exports, "UploadUI", { enumerable: true, get: function () { return UploadUI_1.UploadUI; } });
|
|
6
|
-
Object.defineProperty(exports, "
|
|
6
|
+
Object.defineProperty(exports, "UploadUIVue2", { enumerable: true, get: function () { return UploadUI_1.UploadUIVue2; } });
|
|
7
7
|
var Upload_1 = require("./Upload");
|
|
8
8
|
Object.defineProperty(exports, "Upload", { enumerable: true, get: function () { return Upload_1.Upload; } });
|
|
9
|
-
Object.defineProperty(exports, "
|
|
9
|
+
Object.defineProperty(exports, "UploadVue2", { enumerable: true, get: function () { return Upload_1.UploadVue2; } });
|
|
10
10
|
var UploadListSingleItem_1 = require("./UploadListSingleItem");
|
|
11
11
|
Object.defineProperty(exports, "UploadListSingleItem", { enumerable: true, get: function () { return UploadListSingleItem_1.UploadListSingleItem; } });
|
|
12
|
-
Object.defineProperty(exports, "
|
|
12
|
+
Object.defineProperty(exports, "UploadListSingleItemVue2", { enumerable: true, get: function () { return UploadListSingleItem_1.UploadListSingleItemVue2; } });
|
|
13
13
|
var UploadListMultiItem_1 = require("./UploadListMultiItem");
|
|
14
14
|
Object.defineProperty(exports, "UploadListMultiItem", { enumerable: true, get: function () { return UploadListMultiItem_1.UploadListMultiItem; } });
|
|
15
|
-
Object.defineProperty(exports, "
|
|
15
|
+
Object.defineProperty(exports, "UploadListMultiItemVue2", { enumerable: true, get: function () { return UploadListMultiItem_1.UploadListMultiItemVue2; } });
|
|
16
16
|
var utils_1 = require("./utils/utils");
|
|
17
17
|
exports.utils = utils_1.default;
|
|
18
18
|
var UploadListActionButton_1 = require("./UploadListActionButton");
|
|
19
19
|
Object.defineProperty(exports, "UploadListActionButton", { enumerable: true, get: function () { return UploadListActionButton_1.UploadListActionButton; } });
|
|
20
|
-
Object.defineProperty(exports, "
|
|
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
23
|
var ExternalDropZone_1 = require("./ExternalDropZone");
|
|
24
24
|
Object.defineProperty(exports, "ExternalDropZone", { enumerable: true, get: function () { return ExternalDropZone_1.ExternalDropZone; } });
|
|
25
|
-
Object.defineProperty(exports, "
|
|
25
|
+
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: 1641907309,
|
|
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": "2.
|
|
4
|
+
"version": "2.8.0-dev.202201111325",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -26,12 +26,13 @@
|
|
|
26
26
|
"vue": "^2.6.12 || ^3.0.2"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@progress/kendo-vue-
|
|
29
|
+
"@progress/kendo-vue-buttons": "2.7.2",
|
|
30
|
+
"@progress/kendo-vue-common": "2.7.2",
|
|
30
31
|
"axios": "0.24.0"
|
|
31
32
|
},
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@progress/kendo-licensing": "^1.1.0",
|
|
34
|
-
"@progress/kendo-vue-intl": "2.
|
|
35
|
+
"@progress/kendo-vue-intl": "2.8.0-dev.202201111325"
|
|
35
36
|
},
|
|
36
37
|
"@progress": {
|
|
37
38
|
"friendlyName": "Upload",
|