@progress/kendo-angular-upload 8.0.2-dev.202203071504 → 9.0.0-dev.202204131914
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/bundles/kendo-angular-upload.umd.js +5 -0
- package/{dist/es2015/common → common}/action-buttons-layout.d.ts +0 -0
- package/{dist/es2015/common → common}/util.d.ts +0 -0
- package/{dist/es2015/common → common}/validation-util.d.ts +0 -0
- package/{dist/es2015/dropzone-base.d.ts → dropzone-base.d.ts} +4 -1
- package/{dist/es2015/dropzone-external.directive.d.ts → dropzone-external.directive.d.ts} +4 -1
- package/{dist/es2015/dropzone-internal.directive.d.ts → dropzone-internal.directive.d.ts} +3 -0
- package/{dist/es2015/dropzone.component.d.ts → dropzone.component.d.ts} +5 -2
- package/{dist/es2015/dropzone.service.d.ts → dropzone.service.d.ts} +3 -0
- package/{dist/es2015 → esm2015}/common/action-buttons-layout.js +1 -0
- package/{dist/es2015 → esm2015}/common/util.js +1 -7
- package/{dist/es2015 → esm2015}/common/validation-util.js +0 -4
- package/{dist/es2015 → esm2015}/dropzone-base.js +18 -16
- package/{dist/es2015 → esm2015}/dropzone-external.directive.js +29 -35
- package/{dist/es2015 → esm2015}/dropzone-internal.directive.js +25 -37
- package/esm2015/dropzone.component.js +112 -0
- package/{dist/es2015 → esm2015}/dropzone.service.js +8 -7
- package/{dist/es2015 → esm2015}/events/cancel-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/clear-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/error-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/pause-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/preventable-event.js +0 -0
- package/{dist/es2015 → esm2015}/events/remove-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/resume-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/select-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/success-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/upload-event.js +1 -0
- package/{dist/es2015 → esm2015}/events/upload-progress-event.js +1 -0
- package/{dist/es → esm2015}/events.js +0 -0
- package/esm2015/file-select.directive.js +100 -0
- package/{dist/es2015 → esm2015}/fileselect.component.js +160 -132
- package/esm2015/fileselect.module.js +35 -0
- package/{dist/es/types/chunk-info.js → esm2015/kendo-angular-upload.js} +4 -0
- package/esm2015/localization/custom-messages.component.js +50 -0
- package/esm2015/localization/localized-messages.directive.js +40 -0
- package/esm2015/localization/messages.js +59 -0
- package/{dist/es → esm2015}/main.js +0 -0
- package/{dist/es2015 → esm2015}/navigation.service.js +9 -9
- package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
- package/{dist/es2015 → esm2015}/rendering/file-list-item-action-button.component.js +70 -28
- package/{dist/es2015 → esm2015}/rendering/file-list-item-base.js +9 -0
- package/esm2015/rendering/file-list-item.js +107 -0
- package/esm2015/rendering/file-list-multiple-items.component.js +172 -0
- package/esm2015/rendering/file-list-single-item.component.js +154 -0
- package/esm2015/rendering/file-list.component.js +145 -0
- package/esm2015/rendering/upload-action-buttons.component.js +136 -0
- package/esm2015/rendering/upload-status-total.component.js +60 -0
- package/{dist/es2015 → esm2015}/shared.module.js +45 -18
- package/esm2015/templates/file-info-template.directive.js +22 -0
- package/esm2015/templates/file-template.directive.js +22 -0
- package/esm2015/templates/template-context.directive.js +34 -0
- package/{dist/es2015 → esm2015}/types/async-settings.js +1 -0
- package/{dist/es2015 → esm2015}/types/chunk-info.js +1 -0
- package/{dist/es2015 → esm2015}/types/chunk-map.js +0 -0
- package/{dist/es → esm2015}/types/chunk-metadata.js +1 -0
- package/{dist/es → esm2015}/types/chunk-settings.js +1 -0
- package/{dist/es → esm2015}/types/direction.js +1 -0
- package/{dist/es2015 → esm2015}/types/file-groups.js +3 -5
- package/{dist/es → esm2015}/types/file-info.js +1 -0
- package/{dist/es2015 → esm2015}/types/file-map.js +0 -0
- package/{dist/es → esm2015}/types/file-restrictions.js +1 -0
- package/{dist/es → esm2015}/types/file-state.js +0 -0
- package/{dist/es → esm2015}/types/operation-type.js +1 -0
- package/{dist/es → esm2015}/types.js +0 -0
- package/{dist/es2015 → esm2015}/upload.component.js +262 -243
- package/esm2015/upload.module.js +43 -0
- package/{dist/es2015 → esm2015}/upload.service.js +10 -9
- package/{dist/es2015 → esm2015}/uploads.module.js +17 -12
- package/{dist/es2015/events → events}/cancel-event.d.ts +4 -0
- package/{dist/es2015/events → events}/clear-event.d.ts +1 -0
- package/{dist/es2015/events → events}/error-event.d.ts +10 -0
- package/{dist/es2015/events → events}/pause-event.d.ts +4 -0
- package/{dist/es2015/events → events}/preventable-event.d.ts +0 -0
- package/{dist/es2015/events → events}/remove-event.d.ts +9 -2
- package/{dist/es2015/events → events}/resume-event.d.ts +4 -0
- package/{dist/es2015/events → events}/select-event.d.ts +4 -0
- package/{dist/es2015/events → events}/success-event.d.ts +10 -0
- package/{dist/es2015/events → events}/upload-event.d.ts +9 -2
- package/{dist/es2015/events → events}/upload-progress-event.d.ts +7 -0
- package/{dist/es2015/events.d.ts → events.d.ts} +0 -0
- package/{dist/fesm2015/index.js → fesm2015/kendo-angular-upload.js} +2192 -2010
- package/{dist/es2015/file-select.directive.d.ts → file-select.directive.d.ts} +7 -4
- package/{dist/es2015/fileselect.component.d.ts → fileselect.component.d.ts} +14 -6
- package/fileselect.module.d.ts +20 -0
- package/{dist/es/common/action-buttons-layout.js → kendo-angular-upload.d.ts} +5 -0
- package/{dist/es2015/localization → localization}/custom-messages.component.d.ts +4 -1
- package/{dist/es2015/localization → localization}/localized-messages.directive.d.ts +3 -0
- package/{dist/es2015/localization → localization}/messages.d.ts +3 -0
- package/{dist/es2015/main.d.ts → main.d.ts} +0 -0
- package/{dist/es2015/navigation.service.d.ts → navigation.service.d.ts} +7 -3
- package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
- package/package.json +36 -104
- package/{dist/es2015/rendering → rendering}/file-list-item-action-button.component.d.ts +11 -8
- package/{dist/es2015/rendering → rendering}/file-list-item-base.d.ts +3 -0
- package/{dist/es2015/rendering → rendering}/file-list-item.d.ts +10 -7
- package/{dist/es2015/rendering → rendering}/file-list-multiple-items.component.d.ts +7 -4
- package/{dist/es2015/rendering → rendering}/file-list-single-item.component.d.ts +9 -6
- package/{dist/es2015/rendering → rendering}/file-list.component.d.ts +3 -0
- package/{dist/es2015/rendering → rendering}/upload-action-buttons.component.d.ts +7 -4
- package/{dist/es2015/rendering → rendering}/upload-status-total.component.d.ts +3 -0
- package/schematics/ngAdd/index.js +5 -2
- package/schematics/ngAdd/index.js.map +1 -1
- package/shared.module.d.ts +36 -0
- package/{dist/es2015/templates → templates}/file-info-template.directive.d.ts +3 -0
- package/{dist/es2015/templates → templates}/file-template.directive.d.ts +3 -0
- package/{dist/es2015/templates → templates}/template-context.directive.d.ts +4 -1
- package/{dist/es2015/types → types}/async-settings.d.ts +0 -0
- package/{dist/es2015/types → types}/chunk-info.d.ts +0 -0
- package/{dist/es2015/types → types}/chunk-map.d.ts +0 -0
- package/{dist/es2015/types → types}/chunk-metadata.d.ts +0 -0
- package/{dist/es2015/types → types}/chunk-settings.d.ts +0 -0
- package/{dist/es2015/types → types}/direction.d.ts +0 -0
- package/{dist/es2015/types → types}/file-groups.d.ts +0 -0
- package/{dist/es2015/types → types}/file-info.d.ts +0 -0
- package/{dist/es2015/types → types}/file-map.d.ts +5 -5
- package/{dist/es2015/types → types}/file-restrictions.d.ts +0 -0
- package/{dist/es2015/types → types}/file-state.d.ts +0 -0
- package/{dist/es2015/types → types}/operation-type.d.ts +0 -0
- package/{dist/es2015/types.d.ts → types.d.ts} +0 -0
- package/{dist/es2015/upload.component.d.ts → upload.component.d.ts} +42 -21
- package/upload.module.d.ts +22 -0
- package/{dist/es2015/upload.service.d.ts → upload.service.d.ts} +4 -1
- package/{dist/es2015/uploads.module.d.ts → uploads.module.d.ts} +6 -0
- package/dist/cdn/js/kendo-angular-upload.js +0 -20
- package/dist/cdn/main.js +0 -5
- package/dist/es/common/util.js +0 -234
- package/dist/es/common/validation-util.js +0 -64
- package/dist/es/dropzone-base.js +0 -66
- package/dist/es/dropzone-external.directive.js +0 -98
- package/dist/es/dropzone-internal.directive.js +0 -110
- package/dist/es/dropzone.component.js +0 -99
- package/dist/es/dropzone.service.js +0 -33
- package/dist/es/events/cancel-event.js +0 -41
- package/dist/es/events/clear-event.js +0 -43
- package/dist/es/events/error-event.js +0 -45
- package/dist/es/events/pause-event.js +0 -42
- package/dist/es/events/preventable-event.js +0 -29
- package/dist/es/events/remove-event.js +0 -47
- package/dist/es/events/resume-event.js +0 -42
- package/dist/es/events/select-event.js +0 -45
- package/dist/es/events/success-event.js +0 -49
- package/dist/es/events/upload-event.js +0 -47
- package/dist/es/events/upload-progress-event.js +0 -42
- package/dist/es/file-select.directive.js +0 -141
- package/dist/es/fileselect.component.js +0 -484
- package/dist/es/fileselect.module.js +0 -30
- package/dist/es/index.js +0 -21
- package/dist/es/localization/custom-messages.component.js +0 -53
- package/dist/es/localization/localized-messages.directive.js +0 -35
- package/dist/es/localization/messages.js +0 -102
- package/dist/es/navigation.service.js +0 -166
- package/dist/es/package-metadata.js +0 -15
- package/dist/es/rendering/file-list-item-action-button.component.js +0 -169
- package/dist/es/rendering/file-list-item-base.js +0 -41
- package/dist/es/rendering/file-list-item.js +0 -165
- package/dist/es/rendering/file-list-multiple-items.component.js +0 -107
- package/dist/es/rendering/file-list-single-item.component.js +0 -112
- package/dist/es/rendering/file-list.component.js +0 -98
- package/dist/es/rendering/upload-action-buttons.component.js +0 -149
- package/dist/es/rendering/upload-status-total.component.js +0 -42
- package/dist/es/shared.module.js +0 -68
- package/dist/es/templates/file-info-template.directive.js +0 -22
- package/dist/es/templates/file-template.directive.js +0 -22
- package/dist/es/templates/template-context.directive.js +0 -40
- package/dist/es/types/async-settings.js +0 -4
- package/dist/es/types/chunk-map.js +0 -36
- package/dist/es/types/file-groups.js +0 -45
- package/dist/es/types/file-map.js +0 -170
- package/dist/es/upload.component.js +0 -967
- package/dist/es/upload.module.js +0 -34
- package/dist/es/upload.service.js +0 -448
- package/dist/es/uploads.module.js +0 -47
- package/dist/es2015/dropzone.component.js +0 -100
- package/dist/es2015/events.js +0 -14
- package/dist/es2015/file-select.directive.js +0 -123
- package/dist/es2015/fileselect.module.d.ts +0 -9
- package/dist/es2015/fileselect.module.js +0 -27
- package/dist/es2015/index.d.ts +0 -21
- package/dist/es2015/index.js +0 -21
- package/dist/es2015/index.metadata.json +0 -1
- package/dist/es2015/localization/custom-messages.component.js +0 -45
- package/dist/es2015/localization/localized-messages.directive.js +0 -35
- package/dist/es2015/localization/messages.js +0 -96
- package/dist/es2015/main.js +0 -24
- package/dist/es2015/rendering/file-list-item.js +0 -136
- package/dist/es2015/rendering/file-list-multiple-items.component.js +0 -128
- package/dist/es2015/rendering/file-list-single-item.component.js +0 -117
- package/dist/es2015/rendering/file-list.component.js +0 -123
- package/dist/es2015/rendering/upload-action-buttons.component.js +0 -141
- package/dist/es2015/rendering/upload-status-total.component.js +0 -51
- package/dist/es2015/shared.module.d.ts +0 -17
- package/dist/es2015/templates/file-info-template.directive.js +0 -21
- package/dist/es2015/templates/file-template.directive.js +0 -21
- package/dist/es2015/templates/template-context.directive.js +0 -35
- package/dist/es2015/types/chunk-metadata.js +0 -4
- package/dist/es2015/types/chunk-settings.js +0 -4
- package/dist/es2015/types/direction.js +0 -4
- package/dist/es2015/types/file-info.js +0 -4
- package/dist/es2015/types/file-restrictions.js +0 -4
- package/dist/es2015/types/file-state.js +0 -34
- package/dist/es2015/types/operation-type.js +0 -4
- package/dist/es2015/types.js +0 -5
- package/dist/es2015/upload.module.d.ts +0 -9
- package/dist/es2015/upload.module.js +0 -31
- package/dist/fesm5/index.js +0 -4653
- package/dist/npm/common/action-buttons-layout.js +0 -6
- package/dist/npm/common/util.js +0 -240
- package/dist/npm/common/validation-util.js +0 -68
- package/dist/npm/dropzone-base.js +0 -68
- package/dist/npm/dropzone-external.directive.js +0 -100
- package/dist/npm/dropzone-internal.directive.js +0 -112
- package/dist/npm/dropzone.component.js +0 -101
- package/dist/npm/dropzone.service.js +0 -35
- package/dist/npm/events/cancel-event.js +0 -43
- package/dist/npm/events/clear-event.js +0 -45
- package/dist/npm/events/error-event.js +0 -47
- package/dist/npm/events/pause-event.js +0 -44
- package/dist/npm/events/preventable-event.js +0 -31
- package/dist/npm/events/remove-event.js +0 -49
- package/dist/npm/events/resume-event.js +0 -44
- package/dist/npm/events/select-event.js +0 -47
- package/dist/npm/events/success-event.js +0 -51
- package/dist/npm/events/upload-event.js +0 -49
- package/dist/npm/events/upload-progress-event.js +0 -44
- package/dist/npm/events.js +0 -26
- package/dist/npm/file-select.directive.js +0 -143
- package/dist/npm/fileselect.component.js +0 -486
- package/dist/npm/fileselect.module.js +0 -32
- package/dist/npm/index.js +0 -39
- package/dist/npm/localization/custom-messages.component.js +0 -55
- package/dist/npm/localization/localized-messages.directive.js +0 -37
- package/dist/npm/localization/messages.js +0 -104
- package/dist/npm/main.js +0 -45
- package/dist/npm/navigation.service.js +0 -168
- package/dist/npm/package-metadata.js +0 -17
- package/dist/npm/rendering/file-list-item-action-button.component.js +0 -171
- package/dist/npm/rendering/file-list-item-base.js +0 -43
- package/dist/npm/rendering/file-list-item.js +0 -167
- package/dist/npm/rendering/file-list-multiple-items.component.js +0 -109
- package/dist/npm/rendering/file-list-single-item.component.js +0 -114
- package/dist/npm/rendering/file-list.component.js +0 -100
- package/dist/npm/rendering/upload-action-buttons.component.js +0 -151
- package/dist/npm/rendering/upload-status-total.component.js +0 -44
- package/dist/npm/shared.module.js +0 -70
- package/dist/npm/templates/file-info-template.directive.js +0 -24
- package/dist/npm/templates/file-template.directive.js +0 -24
- package/dist/npm/templates/template-context.directive.js +0 -42
- package/dist/npm/types/async-settings.js +0 -6
- package/dist/npm/types/chunk-info.js +0 -6
- package/dist/npm/types/chunk-map.js +0 -38
- package/dist/npm/types/chunk-metadata.js +0 -6
- package/dist/npm/types/chunk-settings.js +0 -6
- package/dist/npm/types/direction.js +0 -6
- package/dist/npm/types/file-groups.js +0 -47
- package/dist/npm/types/file-info.js +0 -6
- package/dist/npm/types/file-map.js +0 -172
- package/dist/npm/types/file-restrictions.js +0 -6
- package/dist/npm/types/file-state.js +0 -36
- package/dist/npm/types/operation-type.js +0 -6
- package/dist/npm/types.js +0 -8
- package/dist/npm/upload.component.js +0 -969
- package/dist/npm/upload.module.js +0 -36
- package/dist/npm/upload.service.js +0 -450
- package/dist/npm/uploads.module.js +0 -49
- package/dist/systemjs/kendo-angular-upload.js +0 -5
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 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 tslib_1 from "tslib";
|
|
6
|
-
import { Component, Input, HostBinding, ViewChild, ElementRef } from '@angular/core';
|
|
7
|
-
import { UploadService } from '../upload.service';
|
|
8
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
-
import { NavigationService } from '../navigation.service';
|
|
10
|
-
/**
|
|
11
|
-
* @hidden
|
|
12
|
-
*/
|
|
13
|
-
let UploadActionButtonsComponent = class UploadActionButtonsComponent {
|
|
14
|
-
constructor(uploadService, localization, navigation) {
|
|
15
|
-
this.uploadService = uploadService;
|
|
16
|
-
this.localization = localization;
|
|
17
|
-
this.navigation = navigation;
|
|
18
|
-
this.hostDefaultClass = true;
|
|
19
|
-
this.onAction();
|
|
20
|
-
this.onFocus();
|
|
21
|
-
}
|
|
22
|
-
get actionButtonsEndClassName() {
|
|
23
|
-
return this.actionsLayout === 'end';
|
|
24
|
-
}
|
|
25
|
-
get actionButtonsStretchedClassName() {
|
|
26
|
-
return this.actionsLayout === 'stretched';
|
|
27
|
-
}
|
|
28
|
-
get actionButtonsStartClassName() {
|
|
29
|
-
return this.actionsLayout === 'start';
|
|
30
|
-
}
|
|
31
|
-
get actionButtonsCenterClassName() {
|
|
32
|
-
return this.actionsLayout === 'center';
|
|
33
|
-
}
|
|
34
|
-
onAction() {
|
|
35
|
-
this.actionSubscription = this.navigation.onActionButtonAction.subscribe((button) => {
|
|
36
|
-
if (button === "clear") {
|
|
37
|
-
this.clearFiles();
|
|
38
|
-
}
|
|
39
|
-
else {
|
|
40
|
-
this.performUpload();
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
onFocus() {
|
|
45
|
-
this.focusSubscription = this.navigation.onActionButtonFocus.subscribe((button) => {
|
|
46
|
-
this.focusButton(button);
|
|
47
|
-
});
|
|
48
|
-
}
|
|
49
|
-
focusButton(button) {
|
|
50
|
-
const el = (button === "clear") ? this.clearButton : this.uploadButton;
|
|
51
|
-
el.nativeElement.focus();
|
|
52
|
-
}
|
|
53
|
-
ngOnDestroy() {
|
|
54
|
-
this.actionSubscription.unsubscribe();
|
|
55
|
-
this.focusSubscription.unsubscribe();
|
|
56
|
-
}
|
|
57
|
-
onUploadButtonClick(event) {
|
|
58
|
-
event.stopImmediatePropagation();
|
|
59
|
-
this.performUpload();
|
|
60
|
-
}
|
|
61
|
-
performUpload() {
|
|
62
|
-
if (!this.disabled) {
|
|
63
|
-
this.uploadService.uploadFiles();
|
|
64
|
-
this.navigation.focusSelectButton();
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
onClearButtonClick(event) {
|
|
68
|
-
event.stopImmediatePropagation();
|
|
69
|
-
this.clearFiles();
|
|
70
|
-
}
|
|
71
|
-
clearFiles() {
|
|
72
|
-
if (!this.disabled) {
|
|
73
|
-
this.uploadService.clearFiles();
|
|
74
|
-
this.navigation.focusSelectButton();
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
textFor(key) {
|
|
78
|
-
return this.localization.get(key);
|
|
79
|
-
}
|
|
80
|
-
};
|
|
81
|
-
tslib_1.__decorate([
|
|
82
|
-
Input(),
|
|
83
|
-
tslib_1.__metadata("design:type", Boolean)
|
|
84
|
-
], UploadActionButtonsComponent.prototype, "disabled", void 0);
|
|
85
|
-
tslib_1.__decorate([
|
|
86
|
-
Input(),
|
|
87
|
-
tslib_1.__metadata("design:type", String)
|
|
88
|
-
], UploadActionButtonsComponent.prototype, "actionsLayout", void 0);
|
|
89
|
-
tslib_1.__decorate([
|
|
90
|
-
ViewChild('clearButton', { static: true }),
|
|
91
|
-
tslib_1.__metadata("design:type", ElementRef)
|
|
92
|
-
], UploadActionButtonsComponent.prototype, "clearButton", void 0);
|
|
93
|
-
tslib_1.__decorate([
|
|
94
|
-
ViewChild('uploadButton', { static: true }),
|
|
95
|
-
tslib_1.__metadata("design:type", ElementRef)
|
|
96
|
-
], UploadActionButtonsComponent.prototype, "uploadButton", void 0);
|
|
97
|
-
tslib_1.__decorate([
|
|
98
|
-
HostBinding('class.k-actions'),
|
|
99
|
-
tslib_1.__metadata("design:type", Boolean)
|
|
100
|
-
], UploadActionButtonsComponent.prototype, "hostDefaultClass", void 0);
|
|
101
|
-
tslib_1.__decorate([
|
|
102
|
-
HostBinding('class.k-actions-end'),
|
|
103
|
-
tslib_1.__metadata("design:type", Boolean),
|
|
104
|
-
tslib_1.__metadata("design:paramtypes", [])
|
|
105
|
-
], UploadActionButtonsComponent.prototype, "actionButtonsEndClassName", null);
|
|
106
|
-
tslib_1.__decorate([
|
|
107
|
-
HostBinding('class.k-actions-stretched'),
|
|
108
|
-
tslib_1.__metadata("design:type", Boolean),
|
|
109
|
-
tslib_1.__metadata("design:paramtypes", [])
|
|
110
|
-
], UploadActionButtonsComponent.prototype, "actionButtonsStretchedClassName", null);
|
|
111
|
-
tslib_1.__decorate([
|
|
112
|
-
HostBinding('class.k-actions-start'),
|
|
113
|
-
tslib_1.__metadata("design:type", Boolean),
|
|
114
|
-
tslib_1.__metadata("design:paramtypes", [])
|
|
115
|
-
], UploadActionButtonsComponent.prototype, "actionButtonsStartClassName", null);
|
|
116
|
-
tslib_1.__decorate([
|
|
117
|
-
HostBinding('class.k-actions-center'),
|
|
118
|
-
tslib_1.__metadata("design:type", Boolean),
|
|
119
|
-
tslib_1.__metadata("design:paramtypes", [])
|
|
120
|
-
], UploadActionButtonsComponent.prototype, "actionButtonsCenterClassName", null);
|
|
121
|
-
UploadActionButtonsComponent = tslib_1.__decorate([
|
|
122
|
-
Component({
|
|
123
|
-
selector: 'kendo-upload-action-buttons',
|
|
124
|
-
template: `
|
|
125
|
-
<button #clearButton type="button" class="k-button k-button-md k-rounded-md k-button-solid k-button-solid-base k-clear-selected"
|
|
126
|
-
[attr.tabIndex]="-1"
|
|
127
|
-
(click)="onClearButtonClick($event)">
|
|
128
|
-
{{textFor('clearSelectedFiles')}}
|
|
129
|
-
</button>
|
|
130
|
-
<button #uploadButton type="button" class="k-button k-button-md k-rounded-md k-button-solid k-button-solid-primary k-upload-selected"
|
|
131
|
-
[attr.tabIndex]="-1"
|
|
132
|
-
(click)="onUploadButtonClick($event)">
|
|
133
|
-
{{textFor('uploadSelectedFiles')}}
|
|
134
|
-
</button>
|
|
135
|
-
`
|
|
136
|
-
}),
|
|
137
|
-
tslib_1.__metadata("design:paramtypes", [UploadService,
|
|
138
|
-
LocalizationService,
|
|
139
|
-
NavigationService])
|
|
140
|
-
], UploadActionButtonsComponent);
|
|
141
|
-
export { UploadActionButtonsComponent };
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 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 tslib_1 from "tslib";
|
|
6
|
-
import { Component, Input } from '@angular/core';
|
|
7
|
-
import { FileMap } from '../types/file-map';
|
|
8
|
-
import { FileState } from '../types';
|
|
9
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
10
|
-
/**
|
|
11
|
-
* @hidden
|
|
12
|
-
*/
|
|
13
|
-
let UploadStatusTotalComponent = class UploadStatusTotalComponent {
|
|
14
|
-
constructor(localization) {
|
|
15
|
-
this.localization = localization;
|
|
16
|
-
}
|
|
17
|
-
ngDoCheck() {
|
|
18
|
-
this.isPaused = this.fileList.hasFileWithState([FileState.Paused]);
|
|
19
|
-
this.isFailed = this.fileList.hasFileWithState([FileState.Failed]);
|
|
20
|
-
this.isUploading = this.fileList.hasFileWithState([FileState.Uploading]);
|
|
21
|
-
if (this.isPaused && !this.isUploading) {
|
|
22
|
-
this.statusText = this.localization.get('headerStatusPaused');
|
|
23
|
-
}
|
|
24
|
-
else {
|
|
25
|
-
this.statusText = this.isUploading ? this.localization.get('headerStatusUploading')
|
|
26
|
-
: this.localization.get('headerStatusUploaded');
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
};
|
|
30
|
-
tslib_1.__decorate([
|
|
31
|
-
Input(),
|
|
32
|
-
tslib_1.__metadata("design:type", FileMap)
|
|
33
|
-
], UploadStatusTotalComponent.prototype, "fileList", void 0);
|
|
34
|
-
UploadStatusTotalComponent = tslib_1.__decorate([
|
|
35
|
-
Component({
|
|
36
|
-
selector: 'kendo-upload-status-total',
|
|
37
|
-
template: `
|
|
38
|
-
<span class="k-icon"
|
|
39
|
-
[ngClass]="{
|
|
40
|
-
'k-i-checkmark': !this.isUploading && !this.isFailed,
|
|
41
|
-
'k-i-exception': !this.isUploading && this.isFailed,
|
|
42
|
-
'k-i-upload': this.isUploading,
|
|
43
|
-
'k-i-pause-sm': this.isPaused
|
|
44
|
-
}">
|
|
45
|
-
</span>
|
|
46
|
-
{{statusText}}
|
|
47
|
-
`
|
|
48
|
-
}),
|
|
49
|
-
tslib_1.__metadata("design:paramtypes", [LocalizationService])
|
|
50
|
-
], UploadStatusTotalComponent);
|
|
51
|
-
export { UploadStatusTotalComponent };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
/**
|
|
6
|
-
* @hidden
|
|
7
|
-
*/
|
|
8
|
-
export declare const SHARED_DECLARATIONS: any[];
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*/
|
|
12
|
-
export declare const PUBLIC_DIRECTIVES: any[];
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*/
|
|
16
|
-
export declare class SharedModule {
|
|
17
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 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 tslib_1 from "tslib";
|
|
6
|
-
import { Directive, TemplateRef } from '@angular/core';
|
|
7
|
-
/**
|
|
8
|
-
* 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)).
|
|
9
|
-
*/
|
|
10
|
-
let FileInfoTemplateDirective = class FileInfoTemplateDirective {
|
|
11
|
-
constructor(templateRef) {
|
|
12
|
-
this.templateRef = templateRef;
|
|
13
|
-
}
|
|
14
|
-
};
|
|
15
|
-
FileInfoTemplateDirective = tslib_1.__decorate([
|
|
16
|
-
Directive({
|
|
17
|
-
selector: '[kendoUploadFileInfoTemplate], [kendoFileSelectFileInfoTemplate]'
|
|
18
|
-
}),
|
|
19
|
-
tslib_1.__metadata("design:paramtypes", [TemplateRef])
|
|
20
|
-
], FileInfoTemplateDirective);
|
|
21
|
-
export { FileInfoTemplateDirective };
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 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 tslib_1 from "tslib";
|
|
6
|
-
import { Directive, TemplateRef } from '@angular/core';
|
|
7
|
-
/**
|
|
8
|
-
* Used to customize the rendering of the files in the list ([see example]({% slug templates_upload %}#toc-file-template)).
|
|
9
|
-
*/
|
|
10
|
-
let FileTemplateDirective = class FileTemplateDirective {
|
|
11
|
-
constructor(templateRef) {
|
|
12
|
-
this.templateRef = templateRef;
|
|
13
|
-
}
|
|
14
|
-
};
|
|
15
|
-
FileTemplateDirective = tslib_1.__decorate([
|
|
16
|
-
Directive({
|
|
17
|
-
selector: '[kendoUploadFileTemplate], [kendoFileSelectFileTemplate]' // tslint:disable-line:directive-selector-prefix
|
|
18
|
-
}),
|
|
19
|
-
tslib_1.__metadata("design:paramtypes", [TemplateRef])
|
|
20
|
-
], FileTemplateDirective);
|
|
21
|
-
export { FileTemplateDirective };
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 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 tslib_1 from "tslib";
|
|
6
|
-
import { Directive, ViewContainerRef, Input } from '@angular/core';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
let TemplateContextDirective = class TemplateContextDirective {
|
|
11
|
-
constructor(viewContainerRef) {
|
|
12
|
-
this.viewContainerRef = viewContainerRef;
|
|
13
|
-
}
|
|
14
|
-
set templateContext(context) {
|
|
15
|
-
if (this.insertedViewRef) {
|
|
16
|
-
this.viewContainerRef.remove(this.viewContainerRef.indexOf(this.insertedViewRef));
|
|
17
|
-
this.insertedViewRef = undefined;
|
|
18
|
-
}
|
|
19
|
-
if (context.templateRef) {
|
|
20
|
-
this.insertedViewRef = this.viewContainerRef.createEmbeddedView(context.templateRef, context);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
};
|
|
24
|
-
tslib_1.__decorate([
|
|
25
|
-
Input(),
|
|
26
|
-
tslib_1.__metadata("design:type", Object),
|
|
27
|
-
tslib_1.__metadata("design:paramtypes", [Object])
|
|
28
|
-
], TemplateContextDirective.prototype, "templateContext", null);
|
|
29
|
-
TemplateContextDirective = tslib_1.__decorate([
|
|
30
|
-
Directive({
|
|
31
|
-
selector: '[templateContext]' // tslint:disable-line:directive-selector
|
|
32
|
-
}),
|
|
33
|
-
tslib_1.__metadata("design:paramtypes", [ViewContainerRef])
|
|
34
|
-
], TemplateContextDirective);
|
|
35
|
-
export { TemplateContextDirective };
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
/**
|
|
6
|
-
* Lists the possible states of a file.
|
|
7
|
-
*/
|
|
8
|
-
export var FileState;
|
|
9
|
-
(function (FileState) {
|
|
10
|
-
/**
|
|
11
|
-
* The file upload process has failed.
|
|
12
|
-
*/
|
|
13
|
-
FileState[FileState["Failed"] = 0] = "Failed";
|
|
14
|
-
/**
|
|
15
|
-
* An initially selected fake file without a set state.
|
|
16
|
-
*/
|
|
17
|
-
FileState[FileState["Initial"] = 1] = "Initial";
|
|
18
|
-
/**
|
|
19
|
-
* The file is selected.
|
|
20
|
-
*/
|
|
21
|
-
FileState[FileState["Selected"] = 2] = "Selected";
|
|
22
|
-
/**
|
|
23
|
-
* The file is successfully uploaded.
|
|
24
|
-
*/
|
|
25
|
-
FileState[FileState["Uploaded"] = 3] = "Uploaded";
|
|
26
|
-
/**
|
|
27
|
-
* The file is in the process of uploading.
|
|
28
|
-
*/
|
|
29
|
-
FileState[FileState["Uploading"] = 4] = "Uploading";
|
|
30
|
-
/**
|
|
31
|
-
* The file upload process has been paused.
|
|
32
|
-
*/
|
|
33
|
-
FileState[FileState["Paused"] = 5] = "Paused";
|
|
34
|
-
})(FileState || (FileState = {}));
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
package/dist/es2015/types.js
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
export { FileState } from './types/file-state';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
/**
|
|
6
|
-
* Represents the [NgModule](https://angular.io/api/core/NgModule) definition for the Upload component.
|
|
7
|
-
*/
|
|
8
|
-
export declare class UploadModule {
|
|
9
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 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 tslib_1 from "tslib";
|
|
6
|
-
import { NgModule } from '@angular/core';
|
|
7
|
-
import { UploadComponent } from './upload.component';
|
|
8
|
-
import { UploadActionButtonsComponent } from './rendering/upload-action-buttons.component';
|
|
9
|
-
import { UploadStatusTotalComponent } from './rendering/upload-status-total.component';
|
|
10
|
-
import { SharedModule, PUBLIC_DIRECTIVES } from './shared.module';
|
|
11
|
-
const UPLOAD_DECLARATIONS = [
|
|
12
|
-
UploadComponent,
|
|
13
|
-
UploadActionButtonsComponent,
|
|
14
|
-
UploadStatusTotalComponent
|
|
15
|
-
];
|
|
16
|
-
/**
|
|
17
|
-
* Represents the [NgModule](https://angular.io/api/core/NgModule) definition for the Upload component.
|
|
18
|
-
*/
|
|
19
|
-
let UploadModule = class UploadModule {
|
|
20
|
-
};
|
|
21
|
-
UploadModule = tslib_1.__decorate([
|
|
22
|
-
NgModule({
|
|
23
|
-
declarations: [UPLOAD_DECLARATIONS],
|
|
24
|
-
exports: [
|
|
25
|
-
PUBLIC_DIRECTIVES,
|
|
26
|
-
UPLOAD_DECLARATIONS
|
|
27
|
-
],
|
|
28
|
-
imports: [SharedModule]
|
|
29
|
-
})
|
|
30
|
-
], UploadModule);
|
|
31
|
-
export { UploadModule };
|