@progress/kendo-angular-upload 11.5.0-develop.8 → 11.5.0
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/index.mjs
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
export { UploadService } from './upload.service';
|
|
6
6
|
export { NavigationService } from './navigation.service';
|
|
7
|
+
export { DropZoneService } from './dropzone.service';
|
|
7
8
|
export { FileSelectModule } from './fileselect.module';
|
|
8
9
|
export { UploadModule } from './upload.module';
|
|
9
10
|
export { UploadsModule } from './uploads.module';
|
|
@@ -23,5 +24,6 @@ export { UploadActionButtonsComponent } from './rendering/upload-action-buttons.
|
|
|
23
24
|
export { UploadDropZoneDirective } from './dropzone-external.directive';
|
|
24
25
|
export { CustomMessagesComponent } from './localization/custom-messages.component';
|
|
25
26
|
export { validateFiles } from './common/validation-util';
|
|
27
|
+
export { UPLOAD_VALUE_ACCESSOR } from './upload.component';
|
|
26
28
|
export * from './events';
|
|
27
29
|
export * from './types';
|
|
@@ -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: '11.5.0
|
|
12
|
+
publishDate: 1680680204,
|
|
13
|
+
version: '11.5.0',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -1506,6 +1506,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1506
1506
|
type: Injectable
|
|
1507
1507
|
}], ctorParameters: function () { return [{ type: UploadService }, { type: i0.NgZone }]; } });
|
|
1508
1508
|
|
|
1509
|
+
const components = {};
|
|
1510
|
+
/**
|
|
1511
|
+
* @hidden
|
|
1512
|
+
*/
|
|
1513
|
+
class DropZoneService {
|
|
1514
|
+
addComponent(component, zoneId) {
|
|
1515
|
+
if (this.has(zoneId)) {
|
|
1516
|
+
components[zoneId].push(component);
|
|
1517
|
+
}
|
|
1518
|
+
else {
|
|
1519
|
+
components[zoneId] = [component];
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
getComponents(zoneId) {
|
|
1523
|
+
return components[zoneId];
|
|
1524
|
+
}
|
|
1525
|
+
has(id) {
|
|
1526
|
+
return id in components;
|
|
1527
|
+
}
|
|
1528
|
+
}
|
|
1529
|
+
DropZoneService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1530
|
+
DropZoneService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService });
|
|
1531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService, decorators: [{
|
|
1532
|
+
type: Injectable
|
|
1533
|
+
}] });
|
|
1534
|
+
|
|
1509
1535
|
/**
|
|
1510
1536
|
* @hidden
|
|
1511
1537
|
*/
|
|
@@ -1513,8 +1539,8 @@ const packageMetadata = {
|
|
|
1513
1539
|
name: '@progress/kendo-angular-upload',
|
|
1514
1540
|
productName: 'Kendo UI for Angular',
|
|
1515
1541
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1516
|
-
publishDate:
|
|
1517
|
-
version: '11.5.0
|
|
1542
|
+
publishDate: 1680680204,
|
|
1543
|
+
version: '11.5.0',
|
|
1518
1544
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1519
1545
|
};
|
|
1520
1546
|
|
|
@@ -1535,32 +1561,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1535
1561
|
}]
|
|
1536
1562
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
1537
1563
|
|
|
1538
|
-
const components = {};
|
|
1539
|
-
/**
|
|
1540
|
-
* @hidden
|
|
1541
|
-
*/
|
|
1542
|
-
class DropZoneService {
|
|
1543
|
-
addComponent(component, zoneId) {
|
|
1544
|
-
if (this.has(zoneId)) {
|
|
1545
|
-
components[zoneId].push(component);
|
|
1546
|
-
}
|
|
1547
|
-
else {
|
|
1548
|
-
components[zoneId] = [component];
|
|
1549
|
-
}
|
|
1550
|
-
}
|
|
1551
|
-
getComponents(zoneId) {
|
|
1552
|
-
return components[zoneId];
|
|
1553
|
-
}
|
|
1554
|
-
has(id) {
|
|
1555
|
-
return id in components;
|
|
1556
|
-
}
|
|
1557
|
-
}
|
|
1558
|
-
DropZoneService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1559
|
-
DropZoneService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService });
|
|
1560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService, decorators: [{
|
|
1561
|
-
type: Injectable
|
|
1562
|
-
}] });
|
|
1563
|
-
|
|
1564
1564
|
/**
|
|
1565
1565
|
* Used to customize the rendering of the file info section in the list. All other elements of the default template, such as file icon, action buttons, upload progress etc. will be preserved in place. ([see example]({% slug templates_upload %}#toc-file-info-template)).
|
|
1566
1566
|
*/
|
|
@@ -4968,5 +4968,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4968
4968
|
* Generated bundle index. Do not edit.
|
|
4969
4969
|
*/
|
|
4970
4970
|
|
|
4971
|
-
export { CancelEvent, ClearEvent, CustomMessagesComponent, ErrorEvent, FileInfoTemplateDirective, FileListComponent, FileListItemActionButtonComponent, FileListItemBase, FileListMultipleItemsComponent, FileListSingleItemComponent, FileMap, FileSelectComponent, FileSelectDirective, FileSelectModule, FileState, FileTemplateDirective, NavigationService, PauseEvent, RemoveEvent, ResumeEvent, SelectEvent, SuccessEvent, UploadActionButtonsComponent, UploadComponent, UploadDropZoneComponent, UploadDropZoneDirective, UploadEvent, UploadModule, UploadProgressEvent, UploadService, UploadStatusTotalComponent, UploadsModule, validateFiles };
|
|
4971
|
+
export { CancelEvent, ClearEvent, CustomMessagesComponent, DropZoneService, ErrorEvent, FileInfoTemplateDirective, FileListComponent, FileListItemActionButtonComponent, FileListItemBase, FileListMultipleItemsComponent, FileListSingleItemComponent, FileMap, FileSelectComponent, FileSelectDirective, FileSelectModule, FileState, FileTemplateDirective, NavigationService, PauseEvent, RemoveEvent, ResumeEvent, SelectEvent, SuccessEvent, UPLOAD_VALUE_ACCESSOR, UploadActionButtonsComponent, UploadComponent, UploadDropZoneComponent, UploadDropZoneDirective, UploadEvent, UploadModule, UploadProgressEvent, UploadService, UploadStatusTotalComponent, UploadsModule, validateFiles };
|
|
4972
4972
|
|
|
@@ -1506,6 +1506,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1506
1506
|
type: Injectable
|
|
1507
1507
|
}], ctorParameters: function () { return [{ type: UploadService }, { type: i0.NgZone }]; } });
|
|
1508
1508
|
|
|
1509
|
+
const components = {};
|
|
1510
|
+
/**
|
|
1511
|
+
* @hidden
|
|
1512
|
+
*/
|
|
1513
|
+
class DropZoneService {
|
|
1514
|
+
addComponent(component, zoneId) {
|
|
1515
|
+
if (this.has(zoneId)) {
|
|
1516
|
+
components[zoneId].push(component);
|
|
1517
|
+
}
|
|
1518
|
+
else {
|
|
1519
|
+
components[zoneId] = [component];
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
getComponents(zoneId) {
|
|
1523
|
+
return components[zoneId];
|
|
1524
|
+
}
|
|
1525
|
+
has(id) {
|
|
1526
|
+
return id in components;
|
|
1527
|
+
}
|
|
1528
|
+
}
|
|
1529
|
+
DropZoneService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1530
|
+
DropZoneService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService });
|
|
1531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService, decorators: [{
|
|
1532
|
+
type: Injectable
|
|
1533
|
+
}] });
|
|
1534
|
+
|
|
1509
1535
|
/**
|
|
1510
1536
|
* @hidden
|
|
1511
1537
|
*/
|
|
@@ -1513,8 +1539,8 @@ const packageMetadata = {
|
|
|
1513
1539
|
name: '@progress/kendo-angular-upload',
|
|
1514
1540
|
productName: 'Kendo UI for Angular',
|
|
1515
1541
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1516
|
-
publishDate:
|
|
1517
|
-
version: '11.5.0
|
|
1542
|
+
publishDate: 1680680204,
|
|
1543
|
+
version: '11.5.0',
|
|
1518
1544
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1519
1545
|
};
|
|
1520
1546
|
|
|
@@ -1535,32 +1561,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1535
1561
|
}]
|
|
1536
1562
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
1537
1563
|
|
|
1538
|
-
const components = {};
|
|
1539
|
-
/**
|
|
1540
|
-
* @hidden
|
|
1541
|
-
*/
|
|
1542
|
-
class DropZoneService {
|
|
1543
|
-
addComponent(component, zoneId) {
|
|
1544
|
-
if (this.has(zoneId)) {
|
|
1545
|
-
components[zoneId].push(component);
|
|
1546
|
-
}
|
|
1547
|
-
else {
|
|
1548
|
-
components[zoneId] = [component];
|
|
1549
|
-
}
|
|
1550
|
-
}
|
|
1551
|
-
getComponents(zoneId) {
|
|
1552
|
-
return components[zoneId];
|
|
1553
|
-
}
|
|
1554
|
-
has(id) {
|
|
1555
|
-
return id in components;
|
|
1556
|
-
}
|
|
1557
|
-
}
|
|
1558
|
-
DropZoneService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1559
|
-
DropZoneService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService });
|
|
1560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropZoneService, decorators: [{
|
|
1561
|
-
type: Injectable
|
|
1562
|
-
}] });
|
|
1563
|
-
|
|
1564
1564
|
/**
|
|
1565
1565
|
* Used to customize the rendering of the file info section in the list. All other elements of the default template, such as file icon, action buttons, upload progress etc. will be preserved in place. ([see example]({% slug templates_upload %}#toc-file-info-template)).
|
|
1566
1566
|
*/
|
|
@@ -4967,5 +4967,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4967
4967
|
* Generated bundle index. Do not edit.
|
|
4968
4968
|
*/
|
|
4969
4969
|
|
|
4970
|
-
export { CancelEvent, ClearEvent, CustomMessagesComponent, ErrorEvent, FileInfoTemplateDirective, FileListComponent, FileListItemActionButtonComponent, FileListItemBase, FileListMultipleItemsComponent, FileListSingleItemComponent, FileMap, FileSelectComponent, FileSelectDirective, FileSelectModule, FileState, FileTemplateDirective, NavigationService, PauseEvent, RemoveEvent, ResumeEvent, SelectEvent, SuccessEvent, UploadActionButtonsComponent, UploadComponent, UploadDropZoneComponent, UploadDropZoneDirective, UploadEvent, UploadModule, UploadProgressEvent, UploadService, UploadStatusTotalComponent, UploadsModule, validateFiles };
|
|
4970
|
+
export { CancelEvent, ClearEvent, CustomMessagesComponent, DropZoneService, ErrorEvent, FileInfoTemplateDirective, FileListComponent, FileListItemActionButtonComponent, FileListItemBase, FileListMultipleItemsComponent, FileListSingleItemComponent, FileMap, FileSelectComponent, FileSelectDirective, FileSelectModule, FileState, FileTemplateDirective, NavigationService, PauseEvent, RemoveEvent, ResumeEvent, SelectEvent, SuccessEvent, UPLOAD_VALUE_ACCESSOR, UploadActionButtonsComponent, UploadComponent, UploadDropZoneComponent, UploadDropZoneDirective, UploadEvent, UploadModule, UploadProgressEvent, UploadService, UploadStatusTotalComponent, UploadsModule, validateFiles };
|
|
4971
4971
|
|
package/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
export { UploadService } from './upload.service';
|
|
6
6
|
export { NavigationService } from './navigation.service';
|
|
7
|
+
export { DropZoneService } from './dropzone.service';
|
|
7
8
|
export { FileSelectModule } from './fileselect.module';
|
|
8
9
|
export { UploadModule } from './upload.module';
|
|
9
10
|
export { UploadsModule } from './uploads.module';
|
|
@@ -24,5 +25,6 @@ export { UploadDropZoneDirective } from './dropzone-external.directive';
|
|
|
24
25
|
export { CustomMessagesComponent } from './localization/custom-messages.component';
|
|
25
26
|
export { ActionsLayout } from './common/action-buttons-layout';
|
|
26
27
|
export { validateFiles } from './common/validation-util';
|
|
28
|
+
export { UPLOAD_VALUE_ACCESSOR } from './upload.component';
|
|
27
29
|
export * from './events';
|
|
28
30
|
export * from './types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-upload",
|
|
3
|
-
"version": "11.5.0
|
|
3
|
+
"version": "11.5.0",
|
|
4
4
|
"description": "Kendo UI Angular Upload Component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"@angular/core": "13 - 15",
|
|
24
24
|
"@angular/platform-browser": "13 - 15",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-common": "11.5.0
|
|
27
|
-
"@progress/kendo-angular-l10n": "11.5.0
|
|
28
|
-
"@progress/kendo-angular-icons": "11.5.0
|
|
29
|
-
"@progress/kendo-angular-buttons": "11.5.0
|
|
30
|
-
"@progress/kendo-angular-progressbar": "11.5.0
|
|
26
|
+
"@progress/kendo-angular-common": "11.5.0",
|
|
27
|
+
"@progress/kendo-angular-l10n": "11.5.0",
|
|
28
|
+
"@progress/kendo-angular-icons": "11.5.0",
|
|
29
|
+
"@progress/kendo-angular-buttons": "11.5.0",
|
|
30
|
+
"@progress/kendo-angular-progressbar": "11.5.0",
|
|
31
31
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"tslib": "^2.3.1",
|
|
35
|
-
"@progress/kendo-angular-schematics": "11.5.0
|
|
35
|
+
"@progress/kendo-angular-schematics": "11.5.0"
|
|
36
36
|
},
|
|
37
37
|
"schematics": "./schematics/collection.json",
|
|
38
38
|
"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': '^1.0.0',
|
|
13
|
-
'@progress/kendo-angular-buttons': '11.5.0
|
|
14
|
-
'@progress/kendo-angular-progressbar': '11.5.0
|
|
15
|
-
'@progress/kendo-angular-popup': '11.5.0
|
|
13
|
+
'@progress/kendo-angular-buttons': '11.5.0',
|
|
14
|
+
'@progress/kendo-angular-progressbar': '11.5.0',
|
|
15
|
+
'@progress/kendo-angular-popup': '11.5.0',
|
|
16
16
|
} });
|
|
17
17
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
18
18
|
}
|