@progress/kendo-angular-upload 8.0.0 → 9.0.0-next.202202241540

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 (265) hide show
  1. package/bundles/kendo-angular-upload.umd.js +5 -0
  2. package/{dist/es2015/common → common}/action-buttons-layout.d.ts +0 -0
  3. package/{dist/es2015/common → common}/util.d.ts +0 -0
  4. package/{dist/es2015/common → common}/validation-util.d.ts +0 -0
  5. package/{dist/es2015/dropzone-base.d.ts → dropzone-base.d.ts} +4 -1
  6. package/{dist/es2015/dropzone-external.directive.d.ts → dropzone-external.directive.d.ts} +4 -1
  7. package/{dist/es2015/dropzone-internal.directive.d.ts → dropzone-internal.directive.d.ts} +3 -0
  8. package/{dist/es2015/dropzone.component.d.ts → dropzone.component.d.ts} +5 -2
  9. package/{dist/es2015/dropzone.service.d.ts → dropzone.service.d.ts} +3 -0
  10. package/{dist/es2015 → esm2015}/common/action-buttons-layout.js +1 -0
  11. package/{dist/es2015 → esm2015}/common/util.js +1 -7
  12. package/{dist/es2015 → esm2015}/common/validation-util.js +0 -4
  13. package/{dist/es2015 → esm2015}/dropzone-base.js +18 -16
  14. package/{dist/es2015 → esm2015}/dropzone-external.directive.js +29 -35
  15. package/{dist/es2015 → esm2015}/dropzone-internal.directive.js +25 -37
  16. package/esm2015/dropzone.component.js +113 -0
  17. package/{dist/es2015 → esm2015}/dropzone.service.js +8 -7
  18. package/{dist/es2015 → esm2015}/events/cancel-event.js +0 -0
  19. package/{dist/es2015 → esm2015}/events/clear-event.js +0 -0
  20. package/{dist/es2015 → esm2015}/events/error-event.js +0 -0
  21. package/{dist/es2015 → esm2015}/events/pause-event.js +0 -0
  22. package/{dist/es2015 → esm2015}/events/preventable-event.js +0 -0
  23. package/{dist/es2015 → esm2015}/events/remove-event.js +0 -0
  24. package/{dist/es2015 → esm2015}/events/resume-event.js +0 -0
  25. package/{dist/es2015 → esm2015}/events/select-event.js +0 -0
  26. package/{dist/es2015 → esm2015}/events/success-event.js +0 -0
  27. package/{dist/es2015 → esm2015}/events/upload-event.js +0 -0
  28. package/{dist/es2015 → esm2015}/events/upload-progress-event.js +0 -0
  29. package/{dist/es → esm2015}/events.js +0 -0
  30. package/esm2015/file-select.directive.js +100 -0
  31. package/{dist/es2015 → esm2015}/fileselect.component.js +160 -132
  32. package/esm2015/fileselect.module.js +35 -0
  33. package/{dist/es/types/chunk-info.js → esm2015/kendo-angular-upload.js} +4 -0
  34. package/esm2015/localization/custom-messages.component.js +50 -0
  35. package/esm2015/localization/localized-messages.directive.js +40 -0
  36. package/esm2015/localization/messages.js +59 -0
  37. package/{dist/es → esm2015}/main.js +0 -0
  38. package/{dist/es2015 → esm2015}/navigation.service.js +9 -9
  39. package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
  40. package/{dist/es2015 → esm2015}/rendering/file-list-item-action-button.component.js +70 -28
  41. package/{dist/es2015 → esm2015}/rendering/file-list-item-base.js +9 -0
  42. package/esm2015/rendering/file-list-item.js +107 -0
  43. package/esm2015/rendering/file-list-multiple-items.component.js +172 -0
  44. package/esm2015/rendering/file-list-single-item.component.js +154 -0
  45. package/esm2015/rendering/file-list.component.js +145 -0
  46. package/esm2015/rendering/upload-action-buttons.component.js +136 -0
  47. package/esm2015/rendering/upload-status-total.component.js +60 -0
  48. package/{dist/es2015 → esm2015}/shared.module.js +45 -18
  49. package/esm2015/templates/file-info-template.directive.js +22 -0
  50. package/esm2015/templates/file-template.directive.js +22 -0
  51. package/esm2015/templates/template-context.directive.js +33 -0
  52. package/{dist/es2015 → esm2015}/types/async-settings.js +1 -0
  53. package/{dist/es2015 → esm2015}/types/chunk-info.js +1 -0
  54. package/{dist/es2015 → esm2015}/types/chunk-map.js +0 -0
  55. package/{dist/es → esm2015}/types/chunk-metadata.js +1 -0
  56. package/{dist/es → esm2015}/types/chunk-settings.js +1 -0
  57. package/{dist/es → esm2015}/types/direction.js +1 -0
  58. package/{dist/es2015 → esm2015}/types/file-groups.js +3 -5
  59. package/{dist/es → esm2015}/types/file-info.js +1 -0
  60. package/{dist/es2015 → esm2015}/types/file-map.js +0 -0
  61. package/{dist/es → esm2015}/types/file-restrictions.js +1 -0
  62. package/{dist/es → esm2015}/types/file-state.js +0 -0
  63. package/{dist/es → esm2015}/types/operation-type.js +1 -0
  64. package/{dist/es → esm2015}/types.js +0 -0
  65. package/{dist/es2015 → esm2015}/upload.component.js +263 -243
  66. package/esm2015/upload.module.js +43 -0
  67. package/{dist/es2015 → esm2015}/upload.service.js +10 -9
  68. package/{dist/es2015 → esm2015}/uploads.module.js +17 -12
  69. package/{dist/es2015/events → events}/cancel-event.d.ts +0 -0
  70. package/{dist/es2015/events → events}/clear-event.d.ts +0 -0
  71. package/{dist/es2015/events → events}/error-event.d.ts +0 -0
  72. package/{dist/es2015/events → events}/pause-event.d.ts +0 -0
  73. package/{dist/es2015/events → events}/preventable-event.d.ts +0 -0
  74. package/{dist/es2015/events → events}/remove-event.d.ts +0 -0
  75. package/{dist/es2015/events → events}/resume-event.d.ts +0 -0
  76. package/{dist/es2015/events → events}/select-event.d.ts +0 -0
  77. package/{dist/es2015/events → events}/success-event.d.ts +0 -0
  78. package/{dist/es2015/events → events}/upload-event.d.ts +0 -0
  79. package/{dist/es2015/events → events}/upload-progress-event.d.ts +0 -0
  80. package/{dist/es2015/events.d.ts → events.d.ts} +0 -0
  81. package/{dist/fesm2015/index.js → fesm2015/kendo-angular-upload.js} +2184 -2011
  82. package/{dist/es2015/file-select.directive.d.ts → file-select.directive.d.ts} +7 -4
  83. package/{dist/es2015/fileselect.component.d.ts → fileselect.component.d.ts} +14 -6
  84. package/fileselect.module.d.ts +20 -0
  85. package/{dist/es/common/action-buttons-layout.js → kendo-angular-upload.d.ts} +5 -0
  86. package/{dist/es2015/localization → localization}/custom-messages.component.d.ts +4 -1
  87. package/{dist/es2015/localization → localization}/localized-messages.directive.d.ts +3 -0
  88. package/{dist/es2015/localization → localization}/messages.d.ts +3 -0
  89. package/{dist/es2015/main.d.ts → main.d.ts} +0 -0
  90. package/{dist/es2015/navigation.service.d.ts → navigation.service.d.ts} +7 -3
  91. package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
  92. package/package.json +34 -102
  93. package/{dist/es2015/rendering → rendering}/file-list-item-action-button.component.d.ts +11 -8
  94. package/{dist/es2015/rendering → rendering}/file-list-item-base.d.ts +3 -0
  95. package/{dist/es2015/rendering → rendering}/file-list-item.d.ts +10 -7
  96. package/{dist/es2015/rendering → rendering}/file-list-multiple-items.component.d.ts +7 -4
  97. package/{dist/es2015/rendering → rendering}/file-list-single-item.component.d.ts +9 -6
  98. package/{dist/es2015/rendering → rendering}/file-list.component.d.ts +3 -0
  99. package/{dist/es2015/rendering → rendering}/upload-action-buttons.component.d.ts +7 -4
  100. package/{dist/es2015/rendering → rendering}/upload-status-total.component.d.ts +3 -0
  101. package/schematics/ngAdd/index.js +5 -2
  102. package/schematics/ngAdd/index.js.map +1 -1
  103. package/shared.module.d.ts +36 -0
  104. package/{dist/es2015/templates → templates}/file-info-template.directive.d.ts +3 -0
  105. package/{dist/es2015/templates → templates}/file-template.directive.d.ts +3 -0
  106. package/{dist/es2015/templates → templates}/template-context.directive.d.ts +4 -1
  107. package/{dist/es2015/types → types}/async-settings.d.ts +0 -0
  108. package/{dist/es2015/types → types}/chunk-info.d.ts +0 -0
  109. package/{dist/es2015/types → types}/chunk-map.d.ts +0 -0
  110. package/{dist/es2015/types → types}/chunk-metadata.d.ts +0 -0
  111. package/{dist/es2015/types → types}/chunk-settings.d.ts +0 -0
  112. package/{dist/es2015/types → types}/direction.d.ts +0 -0
  113. package/{dist/es2015/types → types}/file-groups.d.ts +0 -0
  114. package/{dist/es2015/types → types}/file-info.d.ts +0 -0
  115. package/{dist/es2015/types → types}/file-map.d.ts +5 -5
  116. package/{dist/es2015/types → types}/file-restrictions.d.ts +0 -0
  117. package/{dist/es2015/types → types}/file-state.d.ts +0 -0
  118. package/{dist/es2015/types → types}/operation-type.d.ts +0 -0
  119. package/{dist/es2015/types.d.ts → types.d.ts} +0 -0
  120. package/{dist/es2015/upload.component.d.ts → upload.component.d.ts} +42 -21
  121. package/upload.module.d.ts +22 -0
  122. package/{dist/es2015/upload.service.d.ts → upload.service.d.ts} +4 -1
  123. package/{dist/es2015/uploads.module.d.ts → uploads.module.d.ts} +6 -0
  124. package/dist/cdn/js/kendo-angular-upload.js +0 -20
  125. package/dist/cdn/main.js +0 -5
  126. package/dist/es/common/util.js +0 -234
  127. package/dist/es/common/validation-util.js +0 -64
  128. package/dist/es/dropzone-base.js +0 -66
  129. package/dist/es/dropzone-external.directive.js +0 -98
  130. package/dist/es/dropzone-internal.directive.js +0 -110
  131. package/dist/es/dropzone.component.js +0 -99
  132. package/dist/es/dropzone.service.js +0 -33
  133. package/dist/es/events/cancel-event.js +0 -41
  134. package/dist/es/events/clear-event.js +0 -43
  135. package/dist/es/events/error-event.js +0 -45
  136. package/dist/es/events/pause-event.js +0 -42
  137. package/dist/es/events/preventable-event.js +0 -29
  138. package/dist/es/events/remove-event.js +0 -47
  139. package/dist/es/events/resume-event.js +0 -42
  140. package/dist/es/events/select-event.js +0 -45
  141. package/dist/es/events/success-event.js +0 -49
  142. package/dist/es/events/upload-event.js +0 -47
  143. package/dist/es/events/upload-progress-event.js +0 -42
  144. package/dist/es/file-select.directive.js +0 -141
  145. package/dist/es/fileselect.component.js +0 -484
  146. package/dist/es/fileselect.module.js +0 -30
  147. package/dist/es/index.js +0 -21
  148. package/dist/es/localization/custom-messages.component.js +0 -53
  149. package/dist/es/localization/localized-messages.directive.js +0 -35
  150. package/dist/es/localization/messages.js +0 -102
  151. package/dist/es/navigation.service.js +0 -166
  152. package/dist/es/package-metadata.js +0 -15
  153. package/dist/es/rendering/file-list-item-action-button.component.js +0 -169
  154. package/dist/es/rendering/file-list-item-base.js +0 -41
  155. package/dist/es/rendering/file-list-item.js +0 -165
  156. package/dist/es/rendering/file-list-multiple-items.component.js +0 -107
  157. package/dist/es/rendering/file-list-single-item.component.js +0 -112
  158. package/dist/es/rendering/file-list.component.js +0 -98
  159. package/dist/es/rendering/upload-action-buttons.component.js +0 -149
  160. package/dist/es/rendering/upload-status-total.component.js +0 -42
  161. package/dist/es/shared.module.js +0 -68
  162. package/dist/es/templates/file-info-template.directive.js +0 -22
  163. package/dist/es/templates/file-template.directive.js +0 -22
  164. package/dist/es/templates/template-context.directive.js +0 -40
  165. package/dist/es/types/async-settings.js +0 -4
  166. package/dist/es/types/chunk-map.js +0 -36
  167. package/dist/es/types/file-groups.js +0 -45
  168. package/dist/es/types/file-map.js +0 -170
  169. package/dist/es/upload.component.js +0 -967
  170. package/dist/es/upload.module.js +0 -34
  171. package/dist/es/upload.service.js +0 -448
  172. package/dist/es/uploads.module.js +0 -47
  173. package/dist/es2015/dropzone.component.js +0 -100
  174. package/dist/es2015/events.js +0 -14
  175. package/dist/es2015/file-select.directive.js +0 -123
  176. package/dist/es2015/fileselect.module.d.ts +0 -9
  177. package/dist/es2015/fileselect.module.js +0 -27
  178. package/dist/es2015/index.d.ts +0 -21
  179. package/dist/es2015/index.js +0 -21
  180. package/dist/es2015/index.metadata.json +0 -1
  181. package/dist/es2015/localization/custom-messages.component.js +0 -45
  182. package/dist/es2015/localization/localized-messages.directive.js +0 -35
  183. package/dist/es2015/localization/messages.js +0 -96
  184. package/dist/es2015/main.js +0 -24
  185. package/dist/es2015/rendering/file-list-item.js +0 -136
  186. package/dist/es2015/rendering/file-list-multiple-items.component.js +0 -128
  187. package/dist/es2015/rendering/file-list-single-item.component.js +0 -117
  188. package/dist/es2015/rendering/file-list.component.js +0 -123
  189. package/dist/es2015/rendering/upload-action-buttons.component.js +0 -141
  190. package/dist/es2015/rendering/upload-status-total.component.js +0 -51
  191. package/dist/es2015/shared.module.d.ts +0 -17
  192. package/dist/es2015/templates/file-info-template.directive.js +0 -21
  193. package/dist/es2015/templates/file-template.directive.js +0 -21
  194. package/dist/es2015/templates/template-context.directive.js +0 -35
  195. package/dist/es2015/types/chunk-metadata.js +0 -4
  196. package/dist/es2015/types/chunk-settings.js +0 -4
  197. package/dist/es2015/types/direction.js +0 -4
  198. package/dist/es2015/types/file-info.js +0 -4
  199. package/dist/es2015/types/file-restrictions.js +0 -4
  200. package/dist/es2015/types/file-state.js +0 -34
  201. package/dist/es2015/types/operation-type.js +0 -4
  202. package/dist/es2015/types.js +0 -5
  203. package/dist/es2015/upload.module.d.ts +0 -9
  204. package/dist/es2015/upload.module.js +0 -31
  205. package/dist/fesm5/index.js +0 -4653
  206. package/dist/npm/common/action-buttons-layout.js +0 -6
  207. package/dist/npm/common/util.js +0 -240
  208. package/dist/npm/common/validation-util.js +0 -68
  209. package/dist/npm/dropzone-base.js +0 -68
  210. package/dist/npm/dropzone-external.directive.js +0 -100
  211. package/dist/npm/dropzone-internal.directive.js +0 -112
  212. package/dist/npm/dropzone.component.js +0 -101
  213. package/dist/npm/dropzone.service.js +0 -35
  214. package/dist/npm/events/cancel-event.js +0 -43
  215. package/dist/npm/events/clear-event.js +0 -45
  216. package/dist/npm/events/error-event.js +0 -47
  217. package/dist/npm/events/pause-event.js +0 -44
  218. package/dist/npm/events/preventable-event.js +0 -31
  219. package/dist/npm/events/remove-event.js +0 -49
  220. package/dist/npm/events/resume-event.js +0 -44
  221. package/dist/npm/events/select-event.js +0 -47
  222. package/dist/npm/events/success-event.js +0 -51
  223. package/dist/npm/events/upload-event.js +0 -49
  224. package/dist/npm/events/upload-progress-event.js +0 -44
  225. package/dist/npm/events.js +0 -26
  226. package/dist/npm/file-select.directive.js +0 -143
  227. package/dist/npm/fileselect.component.js +0 -486
  228. package/dist/npm/fileselect.module.js +0 -32
  229. package/dist/npm/index.js +0 -39
  230. package/dist/npm/localization/custom-messages.component.js +0 -55
  231. package/dist/npm/localization/localized-messages.directive.js +0 -37
  232. package/dist/npm/localization/messages.js +0 -104
  233. package/dist/npm/main.js +0 -45
  234. package/dist/npm/navigation.service.js +0 -168
  235. package/dist/npm/package-metadata.js +0 -17
  236. package/dist/npm/rendering/file-list-item-action-button.component.js +0 -171
  237. package/dist/npm/rendering/file-list-item-base.js +0 -43
  238. package/dist/npm/rendering/file-list-item.js +0 -167
  239. package/dist/npm/rendering/file-list-multiple-items.component.js +0 -109
  240. package/dist/npm/rendering/file-list-single-item.component.js +0 -114
  241. package/dist/npm/rendering/file-list.component.js +0 -100
  242. package/dist/npm/rendering/upload-action-buttons.component.js +0 -151
  243. package/dist/npm/rendering/upload-status-total.component.js +0 -44
  244. package/dist/npm/shared.module.js +0 -70
  245. package/dist/npm/templates/file-info-template.directive.js +0 -24
  246. package/dist/npm/templates/file-template.directive.js +0 -24
  247. package/dist/npm/templates/template-context.directive.js +0 -42
  248. package/dist/npm/types/async-settings.js +0 -6
  249. package/dist/npm/types/chunk-info.js +0 -6
  250. package/dist/npm/types/chunk-map.js +0 -38
  251. package/dist/npm/types/chunk-metadata.js +0 -6
  252. package/dist/npm/types/chunk-settings.js +0 -6
  253. package/dist/npm/types/direction.js +0 -6
  254. package/dist/npm/types/file-groups.js +0 -47
  255. package/dist/npm/types/file-info.js +0 -6
  256. package/dist/npm/types/file-map.js +0 -172
  257. package/dist/npm/types/file-restrictions.js +0 -6
  258. package/dist/npm/types/file-state.js +0 -36
  259. package/dist/npm/types/operation-type.js +0 -6
  260. package/dist/npm/types.js +0 -8
  261. package/dist/npm/upload.component.js +0 -969
  262. package/dist/npm/upload.module.js +0 -36
  263. package/dist/npm/upload.service.js +0 -450
  264. package/dist/npm/uploads.module.js +0 -49
  265. package/dist/systemjs/kendo-angular-upload.js +0 -5
