@progress/kendo-angular-upload 16.9.0-develop.3 → 16.9.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/dropzone-external.directive.d.ts +8 -3
- package/esm2020/dropzone-external.directive.mjs +6 -2
- package/esm2020/dropzone.component.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-upload.mjs +9 -5
- package/fesm2020/progress-kendo-angular-upload.mjs +9 -5
- package/package.json +7 -7
- package/schematics/ngAdd/index.js +3 -3
|
@@ -9,10 +9,15 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
export declare class UploadDropZoneDirective {
|
|
10
10
|
private dropZoneService;
|
|
11
11
|
/**
|
|
12
|
-
* Specifies the id of the drop zone
|
|
13
|
-
* an existing Upload
|
|
12
|
+
* Specifies the id of the drop zone used to associate it with
|
|
13
|
+
* an existing Upload component.
|
|
14
14
|
*/
|
|
15
15
|
zoneId: string;
|
|
16
|
+
/**
|
|
17
|
+
* Specifies the id of the drop zone used to associate it with
|
|
18
|
+
* an existing FileSelect component.
|
|
19
|
+
*/
|
|
20
|
+
fileSelectZoneId: string;
|
|
16
21
|
constructor(dropZoneService: DropZoneService);
|
|
17
22
|
/**
|
|
18
23
|
* @hidden
|
|
@@ -31,5 +36,5 @@ export declare class UploadDropZoneDirective {
|
|
|
31
36
|
*/
|
|
32
37
|
get componentInstance(): Array<UploadComponent | FileSelectComponent>;
|
|
33
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<UploadDropZoneDirective, never>;
|
|
34
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<UploadDropZoneDirective, "[kendoUploadDropZone], [kendoFileSelectDropZone]", never, { "zoneId": "kendoUploadDropZone"; }, {}, never, never, true, never>;
|
|
39
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<UploadDropZoneDirective, "[kendoUploadDropZone], [kendoFileSelectDropZone]", never, { "zoneId": "kendoUploadDropZone"; "fileSelectZoneId": "kendoFileSelectDropZone"; }, {}, never, never, true, never>;
|
|
35
40
|
}
|
|
@@ -57,11 +57,12 @@ export class UploadDropZoneDirective {
|
|
|
57
57
|
* @hidden
|
|
58
58
|
*/
|
|
59
59
|
get componentInstance() {
|
|
60
|
-
|
|
60
|
+
const id = this.zoneId || this.fileSelectZoneId;
|
|
61
|
+
return this.dropZoneService.getComponents(id);
|
|
61
62
|
}
|
|
62
63
|
}
|
|
63
64
|
UploadDropZoneDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneDirective, deps: [{ token: i1.DropZoneService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
64
|
-
UploadDropZoneDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: UploadDropZoneDirective, isStandalone: true, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: { zoneId: ["kendoUploadDropZone", "zoneId"] }, host: { listeners: { "dragenter": "onElementDragEnter()", "dragover": "onElementDragOver()", "drop": "onDropListener($event)" } }, providers: [
|
|
65
|
+
UploadDropZoneDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: UploadDropZoneDirective, isStandalone: true, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: { zoneId: ["kendoUploadDropZone", "zoneId"], fileSelectZoneId: ["kendoFileSelectDropZone", "fileSelectZoneId"] }, host: { listeners: { "dragenter": "onElementDragEnter()", "dragover": "onElementDragOver()", "drop": "onDropListener($event)" } }, providers: [
|
|
65
66
|
DropZoneService
|
|
66
67
|
], ngImport: i0 });
|
|
67
68
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneDirective, decorators: [{
|
|
@@ -76,6 +77,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
76
77
|
}], ctorParameters: function () { return [{ type: i1.DropZoneService }]; }, propDecorators: { zoneId: [{
|
|
77
78
|
type: Input,
|
|
78
79
|
args: ['kendoUploadDropZone']
|
|
80
|
+
}], fileSelectZoneId: [{
|
|
81
|
+
type: Input,
|
|
82
|
+
args: ['kendoFileSelectDropZone']
|
|
79
83
|
}], onElementDragEnter: [{
|
|
80
84
|
type: HostListener,
|
|
81
85
|
args: ['dragenter']
|
|
@@ -88,7 +88,7 @@ UploadDropZoneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
88
88
|
<ng-content></ng-content>
|
|
89
89
|
</span>
|
|
90
90
|
</div>
|
|
91
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoUploadLocalizedMessages],\n [kendoFileSelectLocalizedMessages],\n [kendoUploadDropZoneLocalizedMessages]\n " }, { kind: "directive", type: UploadDropZoneDirective, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: ["kendoUploadDropZone"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
91
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoUploadLocalizedMessages],\n [kendoFileSelectLocalizedMessages],\n [kendoUploadDropZoneLocalizedMessages]\n " }, { kind: "directive", type: UploadDropZoneDirective, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: ["kendoUploadDropZone", "kendoFileSelectDropZone"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
92
92
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneComponent, decorators: [{
|
|
93
93
|
type: Component,
|
|
94
94
|
args: [{
|
|
@@ -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: '16.9.0-develop.
|
|
12
|
+
publishDate: 1724769590,
|
|
13
|
+
version: '16.9.0-develop.5',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -1552,8 +1552,8 @@ const packageMetadata = {
|
|
|
1552
1552
|
name: '@progress/kendo-angular-upload',
|
|
1553
1553
|
productName: 'Kendo UI for Angular',
|
|
1554
1554
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1555
|
-
publishDate:
|
|
1556
|
-
version: '16.9.0-develop.
|
|
1555
|
+
publishDate: 1724769590,
|
|
1556
|
+
version: '16.9.0-develop.5',
|
|
1557
1557
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1558
1558
|
};
|
|
1559
1559
|
|
|
@@ -4061,11 +4061,12 @@ class UploadDropZoneDirective {
|
|
|
4061
4061
|
* @hidden
|
|
4062
4062
|
*/
|
|
4063
4063
|
get componentInstance() {
|
|
4064
|
-
|
|
4064
|
+
const id = this.zoneId || this.fileSelectZoneId;
|
|
4065
|
+
return this.dropZoneService.getComponents(id);
|
|
4065
4066
|
}
|
|
4066
4067
|
}
|
|
4067
4068
|
UploadDropZoneDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneDirective, deps: [{ token: DropZoneService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4068
|
-
UploadDropZoneDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: UploadDropZoneDirective, isStandalone: true, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: { zoneId: ["kendoUploadDropZone", "zoneId"] }, host: { listeners: { "dragenter": "onElementDragEnter()", "dragover": "onElementDragOver()", "drop": "onDropListener($event)" } }, providers: [
|
|
4069
|
+
UploadDropZoneDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: UploadDropZoneDirective, isStandalone: true, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: { zoneId: ["kendoUploadDropZone", "zoneId"], fileSelectZoneId: ["kendoFileSelectDropZone", "fileSelectZoneId"] }, host: { listeners: { "dragenter": "onElementDragEnter()", "dragover": "onElementDragOver()", "drop": "onDropListener($event)" } }, providers: [
|
|
4069
4070
|
DropZoneService
|
|
4070
4071
|
], ngImport: i0 });
|
|
4071
4072
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneDirective, decorators: [{
|
|
@@ -4080,6 +4081,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4080
4081
|
}], ctorParameters: function () { return [{ type: DropZoneService }]; }, propDecorators: { zoneId: [{
|
|
4081
4082
|
type: Input,
|
|
4082
4083
|
args: ['kendoUploadDropZone']
|
|
4084
|
+
}], fileSelectZoneId: [{
|
|
4085
|
+
type: Input,
|
|
4086
|
+
args: ['kendoFileSelectDropZone']
|
|
4083
4087
|
}], onElementDragEnter: [{
|
|
4084
4088
|
type: HostListener,
|
|
4085
4089
|
args: ['dragenter']
|
|
@@ -4168,7 +4172,7 @@ UploadDropZoneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
4168
4172
|
<ng-content></ng-content>
|
|
4169
4173
|
</span>
|
|
4170
4174
|
</div>
|
|
4171
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoUploadLocalizedMessages],\n [kendoFileSelectLocalizedMessages],\n [kendoUploadDropZoneLocalizedMessages]\n " }, { kind: "directive", type: UploadDropZoneDirective, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: ["kendoUploadDropZone"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
4175
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoUploadLocalizedMessages],\n [kendoFileSelectLocalizedMessages],\n [kendoUploadDropZoneLocalizedMessages]\n " }, { kind: "directive", type: UploadDropZoneDirective, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: ["kendoUploadDropZone", "kendoFileSelectDropZone"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
4172
4176
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneComponent, decorators: [{
|
|
4173
4177
|
type: Component,
|
|
4174
4178
|
args: [{
|
|
@@ -1552,8 +1552,8 @@ const packageMetadata = {
|
|
|
1552
1552
|
name: '@progress/kendo-angular-upload',
|
|
1553
1553
|
productName: 'Kendo UI for Angular',
|
|
1554
1554
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1555
|
-
publishDate:
|
|
1556
|
-
version: '16.9.0-develop.
|
|
1555
|
+
publishDate: 1724769590,
|
|
1556
|
+
version: '16.9.0-develop.5',
|
|
1557
1557
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1558
1558
|
};
|
|
1559
1559
|
|
|
@@ -4061,11 +4061,12 @@ class UploadDropZoneDirective {
|
|
|
4061
4061
|
* @hidden
|
|
4062
4062
|
*/
|
|
4063
4063
|
get componentInstance() {
|
|
4064
|
-
|
|
4064
|
+
const id = this.zoneId || this.fileSelectZoneId;
|
|
4065
|
+
return this.dropZoneService.getComponents(id);
|
|
4065
4066
|
}
|
|
4066
4067
|
}
|
|
4067
4068
|
UploadDropZoneDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneDirective, deps: [{ token: DropZoneService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4068
|
-
UploadDropZoneDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: UploadDropZoneDirective, isStandalone: true, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: { zoneId: ["kendoUploadDropZone", "zoneId"] }, host: { listeners: { "dragenter": "onElementDragEnter()", "dragover": "onElementDragOver()", "drop": "onDropListener($event)" } }, providers: [
|
|
4069
|
+
UploadDropZoneDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: UploadDropZoneDirective, isStandalone: true, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: { zoneId: ["kendoUploadDropZone", "zoneId"], fileSelectZoneId: ["kendoFileSelectDropZone", "fileSelectZoneId"] }, host: { listeners: { "dragenter": "onElementDragEnter()", "dragover": "onElementDragOver()", "drop": "onDropListener($event)" } }, providers: [
|
|
4069
4070
|
DropZoneService
|
|
4070
4071
|
], ngImport: i0 });
|
|
4071
4072
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneDirective, decorators: [{
|
|
@@ -4080,6 +4081,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4080
4081
|
}], ctorParameters: function () { return [{ type: DropZoneService }]; }, propDecorators: { zoneId: [{
|
|
4081
4082
|
type: Input,
|
|
4082
4083
|
args: ['kendoUploadDropZone']
|
|
4084
|
+
}], fileSelectZoneId: [{
|
|
4085
|
+
type: Input,
|
|
4086
|
+
args: ['kendoFileSelectDropZone']
|
|
4083
4087
|
}], onElementDragEnter: [{
|
|
4084
4088
|
type: HostListener,
|
|
4085
4089
|
args: ['dragenter']
|
|
@@ -4168,7 +4172,7 @@ UploadDropZoneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
4168
4172
|
<ng-content></ng-content>
|
|
4169
4173
|
</span>
|
|
4170
4174
|
</div>
|
|
4171
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoUploadLocalizedMessages],\n [kendoFileSelectLocalizedMessages],\n [kendoUploadDropZoneLocalizedMessages]\n " }, { kind: "directive", type: UploadDropZoneDirective, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: ["kendoUploadDropZone"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
4175
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoUploadLocalizedMessages],\n [kendoFileSelectLocalizedMessages],\n [kendoUploadDropZoneLocalizedMessages]\n " }, { kind: "directive", type: UploadDropZoneDirective, selector: "[kendoUploadDropZone], [kendoFileSelectDropZone]", inputs: ["kendoUploadDropZone", "kendoFileSelectDropZone"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
4172
4176
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UploadDropZoneComponent, decorators: [{
|
|
4173
4177
|
type: Component,
|
|
4174
4178
|
args: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-upload",
|
|
3
|
-
"version": "16.9.0-develop.
|
|
3
|
+
"version": "16.9.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": "15 - 18",
|
|
25
25
|
"@angular/platform-browser": "15 - 18",
|
|
26
26
|
"@progress/kendo-licensing": "^1.0.2",
|
|
27
|
-
"@progress/kendo-angular-common": "16.9.0-develop.
|
|
28
|
-
"@progress/kendo-angular-l10n": "16.9.0-develop.
|
|
29
|
-
"@progress/kendo-angular-icons": "16.9.0-develop.
|
|
30
|
-
"@progress/kendo-angular-buttons": "16.9.0-develop.
|
|
31
|
-
"@progress/kendo-angular-progressbar": "16.9.0-develop.
|
|
27
|
+
"@progress/kendo-angular-common": "16.9.0-develop.5",
|
|
28
|
+
"@progress/kendo-angular-l10n": "16.9.0-develop.5",
|
|
29
|
+
"@progress/kendo-angular-icons": "16.9.0-develop.5",
|
|
30
|
+
"@progress/kendo-angular-buttons": "16.9.0-develop.5",
|
|
31
|
+
"@progress/kendo-angular-progressbar": "16.9.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": "16.9.0-develop.
|
|
36
|
+
"@progress/kendo-angular-schematics": "16.9.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': '^3.0.0',
|
|
13
|
-
'@progress/kendo-angular-buttons': '16.9.0-develop.
|
|
14
|
-
'@progress/kendo-angular-progressbar': '16.9.0-develop.
|
|
15
|
-
'@progress/kendo-angular-popup': '16.9.0-develop.
|
|
13
|
+
'@progress/kendo-angular-buttons': '16.9.0-develop.5',
|
|
14
|
+
'@progress/kendo-angular-progressbar': '16.9.0-develop.5',
|
|
15
|
+
'@progress/kendo-angular-popup': '16.9.0-develop.5',
|
|
16
16
|
} });
|
|
17
17
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
18
18
|
}
|