@progress/kendo-angular-upload 16.5.0 → 16.6.0-develop.2

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.
Files changed (51) hide show
  1. package/directives.d.ts +25 -0
  2. package/dropzone-external.directive.d.ts +1 -1
  3. package/dropzone-internal.directive.d.ts +1 -1
  4. package/dropzone.component.d.ts +1 -1
  5. package/esm2020/directives.mjs +44 -0
  6. package/esm2020/dropzone-external.directive.mjs +3 -2
  7. package/esm2020/dropzone-internal.directive.mjs +3 -2
  8. package/esm2020/dropzone.component.mjs +8 -6
  9. package/esm2020/file-select.directive.mjs +3 -2
  10. package/esm2020/fileselect.component.mjs +11 -9
  11. package/esm2020/fileselect.module.mjs +24 -19
  12. package/esm2020/index.mjs +1 -0
  13. package/esm2020/localization/custom-messages.component.mjs +3 -2
  14. package/esm2020/localization/localized-messages.directive.mjs +3 -2
  15. package/esm2020/package-metadata.mjs +2 -2
  16. package/esm2020/rendering/file-list-item-action-button.component.mjs +7 -5
  17. package/esm2020/rendering/file-list-item.mjs +3 -2
  18. package/esm2020/rendering/file-list-multiple-items.component.mjs +9 -7
  19. package/esm2020/rendering/file-list-single-item.component.mjs +9 -7
  20. package/esm2020/rendering/file-list.component.mjs +8 -7
  21. package/esm2020/rendering/upload-action-buttons.component.mjs +3 -2
  22. package/esm2020/rendering/upload-status-total.component.mjs +6 -4
  23. package/esm2020/templates/file-info-template.directive.mjs +3 -2
  24. package/esm2020/templates/file-template.directive.mjs +3 -2
  25. package/esm2020/upload.component.mjs +13 -11
  26. package/esm2020/upload.module.mjs +26 -27
  27. package/esm2020/uploads.module.mjs +26 -9
  28. package/fesm2015/progress-kendo-angular-upload.mjs +1124 -1136
  29. package/fesm2020/progress-kendo-angular-upload.mjs +1122 -1134
  30. package/file-select.directive.d.ts +1 -1
  31. package/fileselect.component.d.ts +1 -1
  32. package/fileselect.module.d.ts +6 -8
  33. package/index.d.ts +1 -0
  34. package/localization/custom-messages.component.d.ts +1 -1
  35. package/localization/localized-messages.directive.d.ts +1 -1
  36. package/package.json +7 -7
  37. package/rendering/file-list-item-action-button.component.d.ts +1 -1
  38. package/rendering/file-list-item.d.ts +1 -1
  39. package/rendering/file-list-multiple-items.component.d.ts +1 -1
  40. package/rendering/file-list-single-item.component.d.ts +1 -1
  41. package/rendering/file-list.component.d.ts +1 -1
  42. package/rendering/upload-action-buttons.component.d.ts +1 -1
  43. package/rendering/upload-status-total.component.d.ts +1 -1
  44. package/schematics/ngAdd/index.js +3 -3
  45. package/templates/file-info-template.directive.d.ts +1 -1
  46. package/templates/file-template.directive.d.ts +1 -1
  47. package/upload.component.d.ts +1 -1
  48. package/upload.module.d.ts +6 -8
  49. package/uploads.module.d.ts +10 -3
  50. package/esm2020/shared.module.mjs +0 -94
  51. package/shared.module.d.ts +0 -38
@@ -35,5 +35,5 @@ export declare class FileSelectDirective {
35
35
  get requiredAttribute(): string;
36
36
  onInputChange(event: any): void;
37
37
  static ɵfac: i0.ɵɵFactoryDeclaration<FileSelectDirective, never>;
38
- static ɵdir: i0.ɵɵDirectiveDeclaration<FileSelectDirective, "[kendoFileSelect]", never, { "dir": "dir"; "disabled": "disabled"; "multiple": "multiple"; "restrictions": "restrictions"; "accept": "accept"; "required": "required"; }, {}, never, never, false, never>;
38
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FileSelectDirective, "[kendoFileSelect]", never, { "dir": "dir"; "disabled": "disabled"; "multiple": "multiple"; "restrictions": "restrictions"; "accept": "accept"; "required": "required"; }, {}, never, never, true, never>;
39
39
  }
