@progress/kendo-angular-upload 14.4.0-develop.3 → 14.4.0-develop.5
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/esm2020/fileselect.component.mjs +5 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/upload.component.mjs +8 -4
- package/fesm2015/progress-kendo-angular-upload.mjs +15 -7
- package/fesm2020/progress-kendo-angular-upload.mjs +15 -7
- package/fileselect.component.d.ts +5 -1
- package/package.json +7 -7
- package/schematics/ngAdd/index.js +3 -3
- package/upload.component.d.ts +8 -4
|
@@ -48,21 +48,25 @@ export class FileSelectComponent {
|
|
|
48
48
|
this.cdr = cdr;
|
|
49
49
|
/**
|
|
50
50
|
* Disables the FileSelect.
|
|
51
|
-
*
|
|
51
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_fileselect#toc-managing-the-fileselect-disabled-state-in-reactive-forms).
|
|
52
|
+
* @default false
|
|
52
53
|
*/
|
|
53
54
|
this.disabled = false;
|
|
54
55
|
/**
|
|
55
56
|
* Enables the selection of multiple files
|
|
56
57
|
* ([see example]({% slug fileprocessing_upload %}#toc-upload-of-sinlge-or-multiple-files)).
|
|
57
58
|
* If set to `false`, only one file can be selected at a time.
|
|
59
|
+
* @default true
|
|
58
60
|
*/
|
|
59
61
|
this.multiple = true;
|
|
60
62
|
/**
|
|
61
63
|
* Toggles the visibility of the file list.
|
|
64
|
+
* @default true
|
|
62
65
|
*/
|
|
63
66
|
this.showFileList = true;
|
|
64
67
|
/**
|
|
65
68
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the FileSelect.
|
|
69
|
+
* @default 0
|
|
66
70
|
*/
|
|
67
71
|
this.tabindex = 0;
|
|
68
72
|
/**
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-upload',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '14.4.0-develop.
|
|
12
|
+
publishDate: 1704796012,
|
|
13
|
+
version: '14.4.0-develop.5',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -57,26 +57,30 @@ export class UploadComponent {
|
|
|
57
57
|
/**
|
|
58
58
|
* Enables the chunk functionality of the Upload.
|
|
59
59
|
*
|
|
60
|
-
*
|
|
60
|
+
* @default false
|
|
61
61
|
*/
|
|
62
62
|
this.chunkable = false;
|
|
63
63
|
/**
|
|
64
64
|
* Enables the selection of multiple files
|
|
65
65
|
* ([see example]({% slug fileprocessing_upload %}#toc-upload-of-sinlge-or-multiple-files)).
|
|
66
66
|
* If set to `false`, only one file can be selected at a time.
|
|
67
|
+
* @default true
|
|
67
68
|
*/
|
|
68
69
|
this.multiple = true;
|
|
69
70
|
/**
|
|
70
71
|
* Disables the Upload ([see example]({% slug disabledstate_upload %})).
|
|
71
|
-
*
|
|
72
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_upload#toc-managing-the-upload-disabled-state-in-reactive-forms).
|
|
73
|
+
* @default false
|
|
72
74
|
*/
|
|
73
75
|
this.disabled = false;
|
|
74
76
|
/**
|
|
75
77
|
* Toggles the visibility of the file list.
|
|
78
|
+
* @default true
|
|
76
79
|
*/
|
|
77
80
|
this.showFileList = true;
|
|
78
81
|
/**
|
|
79
82
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
83
|
+
* @default 0
|
|
80
84
|
*/
|
|
81
85
|
this.tabindex = 0;
|
|
82
86
|
/**
|
|
@@ -245,7 +249,7 @@ export class UploadComponent {
|
|
|
245
249
|
/**
|
|
246
250
|
* Sets the expected [`response type`](https://angular.io/api/common/http/HttpRequest#responseType) of the server.
|
|
247
251
|
* It is used to parse the response appropriately.
|
|
248
|
-
*
|
|
252
|
+
* @default 'json'
|
|
249
253
|
*/
|
|
250
254
|
set responseType(responseType) {
|
|
251
255
|
this.uploadService.async.responseType = responseType;
|
|
@@ -294,7 +298,7 @@ export class UploadComponent {
|
|
|
294
298
|
/**
|
|
295
299
|
* Specifies if the selected files are uploaded simultaneously or one by one.
|
|
296
300
|
*
|
|
297
|
-
*
|
|
301
|
+
* @default true
|
|
298
302
|
*/
|
|
299
303
|
set concurrent(concurrent) {
|
|
300
304
|
this.uploadService.async.concurrent = concurrent;
|
|
@@ -1510,8 +1510,8 @@ const packageMetadata = {
|
|
|
1510
1510
|
name: '@progress/kendo-angular-upload',
|
|
1511
1511
|
productName: 'Kendo UI for Angular',
|
|
1512
1512
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1513
|
-
publishDate:
|
|
1514
|
-
version: '14.4.0-develop.
|
|
1513
|
+
publishDate: 1704796012,
|
|
1514
|
+
version: '14.4.0-develop.5',
|
|
1515
1515
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1516
1516
|
};
|
|
1517
1517
|
|
|
@@ -2827,21 +2827,25 @@ class FileSelectComponent {
|
|
|
2827
2827
|
this.cdr = cdr;
|
|
2828
2828
|
/**
|
|
2829
2829
|
* Disables the FileSelect.
|
|
2830
|
-
*
|
|
2830
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_fileselect#toc-managing-the-fileselect-disabled-state-in-reactive-forms).
|
|
2831
|
+
* @default false
|
|
2831
2832
|
*/
|
|
2832
2833
|
this.disabled = false;
|
|
2833
2834
|
/**
|
|
2834
2835
|
* Enables the selection of multiple files
|
|
2835
2836
|
* ([see example]({% slug fileprocessing_upload %}#toc-upload-of-sinlge-or-multiple-files)).
|
|
2836
2837
|
* If set to `false`, only one file can be selected at a time.
|
|
2838
|
+
* @default true
|
|
2837
2839
|
*/
|
|
2838
2840
|
this.multiple = true;
|
|
2839
2841
|
/**
|
|
2840
2842
|
* Toggles the visibility of the file list.
|
|
2843
|
+
* @default true
|
|
2841
2844
|
*/
|
|
2842
2845
|
this.showFileList = true;
|
|
2843
2846
|
/**
|
|
2844
2847
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the FileSelect.
|
|
2848
|
+
* @default 0
|
|
2845
2849
|
*/
|
|
2846
2850
|
this.tabindex = 0;
|
|
2847
2851
|
/**
|
|
@@ -3597,26 +3601,30 @@ class UploadComponent {
|
|
|
3597
3601
|
/**
|
|
3598
3602
|
* Enables the chunk functionality of the Upload.
|
|
3599
3603
|
*
|
|
3600
|
-
*
|
|
3604
|
+
* @default false
|
|
3601
3605
|
*/
|
|
3602
3606
|
this.chunkable = false;
|
|
3603
3607
|
/**
|
|
3604
3608
|
* Enables the selection of multiple files
|
|
3605
3609
|
* ([see example]({% slug fileprocessing_upload %}#toc-upload-of-sinlge-or-multiple-files)).
|
|
3606
3610
|
* If set to `false`, only one file can be selected at a time.
|
|
3611
|
+
* @default true
|
|
3607
3612
|
*/
|
|
3608
3613
|
this.multiple = true;
|
|
3609
3614
|
/**
|
|
3610
3615
|
* Disables the Upload ([see example]({% slug disabledstate_upload %})).
|
|
3611
|
-
*
|
|
3616
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_upload#toc-managing-the-upload-disabled-state-in-reactive-forms).
|
|
3617
|
+
* @default false
|
|
3612
3618
|
*/
|
|
3613
3619
|
this.disabled = false;
|
|
3614
3620
|
/**
|
|
3615
3621
|
* Toggles the visibility of the file list.
|
|
3622
|
+
* @default true
|
|
3616
3623
|
*/
|
|
3617
3624
|
this.showFileList = true;
|
|
3618
3625
|
/**
|
|
3619
3626
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
3627
|
+
* @default 0
|
|
3620
3628
|
*/
|
|
3621
3629
|
this.tabindex = 0;
|
|
3622
3630
|
/**
|
|
@@ -3785,7 +3793,7 @@ class UploadComponent {
|
|
|
3785
3793
|
/**
|
|
3786
3794
|
* Sets the expected [`response type`](https://angular.io/api/common/http/HttpRequest#responseType) of the server.
|
|
3787
3795
|
* It is used to parse the response appropriately.
|
|
3788
|
-
*
|
|
3796
|
+
* @default 'json'
|
|
3789
3797
|
*/
|
|
3790
3798
|
set responseType(responseType) {
|
|
3791
3799
|
this.uploadService.async.responseType = responseType;
|
|
@@ -3834,7 +3842,7 @@ class UploadComponent {
|
|
|
3834
3842
|
/**
|
|
3835
3843
|
* Specifies if the selected files are uploaded simultaneously or one by one.
|
|
3836
3844
|
*
|
|
3837
|
-
*
|
|
3845
|
+
* @default true
|
|
3838
3846
|
*/
|
|
3839
3847
|
set concurrent(concurrent) {
|
|
3840
3848
|
this.uploadService.async.concurrent = concurrent;
|
|
@@ -1510,8 +1510,8 @@ const packageMetadata = {
|
|
|
1510
1510
|
name: '@progress/kendo-angular-upload',
|
|
1511
1511
|
productName: 'Kendo UI for Angular',
|
|
1512
1512
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1513
|
-
publishDate:
|
|
1514
|
-
version: '14.4.0-develop.
|
|
1513
|
+
publishDate: 1704796012,
|
|
1514
|
+
version: '14.4.0-develop.5',
|
|
1515
1515
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1516
1516
|
};
|
|
1517
1517
|
|
|
@@ -2825,21 +2825,25 @@ class FileSelectComponent {
|
|
|
2825
2825
|
this.cdr = cdr;
|
|
2826
2826
|
/**
|
|
2827
2827
|
* Disables the FileSelect.
|
|
2828
|
-
*
|
|
2828
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_fileselect#toc-managing-the-fileselect-disabled-state-in-reactive-forms).
|
|
2829
|
+
* @default false
|
|
2829
2830
|
*/
|
|
2830
2831
|
this.disabled = false;
|
|
2831
2832
|
/**
|
|
2832
2833
|
* Enables the selection of multiple files
|
|
2833
2834
|
* ([see example]({% slug fileprocessing_upload %}#toc-upload-of-sinlge-or-multiple-files)).
|
|
2834
2835
|
* If set to `false`, only one file can be selected at a time.
|
|
2836
|
+
* @default true
|
|
2835
2837
|
*/
|
|
2836
2838
|
this.multiple = true;
|
|
2837
2839
|
/**
|
|
2838
2840
|
* Toggles the visibility of the file list.
|
|
2841
|
+
* @default true
|
|
2839
2842
|
*/
|
|
2840
2843
|
this.showFileList = true;
|
|
2841
2844
|
/**
|
|
2842
2845
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the FileSelect.
|
|
2846
|
+
* @default 0
|
|
2843
2847
|
*/
|
|
2844
2848
|
this.tabindex = 0;
|
|
2845
2849
|
/**
|
|
@@ -3596,26 +3600,30 @@ class UploadComponent {
|
|
|
3596
3600
|
/**
|
|
3597
3601
|
* Enables the chunk functionality of the Upload.
|
|
3598
3602
|
*
|
|
3599
|
-
*
|
|
3603
|
+
* @default false
|
|
3600
3604
|
*/
|
|
3601
3605
|
this.chunkable = false;
|
|
3602
3606
|
/**
|
|
3603
3607
|
* Enables the selection of multiple files
|
|
3604
3608
|
* ([see example]({% slug fileprocessing_upload %}#toc-upload-of-sinlge-or-multiple-files)).
|
|
3605
3609
|
* If set to `false`, only one file can be selected at a time.
|
|
3610
|
+
* @default true
|
|
3606
3611
|
*/
|
|
3607
3612
|
this.multiple = true;
|
|
3608
3613
|
/**
|
|
3609
3614
|
* Disables the Upload ([see example]({% slug disabledstate_upload %})).
|
|
3610
|
-
*
|
|
3615
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_upload#toc-managing-the-upload-disabled-state-in-reactive-forms).
|
|
3616
|
+
* @default false
|
|
3611
3617
|
*/
|
|
3612
3618
|
this.disabled = false;
|
|
3613
3619
|
/**
|
|
3614
3620
|
* Toggles the visibility of the file list.
|
|
3621
|
+
* @default true
|
|
3615
3622
|
*/
|
|
3616
3623
|
this.showFileList = true;
|
|
3617
3624
|
/**
|
|
3618
3625
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
3626
|
+
* @default 0
|
|
3619
3627
|
*/
|
|
3620
3628
|
this.tabindex = 0;
|
|
3621
3629
|
/**
|
|
@@ -3784,7 +3792,7 @@ class UploadComponent {
|
|
|
3784
3792
|
/**
|
|
3785
3793
|
* Sets the expected [`response type`](https://angular.io/api/common/http/HttpRequest#responseType) of the server.
|
|
3786
3794
|
* It is used to parse the response appropriately.
|
|
3787
|
-
*
|
|
3795
|
+
* @default 'json'
|
|
3788
3796
|
*/
|
|
3789
3797
|
set responseType(responseType) {
|
|
3790
3798
|
this.uploadService.async.responseType = responseType;
|
|
@@ -3833,7 +3841,7 @@ class UploadComponent {
|
|
|
3833
3841
|
/**
|
|
3834
3842
|
* Specifies if the selected files are uploaded simultaneously or one by one.
|
|
3835
3843
|
*
|
|
3836
|
-
*
|
|
3844
|
+
* @default true
|
|
3837
3845
|
*/
|
|
3838
3846
|
set concurrent(concurrent) {
|
|
3839
3847
|
this.uploadService.async.concurrent = concurrent;
|
|
@@ -32,13 +32,15 @@ export declare class FileSelectComponent implements OnInit, OnDestroy {
|
|
|
32
32
|
accept: string;
|
|
33
33
|
/**
|
|
34
34
|
* Disables the FileSelect.
|
|
35
|
-
*
|
|
35
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_fileselect#toc-managing-the-fileselect-disabled-state-in-reactive-forms).
|
|
36
|
+
* @default false
|
|
36
37
|
*/
|
|
37
38
|
disabled: boolean;
|
|
38
39
|
/**
|
|
39
40
|
* Enables the selection of multiple files
|
|
40
41
|
* ([see example]({% slug fileprocessing_upload %}#toc-upload-of-sinlge-or-multiple-files)).
|
|
41
42
|
* If set to `false`, only one file can be selected at a time.
|
|
43
|
+
* @default true
|
|
42
44
|
*/
|
|
43
45
|
multiple: boolean;
|
|
44
46
|
/**
|
|
@@ -48,10 +50,12 @@ export declare class FileSelectComponent implements OnInit, OnDestroy {
|
|
|
48
50
|
get name(): string;
|
|
49
51
|
/**
|
|
50
52
|
* Toggles the visibility of the file list.
|
|
53
|
+
* @default true
|
|
51
54
|
*/
|
|
52
55
|
showFileList: boolean;
|
|
53
56
|
/**
|
|
54
57
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the FileSelect.
|
|
58
|
+
* @default 0
|
|
55
59
|
*/
|
|
56
60
|
tabindex: number;
|
|
57
61
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-upload",
|
|
3
|
-
"version": "14.4.0-develop.
|
|
3
|
+
"version": "14.4.0-develop.5",
|
|
4
4
|
"description": "Kendo UI Angular Upload Component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -24,16 +24,16 @@
|
|
|
24
24
|
"@angular/forms": "13 - 17",
|
|
25
25
|
"@angular/platform-browser": "13 - 17",
|
|
26
26
|
"@progress/kendo-licensing": "^1.0.2",
|
|
27
|
-
"@progress/kendo-angular-common": "14.4.0-develop.
|
|
28
|
-
"@progress/kendo-angular-l10n": "14.4.0-develop.
|
|
29
|
-
"@progress/kendo-angular-icons": "14.4.0-develop.
|
|
30
|
-
"@progress/kendo-angular-buttons": "14.4.0-develop.
|
|
31
|
-
"@progress/kendo-angular-progressbar": "14.4.0-develop.
|
|
27
|
+
"@progress/kendo-angular-common": "14.4.0-develop.5",
|
|
28
|
+
"@progress/kendo-angular-l10n": "14.4.0-develop.5",
|
|
29
|
+
"@progress/kendo-angular-icons": "14.4.0-develop.5",
|
|
30
|
+
"@progress/kendo-angular-buttons": "14.4.0-develop.5",
|
|
31
|
+
"@progress/kendo-angular-progressbar": "14.4.0-develop.5",
|
|
32
32
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
|
-
"@progress/kendo-angular-schematics": "14.4.0-develop.
|
|
36
|
+
"@progress/kendo-angular-schematics": "14.4.0-develop.5"
|
|
37
37
|
},
|
|
38
38
|
"schematics": "./schematics/collection.json",
|
|
39
39
|
"module": "fesm2015/progress-kendo-angular-upload.mjs",
|
|
@@ -10,9 +10,9 @@ function default_1(options) {
|
|
|
10
10
|
], peerDependencies: {
|
|
11
11
|
// peer dep of the icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^2.0.0',
|
|
13
|
-
'@progress/kendo-angular-buttons': '14.4.0-develop.
|
|
14
|
-
'@progress/kendo-angular-progressbar': '14.4.0-develop.
|
|
15
|
-
'@progress/kendo-angular-popup': '14.4.0-develop.
|
|
13
|
+
'@progress/kendo-angular-buttons': '14.4.0-develop.5',
|
|
14
|
+
'@progress/kendo-angular-progressbar': '14.4.0-develop.5',
|
|
15
|
+
'@progress/kendo-angular-popup': '14.4.0-develop.5',
|
|
16
16
|
} });
|
|
17
17
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
18
18
|
}
|
package/upload.component.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ export declare class UploadComponent implements OnInit, OnDestroy, ControlValueA
|
|
|
84
84
|
/**
|
|
85
85
|
* Sets the expected [`response type`](https://angular.io/api/common/http/HttpRequest#responseType) of the server.
|
|
86
86
|
* It is used to parse the response appropriately.
|
|
87
|
-
*
|
|
87
|
+
* @default 'json'
|
|
88
88
|
*/
|
|
89
89
|
set responseType(responseType: 'arraybuffer' | 'blob' | 'json' | 'text');
|
|
90
90
|
get responseType(): 'arraybuffer' | 'blob' | 'json' | 'text';
|
|
@@ -117,13 +117,13 @@ export declare class UploadComponent implements OnInit, OnDestroy, ControlValueA
|
|
|
117
117
|
/**
|
|
118
118
|
* Enables the chunk functionality of the Upload.
|
|
119
119
|
*
|
|
120
|
-
*
|
|
120
|
+
* @default false
|
|
121
121
|
*/
|
|
122
122
|
chunkable: ChunkSettings | boolean;
|
|
123
123
|
/**
|
|
124
124
|
* Specifies if the selected files are uploaded simultaneously or one by one.
|
|
125
125
|
*
|
|
126
|
-
*
|
|
126
|
+
* @default true
|
|
127
127
|
*/
|
|
128
128
|
set concurrent(concurrent: boolean);
|
|
129
129
|
get concurrent(): boolean;
|
|
@@ -131,19 +131,23 @@ export declare class UploadComponent implements OnInit, OnDestroy, ControlValueA
|
|
|
131
131
|
* Enables the selection of multiple files
|
|
132
132
|
* ([see example]({% slug fileprocessing_upload %}#toc-upload-of-sinlge-or-multiple-files)).
|
|
133
133
|
* If set to `false`, only one file can be selected at a time.
|
|
134
|
+
* @default true
|
|
134
135
|
*/
|
|
135
136
|
multiple: boolean;
|
|
136
137
|
/**
|
|
137
138
|
* Disables the Upload ([see example]({% slug disabledstate_upload %})).
|
|
138
|
-
*
|
|
139
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_upload#toc-managing-the-upload-disabled-state-in-reactive-forms).
|
|
140
|
+
* @default false
|
|
139
141
|
*/
|
|
140
142
|
disabled: boolean;
|
|
141
143
|
/**
|
|
142
144
|
* Toggles the visibility of the file list.
|
|
145
|
+
* @default true
|
|
143
146
|
*/
|
|
144
147
|
showFileList: boolean;
|
|
145
148
|
/**
|
|
146
149
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
150
|
+
* @default 0
|
|
147
151
|
*/
|
|
148
152
|
tabindex: number;
|
|
149
153
|
/**
|