@@ -1,98 +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, HostListener, Input } from '@angular/core';
7
- import { assignGuidToFiles, getAllFileInfo, isPresent } from './common/util';
8
- import { validateFiles } from './common/validation-util';
9
- import { DropZoneService } from './dropzone.service';
10
- import { UploadComponent } from './upload.component';
11
- var UploadDropZoneDirective = /** @class */ (function () {
12
- function UploadDropZoneDirective(dropZoneService) {
13
- this.dropZoneService = dropZoneService;
14
- }
15
- /**
16
- * @hidden
17
- */
18
- UploadDropZoneDirective.prototype.onElementDragEnter = function () {
19
- return false;
20
- };
21
- /**
22
- * @hidden
23
- */
24
- UploadDropZoneDirective.prototype.onElementDragOver = function () {
25
- return false;
26
- };
27
- /**
28
- * @hidden
29
- */
30
- UploadDropZoneDirective.prototype.onDropListener = function (event) {
31
- var components = this.componentInstance;
32
- if (!isPresent(components)) {
33
- return;
34
- }
35
- components.forEach(function (component) {
36
- var droppedFiles = event.dataTransfer.files;
37
- if (droppedFiles.length > 0 && !component.disabled) {
38
- var files = getAllFileInfo(droppedFiles);
39
- if (component instanceof UploadComponent) {
40
- files = assignGuidToFiles(files, !component.batch);
41
- }
42
- else {
43
- files = assignGuidToFiles(files, true);
44
- }
45
- if (!component.multiple) {
46
- files.splice(1, files.length - 1);
47
- component.clearFiles();
48
- }
49
- validateFiles(files, component.restrictions);
50
- component.addFiles(files);
51
- }
52
- });
53
- return false;
54
- };
55
- Object.defineProperty(UploadDropZoneDirective.prototype, "componentInstance", {
56
- /**
57
- * @hidden
58
- */
59
- get: function () {
60
- return this.dropZoneService.getComponents(this.zoneId);
61
- },
62
- enumerable: true,
63
- configurable: true
64
- });
65
- tslib_1.__decorate([
66
- Input('kendoUploadDropZone'),
67
- tslib_1.__metadata("design:type", String)
68
- ], UploadDropZoneDirective.prototype, "zoneId", void 0);
69
- tslib_1.__decorate([
70
- HostListener('dragenter'),
71
- tslib_1.__metadata("design:type", Function),
72
- tslib_1.__metadata("design:paramtypes", []),
73
- tslib_1.__metadata("design:returntype", Boolean)
74
- ], UploadDropZoneDirective.prototype, "onElementDragEnter", null);
75
- tslib_1.__decorate([
76
- HostListener('dragover'),
77
- tslib_1.__metadata("design:type", Function),
78
- tslib_1.__metadata("design:paramtypes", []),
79
- tslib_1.__metadata("design:returntype", Boolean)
80
- ], UploadDropZoneDirective.prototype, "onElementDragOver", null);
81
- tslib_1.__decorate([
82
- HostListener('drop', ['$event']),
83
- tslib_1.__metadata("design:type", Function),
84
- tslib_1.__metadata("design:paramtypes", [Object]),
85
- tslib_1.__metadata("design:returntype", Boolean)
86
- ], UploadDropZoneDirective.prototype, "onDropListener", null);
87
- UploadDropZoneDirective = tslib_1.__decorate([
88
- Directive({
89
- providers: [
90
- DropZoneService
91
- ],
92
- selector: '[kendoUploadDropZone], [kendoFileSelectDropZone]'
93
- }),
94
- tslib_1.__metadata("design:paramtypes", [DropZoneService])
95
- ], UploadDropZoneDirective);
96
- return UploadDropZoneDirective;
97
- }());
98
- export { UploadDropZoneDirective };
@@ -1,110 +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, ElementRef, HostBinding, HostListener, Input, Renderer2, NgZone } from '@angular/core';
7
- import { assignGuidToFiles, getAllFileInfo } from './common/util';
8
- import { validateFiles } from './common/validation-util';
9
- import { DropZoneBase } from './dropzone-base';
10
- import { UploadService } from './upload.service';
11
- /**
12
- * @hidden
13
- */
14
- var DropZoneInternalDirective = /** @class */ (function (_super) {
15
- tslib_1.__extends(DropZoneInternalDirective, _super);
16
- function DropZoneInternalDirective(element, renderer, ngZone, uploadService) {
17
- var _this = _super.call(this, element, renderer, 'k-dropzone-hover') || this;
18
- _this.ngZone = ngZone;
19
- _this.uploadService = uploadService;
20
- _this.initialClassName = true;
21
- _this.hideIntervalDocument = null;
22
- _this.activeClass = 'k-dropzone-active';
23
- _this.ngZone.runOutsideAngular(function () {
24
- _this.unsubscribeDocumentDragEnter = _this.renderer.listen('document', 'dragenter', function () { return _this.onDocumentDragEnter(); });
25
- _this.unsubscribeDocumentDragOver = _this.renderer.listen('document', 'dragover', function () { return _this.onDocumentDragOver(); });
26
- });
27
- return _this;
28
- }
29
- DropZoneInternalDirective.prototype.ngOnDestroy = function () {
30
- var _this = this;
31
- this.ngZone.runOutsideAngular(function () {
32
- if (_this.unsubscribeDocumentDragEnter) {
33
- _this.unsubscribeDocumentDragEnter();
34
- }
35
- if (_this.unsubscribeDocumentDragOver) {
36
- _this.unsubscribeDocumentDragOver();
37
- }
38
- });
39
- };
40
- DropZoneInternalDirective.prototype.onDocumentDragEnter = function () {
41
- var _this = this;
42
- this.addClass(this.activeClass);
43
- this.lastDragDocument = new Date();
44
- if (!this.hideIntervalDocument) {
45
- this.hideIntervalDocument = setInterval(function () {
46
- if (_this.calculateTimeDiff(_this.lastDragDocument) < 100) {
47
- return;
48
- }
49
- _this.removeClass(_this.activeClass);
50
- clearInterval(_this.hideIntervalDocument);
51
- _this.hideIntervalDocument = null;
52
- }, 100);
53
- }
54
- return false;
55
- };
56
- /**
57
- * @hidden
58
- */
59
- DropZoneInternalDirective.prototype.onDocumentDragOver = function () {
60
- this.lastDragDocument = new Date();
61
- return false;
62
- };
63
- DropZoneInternalDirective.prototype.onDropListener = function (event) {
64
- var droppedFiles = event.dataTransfer.files;
65
- if (droppedFiles.length > 0 && !this.disabled) {
66
- var files = getAllFileInfo(droppedFiles);
67
- files = assignGuidToFiles(files, !this.uploadService.async.batch);
68
- if (!this.multiple) {
69
- files.splice(1, files.length - 1);
70
- this.uploadService.clearFiles();
71
- }
72
- validateFiles(files, this.restrictions);
73
- this.uploadService.addFiles(files);
74
- }
75
- return false;
76
- };
77
- tslib_1.__decorate([
78
- Input(),
79
- tslib_1.__metadata("design:type", Boolean)
80
- ], DropZoneInternalDirective.prototype, "disabled", void 0);
81
- tslib_1.__decorate([
82
- Input(),
83
- tslib_1.__metadata("design:type", Boolean)
84
- ], DropZoneInternalDirective.prototype, "multiple", void 0);
85
- tslib_1.__decorate([
86
- Input(),
87
- tslib_1.__metadata("design:type", Object)
88
- ], DropZoneInternalDirective.prototype, "restrictions", void 0);
89
- tslib_1.__decorate([
90
- HostBinding('class.k-dropzone'),
91
- tslib_1.__metadata("design:type", Boolean)
92
- ], DropZoneInternalDirective.prototype, "initialClassName", void 0);
93
- tslib_1.__decorate([
94
- HostListener('drop', ['$event']),
95
- tslib_1.__metadata("design:type", Function),
96
- tslib_1.__metadata("design:paramtypes", [Object]),
97
- tslib_1.__metadata("design:returntype", Boolean)
98
- ], DropZoneInternalDirective.prototype, "onDropListener", null);
99
- DropZoneInternalDirective = tslib_1.__decorate([
100
- Directive({
101
- selector: "\n [kendoUploadInternalDropZone],\n [kendoFileSelectInternalDropZone]\n "
102
- }),
103
- tslib_1.__metadata("design:paramtypes", [ElementRef,
104
- Renderer2,
105
- NgZone,
106
- UploadService])
107
- ], DropZoneInternalDirective);
108
- return DropZoneInternalDirective;
109
- }(DropZoneBase));
110
- export { DropZoneInternalDirective };
@@ -1,99 +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, ElementRef, HostBinding, Input, Renderer2 } from '@angular/core';
7
- import { L10N_PREFIX, LocalizationService } from '@progress/kendo-angular-l10n';
8
- import { DropZoneBase } from './dropzone-base';
9
- /* tslint:disable: no-use-before-declare */
10
- /**
11
- * Represents the [Kendo UI UploadDropZone component for Angular]({% slug overview_upload %}).
12
- */
13
- var UploadDropZoneComponent = /** @class */ (function (_super) {
14
- tslib_1.__extends(UploadDropZoneComponent, _super);
15
- function UploadDropZoneComponent(element, renderer, localization) {
16
- var _this = _super.call(this, element, renderer, 'k-external-dropzone-hover') || this;
17
- _this.localization = localization;
18
- _this.hostClass = true;
19
- _this.localizationChangeSubscription = _this.localization.changes.subscribe(function (_a) {
20
- var rtl = _a.rtl;
21
- _this.direction = rtl ? 'rtl' : 'ltr';
22
- });
23
- return _this;
24
- }
25
- Object.defineProperty(UploadDropZoneComponent.prototype, "dirAttribute", {
26
- get: function () {
27
- return this.direction;
28
- },
29
- enumerable: true,
30
- configurable: true
31
- });
32
- /**
33
- * @hidden
34
- */
35
- UploadDropZoneComponent.prototype.textFor = function (key) {
36
- return this.localization.get(key);
37
- };
38
- Object.defineProperty(UploadDropZoneComponent.prototype, "iconClasses", {
39
- /**
40
- * @hidden
41
- */
42
- get: function () {
43
- if (this.icon) {
44
- return "k-icon k-i-" + this.icon;
45
- }
46
- if (this.iconClass) {
47
- return "" + this.iconClass;
48
- }
49
- return 'k-icon k-i-upload';
50
- },
51
- enumerable: true,
52
- configurable: true
53
- });
54
- UploadDropZoneComponent.prototype.ngOnDestroy = function () {
55
- if (this.localizationChangeSubscription) {
56
- this.localizationChangeSubscription.unsubscribe();
57
- }
58
- };
59
- tslib_1.__decorate([
60
- HostBinding('class.k-external-dropzone'),
61
- tslib_1.__metadata("design:type", Boolean)
62
- ], UploadDropZoneComponent.prototype, "hostClass", void 0);
63
- tslib_1.__decorate([
64
- HostBinding('attr.dir'),
65
- tslib_1.__metadata("design:type", String),
66
- tslib_1.__metadata("design:paramtypes", [])
67
- ], UploadDropZoneComponent.prototype, "dirAttribute", null);
68
- tslib_1.__decorate([
69
- Input(),
70
- tslib_1.__metadata("design:type", String)
71
- ], UploadDropZoneComponent.prototype, "zoneId", void 0);
72
- tslib_1.__decorate([
73
- Input(),
74
- tslib_1.__metadata("design:type", String)
75
- ], UploadDropZoneComponent.prototype, "icon", void 0);
76
- tslib_1.__decorate([
77
- Input(),
78
- tslib_1.__metadata("design:type", String)
79
- ], UploadDropZoneComponent.prototype, "iconClass", void 0);
80
- UploadDropZoneComponent = tslib_1.__decorate([
81
- Component({
82
- exportAs: 'kendoUploadDropZone',
83
- providers: [
84
- LocalizationService,
85
- {
86
- provide: L10N_PREFIX,
87
- useValue: 'kendo.uploaddropzone'
88
- }
89
- ],
90
- selector: 'kendo-uploaddropzone',
91
- template: "\n <ng-container kendoUploadDropZoneLocalizedMessages\n i18n-externalDropFilesHere='kendo.uploaddropzone.externalDropFilesHere|Sets the external drop-zone hint'\n externalDropFilesHere='Drag and drop files here to upload'\n >\n </ng-container>\n <div class='k-dropzone-inner' [kendoUploadDropZone]=\"zoneId\">\n <span [ngClass]=\"iconClasses\"></span>\n <span class=\"k-dropzone-hint\">{{ textFor('externalDropFilesHere') }}</span>\n <span class=\"k-dropzone-note\">\n <ng-content></ng-content>\n </span>\n </div>\n "
92
- }),
93
- tslib_1.__metadata("design:paramtypes", [ElementRef,
94
- Renderer2,
95
- LocalizationService])
96
- ], UploadDropZoneComponent);
97
- return UploadDropZoneComponent;
98
- }(DropZoneBase));
99
- export { UploadDropZoneComponent };
@@ -1,33 +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 { Injectable } from '@angular/core';
7
- var components = {};
8
- /**
9
- * @hidden
10
- */
11
- var DropZoneService = /** @class */ (function () {
12
- function DropZoneService() {
13
- }
14
- DropZoneService.prototype.addComponent = function (component, zoneId) {
15
- if (this.has(zoneId)) {
16
- components[zoneId].push(component);
17
- }
18
- else {
19
- components[zoneId] = [component];
20
- }
21
- };
22
- DropZoneService.prototype.getComponents = function (zoneId) {
23
- return components[zoneId];
24
- };
25
- DropZoneService.prototype.has = function (id) {
26
- return id in components;
27
- };
28
- DropZoneService = tslib_1.__decorate([
29
- Injectable()
30
- ], DropZoneService);
31
- return DropZoneService;
32
- }());
33
- export { DropZoneService };
@@ -1,41 +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
- * Arguments for the `cancel` event. The `cancel` event fires when
7
- * the user cancels the process of uploading a file or a batch of files.
8
- *
9
- * ```ts-no-run
10
- * @Component({
11
- * selector: 'my-upload',
12
- * template: `
13
- * <p>Click the <span class='k-icon k-i-cancel'></span> icon during upload to trigger the event</p>
14
- * <kendo-upload
15
- * [saveUrl]="uploadSaveUrl"
16
- * [removeUrl]="uploadRemoveUrl"
17
- * (cancel)="cancelEventHandler($event)">
18
- * </kendo-upload>
19
- * `
20
- * })
21
- * export class UploadComponent {
22
- * uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
23
- * uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint
24
- *
25
- * cancelEventHandler(e: CancelEvent) {
26
- * console.log('Canceling file upload', e.files);
27
- * }
28
- * }
29
- * ```
30
- */
31
- var CancelEvent = /** @class */ (function () {
32
- /**
33
- * Constructs the event arguments for the `cancel` event.
34
- * @param files - The list of the files that were going to be uploaded.
35
- */
36
- function CancelEvent(files) {
37
- this.files = files;
38
- }
39
- return CancelEvent;
40
- }());
41
- export { CancelEvent };
@@ -1,43 +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 { PreventableEvent } from './preventable-event';
7
- /**
8
- * Arguments for the `clear` event. The `clear` event fires when
9
- * the **Clear** button is clicked. At this point, the selected files are about to be cleared.
10
- *
11
- * ```ts-no-run
12
- * @Component({
13
- * selector: 'my-upload',
14
- * template: `
15
- * <kendo-upload
16
- * [autoUpload]="false"
17
- * [saveUrl]="uploadSaveUrl"
18
- * [removeUrl]="uploadRemoveUrl"
19
- * (clear)="clearEventHandler($event)">
20
- * </kendo-upload>
21
- * `
22
- * })
23
- * export class UploadComponent {
24
- * uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
25
- * uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint
26
- *
27
- * clearEventHandler(e: ClearEvent) {
28
- * console.log('Clearing the file upload');
29
- * }
30
- * }
31
- * ```
32
- */
33
- var ClearEvent = /** @class */ (function (_super) {
34
- tslib_1.__extends(ClearEvent, _super);
35
- /**
36
- * Constructs the event arguments for the `clear` event.
37
- */
38
- function ClearEvent() {
39
- return _super.call(this) || this;
40
- }
41
- return ClearEvent;
42
- }(PreventableEvent));
43
- export { ClearEvent };
@@ -1,45 +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
- * Arguments for the `error` event. The `error` event fires when
7
- * an `upload` or `remove` operation fails.
8
- *
9
- * ```ts-no-run
10
- * @Component({
11
- * selector: 'my-upload',
12
- * template: `
13
- * <kendo-upload
14
- * [saveUrl]="uploadSaveUrl"
15
- * [removeUrl]="uploadRemoveUrl"
16
- * (error)="errorEventHandler($event)">
17
- * </kendo-upload>
18
- * `
19
- * })
20
- * export class UploadComponent {
21
- * uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
22
- * uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint
23
- *
24
- * errorEventHandler(e: ErrorEvent) {
25
- * console.log('An error occurred');
26
- * }
27
- * }
28
- * ```
29
- */
30
- var ErrorEvent = /** @class */ (function () {
31
- /**
32
- * Constructs the event arguments for the `error` event.
33
- *
34
- * @param files - The list of the files that failed to be uploaded or removed.
35
- * @param operation - The operation type (`upload` or `remove`).
36
- * @param response - The response object returned by the server.
37
- */
38
- function ErrorEvent(files, operation, response) {
39
- this.files = files;
40
- this.operation = operation;
41
- this.response = response;
42
- }
43
- return ErrorEvent;
44
- }());
45
- export { ErrorEvent };
@@ -1,42 +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
- * Arguments for the `pause` event. The `pause` event fires when the user
7
- * pauses a file that is currently uploading.
8
- *
9
- * ```ts-no-run
10
- * @Component({
11
- * selector: 'my-upload',
12
- * template: `
13
- * <kendo-upload
14
- * [chunkable]="true"
15
- * [saveUrl]="uploadSaveUrl"
16
- * [removeUrl]="uploadRemoveUrl"
17
- * (pause)="pauseEventHandler($event)">
18
- * </kendo-upload>
19
- * `
20
- * })
21
- * export class UploadComponent {
22
- * uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
23
- * uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint
24
- *
25
- * pauseEventHandler(ev: PauseEvent) {
26
- * console.log('File paused');
27
- * }
28
- * }
29
- * ```
30
- *
31
- */
32
- var PauseEvent = /** @class */ (function () {
33
- /**
34
- * Constructs the event arguments for the `pause` event.
35
- * @param file - The file that is going to be paused.
36
- */
37
- function PauseEvent(file) {
38
- this.file = file;
39
- }
40
- return PauseEvent;
41
- }());
42
- export { PauseEvent };
@@ -1,29 +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
- var PreventableEvent = /** @class */ (function () {
9
- function PreventableEvent() {
10
- this.prevented = false;
11
- }
12
- /**
13
- * Prevents the default action for a specified event.
14
- * In this way, the source component suppresses the built-in behavior that follows the event.
15
- */
16
- PreventableEvent.prototype.preventDefault = function () {
17
- this.prevented = true;
18
- };
19
- /**
20
- * If the event is prevented by any of its subscribers, returns `true`.
21
- *
22
- * @returns `true` if the default action was prevented. Otherwise, returns `false`.
23
- */
24
- PreventableEvent.prototype.isDefaultPrevented = function () {
25
- return this.prevented;
26
- };
27
- return PreventableEvent;
28
- }());
29
- export { PreventableEvent };
@@ -1,47 +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 { PreventableEvent } from './preventable-event';
7
- /**
8
- * Arguments for the `remove` event. The `remove` event fires when an uploaded
9
- * or selected file is about to be removed. If you cancel the event, the removal is prevented.
10
- *
11
- * ```ts-no-run
12
- * @Component({
13
- * selector: 'my-upload',
14
- * template: `
15
- * <kendo-upload
16
- * [saveUrl]="uploadSaveUrl"
17
- * [removeUrl]="uploadRemoveUrl"
18
- * (remove)="removeEventHandler($event)">
19
- * </kendo-upload>
20
- * `
21
- * })
22
- * export class UploadComponent {
23
- * uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
24
- * uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint
25
- *
26
- * removeEventHandler(e: RemoveEvent) {
27
- * console.log('Removing a file');
28
- * }
29
- * }
30
- * ```
31
- */
32
- var RemoveEvent = /** @class */ (function (_super) {
33
- tslib_1.__extends(RemoveEvent, _super);
34
- /**
35
- * Constructs the event arguments for the `remove` event.
36
- * @param files - The list of the files that will be removed.
37
- * @param headers - The headers of the request.
38
- */
39
- function RemoveEvent(files, headers) {
40
- var _this = _super.call(this) || this;
41
- _this.files = files;
42
- _this.headers = headers;
43
- return _this;
44
- }
45
- return RemoveEvent;
46
- }(PreventableEvent));
47
- export { RemoveEvent };
@@ -1,42 +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
- * Arguments for the `resume` event. The `resume` event fires when the user
7
- * resumes the upload of a file that has been previously paused.
8
- *
9
- * ```ts-no-run
10
- * @Component({
11
- * selector: 'my-upload',
12
- * template: `
13
- * <kendo-upload
14
- * [chunkable]="true"
15
- * [saveUrl]="uploadSaveUrl"
16
- * [removeUrl]="uploadRemoveUrl"
17
- * (resume)="resumeEventHandler($event)">
18
- * </kendo-upload>
19
- * `
20
- * })
21
- * export class UploadComponent {
22
- * uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
23
- * uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint
24
- *
25
- * resumeEventHandler(ev: ResumeEvent) {
26
- * console.log('File resumed');
27
- * }
28
- * }
29
- * ```
30
- *
31
- */
32
- var ResumeEvent = /** @class */ (function () {
33
- /**
34
- * Constructs the event arguments for the `resume` event.
35
- * @param file - The file that is going to be resumed.
36
- */
37
- function ResumeEvent(file) {
38
- this.file = file;
39
- }
40
- return ResumeEvent;
41
- }());
42
- export { ResumeEvent };