@@ -94,5 +94,5 @@ export declare class FileSelectComponent extends UploadFileSelectBase implements
94
94
  private attachEventHandlers;
95
95
  private setDefaultSettings;
96
96
  static ɵfac: i0.ɵɵFactoryDeclaration<FileSelectComponent, never>;
97
- static ɵcmp: i0.ɵɵComponentDeclaration<FileSelectComponent, "kendo-fileselect", ["kendoFileSelect"], { "name": "name"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
97
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileSelectComponent, "kendo-fileselect", ["kendoFileSelect"], { "name": "name"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
98
98
  }
@@ -4,18 +4,16 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from "@angular/core";
6
6
  import * as i1 from "./fileselect.component";
7
- import * as i2 from "./shared.module";
8
- import * as i3 from "@progress/kendo-angular-icons";
9
- import * as i4 from "./templates/file-template.directive";
10
- import * as i5 from "./templates/file-info-template.directive";
11
- import * as i6 from "./localization/custom-messages.component";
12
- import * as i7 from "./dropzone-external.directive";
13
- import * as i8 from "./dropzone.component";
7
+ import * as i2 from "./templates/file-template.directive";
8
+ import * as i3 from "./templates/file-info-template.directive";
9
+ import * as i4 from "./localization/custom-messages.component";
10
+ import * as i5 from "./dropzone-external.directive";
11
+ import * as i6 from "./dropzone.component";
14
12
  /**
15
13
  * Represents the [NgModule](https://angular.io/api/core/NgModule) definition for the FileSelect component.
16
14
  */
17
15
  export declare class FileSelectModule {
18
16
  static ɵfac: i0.ɵɵFactoryDeclaration<FileSelectModule, never>;
19
- static ɵmod: i0.ɵɵNgModuleDeclaration<FileSelectModule, [typeof i1.FileSelectComponent], [typeof i2.SharedModule, typeof i3.IconsModule], [typeof i4.FileTemplateDirective, typeof i5.FileInfoTemplateDirective, typeof i6.CustomMessagesComponent, typeof i7.UploadDropZoneDirective, typeof i8.UploadDropZoneComponent, typeof i1.FileSelectComponent]>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileSelectModule, never, [typeof i1.FileSelectComponent, typeof i2.FileTemplateDirective, typeof i3.FileInfoTemplateDirective, typeof i4.CustomMessagesComponent, typeof i5.UploadDropZoneDirective, typeof i6.UploadDropZoneComponent], [typeof i1.FileSelectComponent, typeof i2.FileTemplateDirective, typeof i3.FileInfoTemplateDirective, typeof i4.CustomMessagesComponent, typeof i5.UploadDropZoneDirective, typeof i6.UploadDropZoneComponent]>;
20
18
  static ɵinj: i0.ɵɵInjectorDeclaration<FileSelectModule>;
21
19
  }
package/index.d.ts CHANGED
@@ -28,3 +28,4 @@ export { validateFiles } from './common/validation-util';
28
28
  export { UPLOAD_VALUE_ACCESSOR } from './upload.component';
29
29
  export * from './events';
30
30
  export * from './types';
31
+ export * from './directives';
@@ -23,5 +23,5 @@ export declare class CustomMessagesComponent extends Messages {
23
23
  protected get override(): boolean;
24
24
  constructor(service: LocalizationService);
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<CustomMessagesComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomMessagesComponent, "kendo-upload-messages, kendo-fileselect-messages, kendo-uploaddropzone-messages", never, {}, {}, never, never, false, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomMessagesComponent, "kendo-upload-messages, kendo-fileselect-messages, kendo-uploaddropzone-messages", never, {}, {}, never, never, true, never>;
27
27
  }
@@ -12,5 +12,5 @@ export declare class LocalizedMessagesDirective extends Messages {
12
12
  protected service: LocalizationService;
13
13
  constructor(service: LocalizationService);
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, " [kendoUploadLocalizedMessages], [kendoFileSelectLocalizedMessages], [kendoUploadDropZoneLocalizedMessages] ", never, {}, {}, never, never, false, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, " [kendoUploadLocalizedMessages], [kendoFileSelectLocalizedMessages], [kendoUploadDropZoneLocalizedMessages] ", never, {}, {}, never, never, true, never>;
16
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-upload",
3
- "version": "16.5.0",
3
+ "version": "16.6.0-develop.2",
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.5.0",
28
- "@progress/kendo-angular-l10n": "16.5.0",
29
- "@progress/kendo-angular-icons": "16.5.0",
30
- "@progress/kendo-angular-buttons": "16.5.0",
31
- "@progress/kendo-angular-progressbar": "16.5.0",
27
+ "@progress/kendo-angular-common": "16.6.0-develop.2",
28
+ "@progress/kendo-angular-l10n": "16.6.0-develop.2",
29
+ "@progress/kendo-angular-icons": "16.6.0-develop.2",
30
+ "@progress/kendo-angular-buttons": "16.6.0-develop.2",
31
+ "@progress/kendo-angular-progressbar": "16.6.0-develop.2",
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.5.0"
36
+ "@progress/kendo-angular-schematics": "16.6.0-develop.2"
37
37
  },
38
38
  "schematics": "./schematics/collection.json",
39
39
  "module": "fesm2015/progress-kendo-angular-upload.mjs",
@@ -36,5 +36,5 @@ export declare class FileListItemActionButtonComponent {
36
36
  get isResumable(): boolean;
37
37
  get isActionButtonVisible(): boolean;
38
38
  static ɵfac: i0.ɵɵFactoryDeclaration<FileListItemActionButtonComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<FileListItemActionButtonComponent, "kendo-upload-file-list-item-action-button", never, { "file": "file"; "disabled": "disabled"; "progress": "progress"; }, {}, never, never, false, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileListItemActionButtonComponent, "kendo-upload-file-list-item-action-button", never, { "file": "file"; "disabled": "disabled"; "progress": "progress"; }, {}, never, never, true, never>;
40
40
  }
@@ -31,5 +31,5 @@ export declare class FileListItemDirective {
31
31
  onBlur(): void;
32
32
  onClick(event: any): void;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<FileListItemDirective, never>;
34
- static ɵdir: i0.ɵɵDirectiveDeclaration<FileListItemDirective, "[kendoUploadFileListItem]", never, { "files": "files"; "index": "index"; }, {}, never, never, false, never>;
34
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FileListItemDirective, "[kendoUploadFileListItem]", never, { "files": "files"; "index": "index"; }, {}, never, never, true, never>;
35
35
  }
@@ -28,5 +28,5 @@ export declare class FileListMultipleItemsComponent extends FileListItemBase imp
28
28
  get isUploadSuccessful(): boolean;
29
29
  get isUploadFailed(): boolean;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<FileListMultipleItemsComponent, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<FileListMultipleItemsComponent, "kendo-upload-file-list-multiple-items", never, { "disabled": "disabled"; "files": "files"; "fileInfoTemplate": "fileInfoTemplate"; }, {}, never, never, false, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileListMultipleItemsComponent, "kendo-upload-file-list-multiple-items", never, { "disabled": "disabled"; "files": "files"; "fileInfoTemplate": "fileInfoTemplate"; }, {}, never, never, true, never>;
32
32
  }
