@progress/kendo-vue-upload 6.1.0-develop.5 → 6.1.0-develop.7

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/index.d.mts CHANGED
@@ -16,6 +16,10 @@ import { PropType } from 'vue';
16
16
  import { PublicProps } from 'vue';
17
17
  import { Ref } from 'vue';
18
18
  import { SVGIcon } from '@progress/kendo-svg-icons';
19
+ import { UploadActionsLayout as UploadActionsLayout_2 } from '.';
20
+ import { UploadAsyncProps as UploadAsyncProps_2 } from '.';
21
+ import { UploadFileRestrictions as UploadFileRestrictions_2 } from '.';
22
+ import { UploadHttpHeaders as UploadHttpHeaders_2 } from '.';
19
23
 
20
24
  /**
21
25
  * @hidden
@@ -114,7 +118,7 @@ type: PropType<string>;
114
118
  default: () => "files";
115
119
  };
116
120
  saveHeaders: {
117
- type: PropType<UploadHttpHeaders>;
121
+ type: PropType<UploadHttpHeaders_2>;
118
122
  default: () => {};
119
123
  };
120
124
  saveMethod: {
@@ -139,7 +143,7 @@ type: PropType<string>;
139
143
  default: () => "fileNames";
140
144
  };
141
145
  removeHeaders: {
142
- type: PropType<UploadHttpHeaders>;
146
+ type: PropType<UploadHttpHeaders_2>;
143
147
  default: () => {};
144
148
  };
145
149
  removeMethod: {
@@ -172,14 +176,14 @@ type: PropType<boolean>;
172
176
  default: boolean;
173
177
  };
174
178
  actionsLayout: {
175
- type: PropType<UploadActionsLayout>;
179
+ type: PropType<UploadActionsLayout_2>;
176
180
  default: () => "end";
177
181
  };
178
182
  tabIndex: PropType<string | number>;
179
183
  accept: PropType<string>;
180
184
  list: PropType<any>;
181
185
  restrictions: {
182
- type: PropType<UploadFileRestrictions>;
186
+ type: PropType<UploadFileRestrictions_2>;
183
187
  default: () => {
184
188
  allowedExtensions: any[];
185
189
  maxFileSize: number;
@@ -262,7 +266,7 @@ type: PropType<string>;
262
266
  default: () => "files";
263
267
  };
264
268
  saveHeaders: {
265
- type: PropType<UploadHttpHeaders>;
269
+ type: PropType<UploadHttpHeaders_2>;
266
270
  default: () => {};
267
271
  };
268
272
  saveMethod: {
@@ -287,7 +291,7 @@ type: PropType<string>;
287
291
  default: () => "fileNames";
288
292
  };
289
293
  removeHeaders: {
290
- type: PropType<UploadHttpHeaders>;
294
+ type: PropType<UploadHttpHeaders_2>;
291
295
  default: () => {};
292
296
  };
293
297
  removeMethod: {
@@ -320,14 +324,14 @@ type: PropType<boolean>;
320
324
  default: boolean;
321
325
  };
322
326
  actionsLayout: {
323
- type: PropType<UploadActionsLayout>;
327
+ type: PropType<UploadActionsLayout_2>;
324
328
  default: () => "end";
325
329
  };
326
330
  tabIndex: PropType<string | number>;
327
331
  accept: PropType<string>;
328
332
  list: PropType<any>;
329
333
  restrictions: {
330
- type: PropType<UploadFileRestrictions>;
334
+ type: PropType<UploadFileRestrictions_2>;
331
335
  default: () => {
332
336
  allowedExtensions: any[];
333
337
  maxFileSize: number;
@@ -352,7 +356,7 @@ autoUpload: boolean;
352
356
  batch: boolean;
353
357
  withCredentials: boolean;
354
358
  saveField: string;
355
- saveHeaders: UploadHttpHeaders;
359
+ saveHeaders: UploadHttpHeaders_2;
356
360
  saveMethod: string;
357
361
  saveUrl: string | ((files: UploadFileInfo[], options: {
358
362
  formData: FormData;
@@ -362,7 +366,7 @@ uid: string;
362
366
  }>);
363
367
  responseType: "text" | "arraybuffer" | "blob" | "json";
364
368
  removeField: string;
365
- removeHeaders: UploadHttpHeaders;
369
+ removeHeaders: UploadHttpHeaders_2;
366
370
  removeMethod: string;
367
371
  removeUrl: string | ((files: UploadFileInfo[], options: {
368
372
  formData: FormData;
@@ -370,10 +374,10 @@ requestOptions: any;
370
374
  }) => Promise<{
371
375
  uid: string;
372
376
  }>);
373
- actionsLayout: UploadActionsLayout;
377
+ actionsLayout: UploadActionsLayout_2;
374
378
  showFileList: boolean;
375
379
  showActionButtons: boolean;
376
- restrictions: UploadFileRestrictions;
380
+ restrictions: UploadFileRestrictions_2;
377
381
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
378
382
 
379
383
  /**
@@ -637,7 +641,7 @@ export declare interface UploadListItemProps {
637
641
  export declare const UploadListMultiItem: DefineComponent<ExtractPropTypes< {
638
642
  files: PropType<UploadFileInfo[]>;
639
643
  disabled: PropType<boolean>;
640
- async: PropType<UploadAsyncProps>;
644
+ async: PropType<UploadAsyncProps_2>;
641
645
  }>, {
642
646
  kendoLocalizationService: {};
643
647
  }, {}, {}, {
@@ -653,7 +657,7 @@ remove: any;
653
657
  }, string, PublicProps, Readonly<ExtractPropTypes< {
654
658
  files: PropType<UploadFileInfo[]>;
655
659
  disabled: PropType<boolean>;
656
- async: PropType<UploadAsyncProps>;
660
+ async: PropType<UploadAsyncProps_2>;
657
661
  }>> & Readonly<{
658
662
  onCancel?: (...args: any[] | unknown[]) => any;
659
663
  onRemove?: (...args: any[] | unknown[]) => any;
@@ -666,7 +670,7 @@ onRetry?: (...args: any[] | unknown[]) => any;
666
670
  export declare const UploadListSingleItem: DefineComponent<ExtractPropTypes< {
667
671
  files: PropType<UploadFileInfo[]>;
668
672
  disabled: PropType<boolean>;
669
- async: PropType<UploadAsyncProps>;
673
+ async: PropType<UploadAsyncProps_2>;
670
674
  }>, {
671
675
  kendoLocalizationService: {};
672
676
  }, {}, {}, {
@@ -684,7 +688,7 @@ remove: any;
684
688
  }, string, PublicProps, Readonly<ExtractPropTypes< {
685
689
  files: PropType<UploadFileInfo[]>;
686
690
  disabled: PropType<boolean>;
687
- async: PropType<UploadAsyncProps>;
691
+ async: PropType<UploadAsyncProps_2>;
688
692
  }>> & Readonly<{
689
693
  onCancel?: (...args: any[] | unknown[]) => any;
690
694
  onRemove?: (...args: any[] | unknown[]) => any;
package/index.d.ts CHANGED
@@ -16,6 +16,10 @@ import { PropType } from 'vue';
16
16
  import { PublicProps } from 'vue';
17
17
  import { Ref } from 'vue';
18
18
  import { SVGIcon } from '@progress/kendo-svg-icons';
19
+ import { UploadActionsLayout as UploadActionsLayout_2 } from '.';
20
+ import { UploadAsyncProps as UploadAsyncProps_2 } from '.';
21
+ import { UploadFileRestrictions as UploadFileRestrictions_2 } from '.';
22
+ import { UploadHttpHeaders as UploadHttpHeaders_2 } from '.';
19
23
 
20
24
  /**
21
25
  * @hidden
@@ -114,7 +118,7 @@ type: PropType<string>;
114
118
  default: () => "files";
115
119
  };
116
120
  saveHeaders: {
117
- type: PropType<UploadHttpHeaders>;
121
+ type: PropType<UploadHttpHeaders_2>;
118
122
  default: () => {};
119
123
  };
120
124
  saveMethod: {
@@ -139,7 +143,7 @@ type: PropType<string>;
139
143
  default: () => "fileNames";
140
144
  };
141
145
  removeHeaders: {
142
- type: PropType<UploadHttpHeaders>;
146
+ type: PropType<UploadHttpHeaders_2>;
143
147
  default: () => {};
144
148
  };
145
149
  removeMethod: {
@@ -172,14 +176,14 @@ type: PropType<boolean>;
172
176
  default: boolean;
173
177
  };
174
178
  actionsLayout: {
175
- type: PropType<UploadActionsLayout>;
179
+ type: PropType<UploadActionsLayout_2>;
176
180
  default: () => "end";
177
181
  };
178
182
  tabIndex: PropType<string | number>;
179
183
  accept: PropType<string>;
180
184
  list: PropType<any>;
181
185
  restrictions: {
182
- type: PropType<UploadFileRestrictions>;
186
+ type: PropType<UploadFileRestrictions_2>;
183
187
  default: () => {
184
188
  allowedExtensions: any[];
185
189
  maxFileSize: number;
@@ -262,7 +266,7 @@ type: PropType<string>;
262
266
  default: () => "files";
263
267
  };
264
268
  saveHeaders: {
265
- type: PropType<UploadHttpHeaders>;
269
+ type: PropType<UploadHttpHeaders_2>;
266
270
  default: () => {};
267
271
  };
268
272
  saveMethod: {
@@ -287,7 +291,7 @@ type: PropType<string>;
287
291
  default: () => "fileNames";
288
292
  };
289
293
  removeHeaders: {
290
- type: PropType<UploadHttpHeaders>;
294
+ type: PropType<UploadHttpHeaders_2>;
291
295
  default: () => {};
292
296
  };
293
297
  removeMethod: {
@@ -320,14 +324,14 @@ type: PropType<boolean>;
320
324
  default: boolean;
321
325
  };
322
326
  actionsLayout: {
323
- type: PropType<UploadActionsLayout>;
327
+ type: PropType<UploadActionsLayout_2>;
324
328
  default: () => "end";
325
329
  };
326
330
  tabIndex: PropType<string | number>;
327
331
  accept: PropType<string>;
328
332
  list: PropType<any>;
329
333
  restrictions: {
330
- type: PropType<UploadFileRestrictions>;
334
+ type: PropType<UploadFileRestrictions_2>;
331
335
  default: () => {
332
336
  allowedExtensions: any[];
333
337
  maxFileSize: number;
@@ -352,7 +356,7 @@ autoUpload: boolean;
352
356
  batch: boolean;
353
357
  withCredentials: boolean;
354
358
  saveField: string;
355
- saveHeaders: UploadHttpHeaders;
359
+ saveHeaders: UploadHttpHeaders_2;
356
360
  saveMethod: string;
357
361
  saveUrl: string | ((files: UploadFileInfo[], options: {
358
362
  formData: FormData;
@@ -362,7 +366,7 @@ uid: string;
362
366
  }>);
363
367
  responseType: "text" | "arraybuffer" | "blob" | "json";
364
368
  removeField: string;
365
- removeHeaders: UploadHttpHeaders;
369
+ removeHeaders: UploadHttpHeaders_2;
366
370
  removeMethod: string;
367
371
  removeUrl: string | ((files: UploadFileInfo[], options: {
368
372
  formData: FormData;
@@ -370,10 +374,10 @@ requestOptions: any;
370
374
  }) => Promise<{
371
375
  uid: string;
372
376
  }>);
373
- actionsLayout: UploadActionsLayout;
377
+ actionsLayout: UploadActionsLayout_2;
374
378
  showFileList: boolean;
375
379
  showActionButtons: boolean;
376
- restrictions: UploadFileRestrictions;
380
+ restrictions: UploadFileRestrictions_2;
377
381
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
378
382
 
379
383
  /**
@@ -637,7 +641,7 @@ export declare interface UploadListItemProps {
637
641
  export declare const UploadListMultiItem: DefineComponent<ExtractPropTypes< {
638
642
  files: PropType<UploadFileInfo[]>;
639
643
  disabled: PropType<boolean>;
640
- async: PropType<UploadAsyncProps>;
644
+ async: PropType<UploadAsyncProps_2>;
641
645
  }>, {
642
646
  kendoLocalizationService: {};
643
647
  }, {}, {}, {
@@ -653,7 +657,7 @@ remove: any;
653
657
  }, string, PublicProps, Readonly<ExtractPropTypes< {
654
658
  files: PropType<UploadFileInfo[]>;
655
659
  disabled: PropType<boolean>;
656
- async: PropType<UploadAsyncProps>;
660
+ async: PropType<UploadAsyncProps_2>;
657
661
  }>> & Readonly<{
658
662
  onCancel?: (...args: any[] | unknown[]) => any;
659
663
  onRemove?: (...args: any[] | unknown[]) => any;
@@ -666,7 +670,7 @@ onRetry?: (...args: any[] | unknown[]) => any;
666
670
  export declare const UploadListSingleItem: DefineComponent<ExtractPropTypes< {
667
671
  files: PropType<UploadFileInfo[]>;
668
672
  disabled: PropType<boolean>;
669
- async: PropType<UploadAsyncProps>;
673
+ async: PropType<UploadAsyncProps_2>;
670
674
  }>, {
671
675
  kendoLocalizationService: {};
672
676
  }, {}, {}, {
@@ -684,7 +688,7 @@ remove: any;
684
688
  }, string, PublicProps, Readonly<ExtractPropTypes< {
685
689
  files: PropType<UploadFileInfo[]>;
686
690
  disabled: PropType<boolean>;
687
- async: PropType<UploadAsyncProps>;
691
+ async: PropType<UploadAsyncProps_2>;
688
692
  }>> & Readonly<{
689
693
  onCancel?: (...args: any[] | unknown[]) => any;
690
694
  onRemove?: (...args: any[] | unknown[]) => any;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-upload",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1738310097,version:"6.1.0-develop.5",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"};exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-upload",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1738834478,version:"6.1.0-develop.7",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"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "Kendo UI for Vue",
11
11
  productCode: "KENDOUIVUE",
12
12
  productCodes: ["KENDOUIVUE"],
13
- publishDate: 1738310097,
14
- version: "6.1.0-develop.5",
13
+ publishDate: 1738834478,
14
+ version: "6.1.0-develop.7",
15
15
  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"
16
16
  };
17
17
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-upload",
3
- "version": "6.1.0-develop.5",
3
+ "version": "6.1.0-develop.7",
4
4
  "description": "TODO",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -19,10 +19,10 @@
19
19
  "sideEffects": false,
20
20
  "peerDependencies": {
21
21
  "@progress/kendo-licensing": "^1.3.4",
22
- "@progress/kendo-vue-buttons": "6.1.0-develop.5",
23
- "@progress/kendo-vue-common": "6.1.0-develop.5",
24
- "@progress/kendo-vue-intl": "6.1.0-develop.5",
25
- "@progress/kendo-vue-progressbars": "6.1.0-develop.5",
22
+ "@progress/kendo-vue-buttons": "6.1.0-develop.7",
23
+ "@progress/kendo-vue-common": "6.1.0-develop.7",
24
+ "@progress/kendo-vue-intl": "6.1.0-develop.7",
25
+ "@progress/kendo-vue-progressbars": "6.1.0-develop.7",
26
26
  "@progress/kendo-svg-icons": "^4.0.0",
27
27
  "axios": "^1.7.4",
28
28
  "vue": "^3.0.2"
@@ -44,7 +44,7 @@
44
44
  "package": {
45
45
  "productName": "Kendo UI for Vue",
46
46
  "productCode": "KENDOUIVUE",
47
- "publishDate": 1738310097,
47
+ "publishDate": 1738834478,
48
48
  "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"
49
49
  }
50
50
  },