@@ -26,5 +26,5 @@ export declare class FileListSingleItemComponent extends FileListItemBase {
26
26
  get isUploadFailed(): boolean;
27
27
  get isNotYetUploaded(): boolean;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<FileListSingleItemComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<FileListSingleItemComponent, "kendo-upload-file-list-single-item", never, { "disabled": "disabled"; "file": "file"; "fileInfoTemplate": "fileInfoTemplate"; }, {}, never, never, false, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileListSingleItemComponent, "kendo-upload-file-list-single-item", never, { "disabled": "disabled"; "file": "file"; "fileInfoTemplate": "fileInfoTemplate"; }, {}, never, never, true, never>;
30
30
  }
@@ -31,5 +31,5 @@ export declare class FileListComponent implements OnDestroy {
31
31
  hasDelete(item: FileListItemDirective): boolean;
32
32
  ngOnDestroy(): void;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<FileListComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<FileListComponent, "[kendo-upload-file-list]", never, { "disabled": "disabled"; "fileList": "fileList"; "fileTemplate": "fileTemplate"; "fileInfoTemplate": "fileInfoTemplate"; }, {}, never, never, false, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileListComponent, "[kendo-upload-file-list]", never, { "disabled": "disabled"; "fileList": "fileList"; "fileTemplate": "fileTemplate"; "fileInfoTemplate": "fileInfoTemplate"; }, {}, never, never, true, never>;
35
35
  }
@@ -32,5 +32,5 @@ export declare class UploadActionButtonsComponent {
32
32
  clearFiles(): void;
33
33
  textFor(key: string): string;
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadActionButtonsComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadActionButtonsComponent, "kendo-upload-action-buttons", never, { "disabled": "disabled"; "actionsLayout": "actionsLayout"; }, {}, never, never, false, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadActionButtonsComponent, "kendo-upload-action-buttons", never, { "disabled": "disabled"; "actionsLayout": "actionsLayout"; }, {}, never, never, true, never>;
36
36
  }
@@ -26,5 +26,5 @@ export declare class UploadStatusTotalComponent implements DoCheck {
26
26
  get SVGIconClass(): SVGIcon;
27
27
  ngDoCheck(): void;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadStatusTotalComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadStatusTotalComponent, "kendo-upload-status-total", never, { "fileList": "fileList"; }, {}, never, never, false, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadStatusTotalComponent, "kendo-upload-status-total", never, { "fileList": "fileList"; }, {}, never, never, true, never>;
30
30
  }
@@ -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.5.0',
14
- '@progress/kendo-angular-progressbar': '16.5.0',
15
- '@progress/kendo-angular-popup': '16.5.0',
13
+ '@progress/kendo-angular-buttons': '16.6.0-develop.2',
14
+ '@progress/kendo-angular-progressbar': '16.6.0-develop.2',
15
+ '@progress/kendo-angular-popup': '16.6.0-develop.2',
16
16
  } });
17
17
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
18
18
  }
@@ -11,5 +11,5 @@ export declare class FileInfoTemplateDirective {
11
11
  templateRef: TemplateRef<any>;
12
12
  constructor(templateRef: TemplateRef<any>);
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FileInfoTemplateDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<FileInfoTemplateDirective, "[kendoUploadFileInfoTemplate], [kendoFileSelectFileInfoTemplate]", never, {}, {}, never, never, false, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FileInfoTemplateDirective, "[kendoUploadFileInfoTemplate], [kendoFileSelectFileInfoTemplate]", never, {}, {}, never, never, true, never>;
15
15
  }
@@ -11,5 +11,5 @@ export declare class FileTemplateDirective {
11
11
  templateRef: TemplateRef<any>;
12
12
  constructor(templateRef: TemplateRef<any>);
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FileTemplateDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<FileTemplateDirective, "[kendoUploadFileTemplate], [kendoFileSelectFileTemplate]", never, {}, {}, never, never, false, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FileTemplateDirective, "[kendoUploadFileTemplate], [kendoFileSelectFileTemplate]", never, {}, {}, never, never, true, never>;
15
15
  }
@@ -271,5 +271,5 @@ export declare class UploadComponent extends UploadFileSelectBase implements OnI
271
271
  private subscribeFocus;
272
272
  private attachEventHandlers;
273
273
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadComponent, never>;
274
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadComponent, "kendo-upload", ["kendoUpload"], { "autoUpload": "autoUpload"; "batch": "batch"; "withCredentials": "withCredentials"; "saveField": "saveField"; "saveHeaders": "saveHeaders"; "saveMethod": "saveMethod"; "saveUrl": "saveUrl"; "responseType": "responseType"; "removeField": "removeField"; "removeHeaders": "removeHeaders"; "removeMethod": "removeMethod"; "removeUrl": "removeUrl"; "chunkable": "chunkable"; "concurrent": "concurrent"; "showFileList": "showFileList"; "tabIndex": "tabIndex"; "actionsLayout": "actionsLayout"; }, { "cancel": "cancel"; "clear": "clear"; "complete": "complete"; "error": "error"; "pause": "pause"; "resume": "resume"; "success": "success"; "upload": "upload"; "uploadProgress": "uploadProgress"; "valueChange": "valueChange"; }, never, never, false, never>;
274
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadComponent, "kendo-upload", ["kendoUpload"], { "autoUpload": "autoUpload"; "batch": "batch"; "withCredentials": "withCredentials"; "saveField": "saveField"; "saveHeaders": "saveHeaders"; "saveMethod": "saveMethod"; "saveUrl": "saveUrl"; "responseType": "responseType"; "removeField": "removeField"; "removeHeaders": "removeHeaders"; "removeMethod": "removeMethod"; "removeUrl": "removeUrl"; "chunkable": "chunkable"; "concurrent": "concurrent"; "showFileList": "showFileList"; "tabIndex": "tabIndex"; "actionsLayout": "actionsLayout"; }, { "cancel": "cancel"; "clear": "clear"; "complete": "complete"; "error": "error"; "pause": "pause"; "resume": "resume"; "success": "success"; "upload": "upload"; "uploadProgress": "uploadProgress"; "valueChange": "valueChange"; }, never, never, true, never>;
275
275
  }
@@ -6,18 +6,16 @@ import * as i0 from "@angular/core";
6
6
  import * as i1 from "./upload.component";
7
7
  import * as i2 from "./rendering/upload-action-buttons.component";
8
8
  import * as i3 from "./rendering/upload-status-total.component";
9
- import * as i4 from "./shared.module";
10
- import * as i5 from "@progress/kendo-angular-icons";
11
- import * as i6 from "./templates/file-template.directive";
12
- import * as i7 from "./templates/file-info-template.directive";
13
- import * as i8 from "./localization/custom-messages.component";
14
- import * as i9 from "./dropzone-external.directive";
15
- import * as i10 from "./dropzone.component";
9
+ import * as i4 from "./templates/file-template.directive";
10
+ import * as i5 from "./templates/file-info-template.directive";
11
+ import * as i6 from "./localization/custom-messages.component";
12
+ import * as i7 from "./dropzone-external.directive";
13
+ import * as i8 from "./dropzone.component";
16
14
  /**
17
15
  * Represents the [NgModule](https://angular.io/api/core/NgModule) definition for the Upload component.
18
16
  */
19
17
  export declare class UploadModule {
20
18
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadModule, never>;
21
- static ɵmod: i0.ɵɵNgModuleDeclaration<UploadModule, [typeof i1.UploadComponent, typeof i2.UploadActionButtonsComponent, typeof i3.UploadStatusTotalComponent], [typeof i4.SharedModule, typeof i5.IconsModule], [typeof i6.FileTemplateDirective, typeof i7.FileInfoTemplateDirective, typeof i8.CustomMessagesComponent, typeof i9.UploadDropZoneDirective, typeof i10.UploadDropZoneComponent, typeof i1.UploadComponent, typeof i2.UploadActionButtonsComponent, typeof i3.UploadStatusTotalComponent]>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UploadModule, never, [typeof i1.UploadComponent, typeof i2.UploadActionButtonsComponent, typeof i3.UploadStatusTotalComponent, typeof i4.FileTemplateDirective, typeof i5.FileInfoTemplateDirective, typeof i6.CustomMessagesComponent, typeof i7.UploadDropZoneDirective, typeof i8.UploadDropZoneComponent], [typeof i1.UploadComponent, typeof i2.UploadActionButtonsComponent, typeof i3.UploadStatusTotalComponent, typeof i4.FileTemplateDirective, typeof i5.FileInfoTemplateDirective, typeof i6.CustomMessagesComponent, typeof i7.UploadDropZoneDirective, typeof i8.UploadDropZoneComponent]>;
22
20
  static ɵinj: i0.ɵɵInjectorDeclaration<UploadModule>;
23
21
  }
@@ -3,8 +3,15 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from "@angular/core";
6
- import * as i1 from "./fileselect.module";
7
- import * as i2 from "./upload.module";
6
+ import * as i1 from "./fileselect.component";
7
+ import * as i2 from "./templates/file-template.directive";
8
+ import * as i3 from "./templates/file-info-template.directive";
9
+ import * as i4 from "./localization/custom-messages.component";
10
+ import * as i5 from "./dropzone-external.directive";
11
+ import * as i6 from "./dropzone.component";
12
+ import * as i7 from "./upload.component";
13
+ import * as i8 from "./rendering/upload-action-buttons.component";
14
+ import * as i9 from "./rendering/upload-status-total.component";
8
15
  /**
9
16
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
10
17
  * definition for the Uploads components.
@@ -32,6 +39,6 @@ import * as i2 from "./upload.module";
32
39
  */
33
40
  export declare class UploadsModule {
34
41
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadsModule, never>;
35
- static ɵmod: i0.ɵɵNgModuleDeclaration<UploadsModule, never, never, [typeof i1.FileSelectModule, typeof i2.UploadModule]>;
42
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UploadsModule, never, [typeof i1.FileSelectComponent, typeof i2.FileTemplateDirective, typeof i3.FileInfoTemplateDirective, typeof i4.CustomMessagesComponent, typeof i5.UploadDropZoneDirective, typeof i6.UploadDropZoneComponent, typeof i7.UploadComponent, typeof i8.UploadActionButtonsComponent, typeof i9.UploadStatusTotalComponent, typeof i2.FileTemplateDirective, typeof i3.FileInfoTemplateDirective, typeof i4.CustomMessagesComponent, typeof i5.UploadDropZoneDirective, typeof i6.UploadDropZoneComponent], [typeof i1.FileSelectComponent, typeof i2.FileTemplateDirective, typeof i3.FileInfoTemplateDirective, typeof i4.CustomMessagesComponent, typeof i5.UploadDropZoneDirective, typeof i6.UploadDropZoneComponent, typeof i7.UploadComponent, typeof i8.UploadActionButtonsComponent, typeof i9.UploadStatusTotalComponent, typeof i2.FileTemplateDirective, typeof i3.FileInfoTemplateDirective, typeof i4.CustomMessagesComponent, typeof i5.UploadDropZoneDirective, typeof i6.UploadDropZoneComponent]>;
36
43
  static ɵinj: i0.ɵɵInjectorDeclaration<UploadsModule>;
37
44
  }
@@ -1,94 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { FileInfoTemplateDirective } from './templates/file-info-template.directive';
6
- import { NgModule } from '@angular/core';
7
- import { CommonModule } from '@angular/common';
8
- import { CustomMessagesComponent } from './localization/custom-messages.component';
9
- import { DropZoneInternalDirective } from './dropzone-internal.directive';
10
- import { FileListComponent } from './rendering/file-list.component';
11
- import { FileListItemDirective } from './rendering/file-list-item';
12
- import { FileListItemActionButtonComponent } from './rendering/file-list-item-action-button.component';
13
- import { FileListMultipleItemsComponent } from './rendering/file-list-multiple-items.component';
14
- import { FileListSingleItemComponent } from './rendering/file-list-single-item.component';
15
- import { FileSelectDirective } from './file-select.directive';
16
- import { FileTemplateDirective } from './templates/file-template.directive';
17
- import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
18
- import { UploadDropZoneDirective } from './dropzone-external.directive';
19
- import { UploadDropZoneComponent } from './dropzone.component';
20
- import { ButtonsModule } from '@progress/kendo-angular-buttons';
21
- import { ProgressBarModule } from '@progress/kendo-angular-progressbar';
22
- import { IconsModule } from '@progress/kendo-angular-icons';
23
- import * as i0 from "@angular/core";
24
- /**
25
- * @hidden
26
- */
27
- export const SHARED_DECLARATIONS = [
28
- DropZoneInternalDirective,
29
- FileListComponent,
30
- FileListItemDirective,
31
- FileListItemActionButtonComponent,
32
- FileListMultipleItemsComponent,
33
- FileListSingleItemComponent,
34
- FileSelectDirective,
35
- LocalizedMessagesDirective
36
- ];
37
- /**
38
- * @hidden
39
- */
40
- export const PUBLIC_DIRECTIVES = [
41
- FileTemplateDirective,
42
- FileInfoTemplateDirective,
43
- CustomMessagesComponent,
44
- UploadDropZoneDirective,
45
- UploadDropZoneComponent
46
- ];
47
- /**
48
- * @hidden
49
- */
50
- export class SharedModule {
51
- }
52
- SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
53
- SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, declarations: [FileTemplateDirective,
54
- FileInfoTemplateDirective,
55
- CustomMessagesComponent,
56
- UploadDropZoneDirective,
57
- UploadDropZoneComponent, DropZoneInternalDirective,
58
- FileListComponent,
59
- FileListItemDirective,
60
- FileListItemActionButtonComponent,
61
- FileListMultipleItemsComponent,
62
- FileListSingleItemComponent,
63
- FileSelectDirective,
64
- LocalizedMessagesDirective], imports: [CommonModule, ButtonsModule, ProgressBarModule, IconsModule], exports: [FileTemplateDirective,
65
- FileInfoTemplateDirective,
66
- CustomMessagesComponent,
67
- UploadDropZoneDirective,
68
- UploadDropZoneComponent, DropZoneInternalDirective,
69
- FileListComponent,
70
- FileListItemDirective,
71
- FileListItemActionButtonComponent,
72
- FileListMultipleItemsComponent,
73
- FileListSingleItemComponent,
74
- FileSelectDirective,
75
- LocalizedMessagesDirective, CommonModule,
76
- ButtonsModule] });
77
- SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [CommonModule, ButtonsModule, ProgressBarModule, IconsModule, CommonModule,
78
- ButtonsModule] });
79
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, decorators: [{
80
- type: NgModule,
81
- args: [{
82
- declarations: [
83
- PUBLIC_DIRECTIVES,
84
- SHARED_DECLARATIONS
85
- ],
86
- exports: [
87
- PUBLIC_DIRECTIVES,
88
- SHARED_DECLARATIONS,
89
- CommonModule,
90
- ButtonsModule
91
- ],
92
- imports: [CommonModule, ButtonsModule, ProgressBarModule, IconsModule]
93
- }]
94
- }] });
@@ -1,38 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./templates/file-template.directive";
7
- import * as i2 from "./templates/file-info-template.directive";
8
- import * as i3 from "./localization/custom-messages.component";
9
- import * as i4 from "./dropzone-external.directive";
10
- import * as i5 from "./dropzone.component";
11
- import * as i6 from "./dropzone-internal.directive";
12
- import * as i7 from "./rendering/file-list.component";
13
- import * as i8 from "./rendering/file-list-item";
14
- import * as i9 from "./rendering/file-list-item-action-button.component";
15
- import * as i10 from "./rendering/file-list-multiple-items.component";
16
- import * as i11 from "./rendering/file-list-single-item.component";
17
- import * as i12 from "./file-select.directive";
18
- import * as i13 from "./localization/localized-messages.directive";
19
- import * as i14 from "@angular/common";
20
- import * as i15 from "@progress/kendo-angular-buttons";
21
- import * as i16 from "@progress/kendo-angular-progressbar";
22
- import * as i17 from "@progress/kendo-angular-icons";
23
- /**
24
- * @hidden
25
- */
26
- export declare const SHARED_DECLARATIONS: any[];
27
- /**
28
- * @hidden
29
- */
30
- export declare const PUBLIC_DIRECTIVES: any[];
31
- /**
32
- * @hidden
33
- */
34
- export declare class SharedModule {
35
- static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
36
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.FileTemplateDirective, typeof i2.FileInfoTemplateDirective, typeof i3.CustomMessagesComponent, typeof i4.UploadDropZoneDirective, typeof i5.UploadDropZoneComponent, typeof i6.DropZoneInternalDirective, typeof i7.FileListComponent, typeof i8.FileListItemDirective, typeof i9.FileListItemActionButtonComponent, typeof i10.FileListMultipleItemsComponent, typeof i11.FileListSingleItemComponent, typeof i12.FileSelectDirective, typeof i13.LocalizedMessagesDirective], [typeof i14.CommonModule, typeof i15.ButtonsModule, typeof i16.ProgressBarModule, typeof i17.IconsModule], [typeof i1.FileTemplateDirective, typeof i2.FileInfoTemplateDirective, typeof i3.CustomMessagesComponent, typeof i4.UploadDropZoneDirective, typeof i5.UploadDropZoneComponent, typeof i6.DropZoneInternalDirective, typeof i7.FileListComponent, typeof i8.FileListItemDirective, typeof i9.FileListItemActionButtonComponent, typeof i10.FileListMultipleItemsComponent, typeof i11.FileListSingleItemComponent, typeof i12.FileSelectDirective, typeof i13.LocalizedMessagesDirective, typeof i14.CommonModule, typeof i15.ButtonsModule]>;
37
- static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
38
- }