@progress/kendo-angular-upload 13.4.0-develop.9 → 13.4.1-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/file-select.directive.mjs +17 -1
- package/esm2020/fileselect.component.mjs +19 -34
- package/esm2020/navigation.service.mjs +31 -60
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/upload-action-buttons.component.mjs +6 -24
- package/esm2020/upload.component.mjs +20 -22
- package/fesm2015/progress-kendo-angular-upload.mjs +95 -143
- package/fesm2020/progress-kendo-angular-upload.mjs +95 -143
- package/file-select.directive.d.ts +5 -1
- package/fileselect.component.d.ts +4 -8
- package/navigation.service.d.ts +5 -10
- package/package.json +7 -7
- package/rendering/upload-action-buttons.component.d.ts +3 -8
- package/schematics/ngAdd/index.js +3 -3
- package/upload.component.d.ts +4 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ElementRef
|
|
5
|
+
import { ElementRef } from '@angular/core';
|
|
6
6
|
import { UploadService } from '../upload.service';
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { NavigationService } from '../navigation.service';
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
14
|
-
export declare class UploadActionButtonsComponent
|
|
14
|
+
export declare class UploadActionButtonsComponent {
|
|
15
15
|
private uploadService;
|
|
16
16
|
private localization;
|
|
17
17
|
private navigation;
|
|
@@ -24,13 +24,8 @@ export declare class UploadActionButtonsComponent implements OnDestroy {
|
|
|
24
24
|
get actionButtonsStretchedClassName(): boolean;
|
|
25
25
|
get actionButtonsStartClassName(): boolean;
|
|
26
26
|
get actionButtonsCenterClassName(): boolean;
|
|
27
|
-
private actionSubscription;
|
|
28
|
-
private focusSubscription;
|
|
29
27
|
constructor(uploadService: UploadService, localization: LocalizationService, navigation: NavigationService);
|
|
30
|
-
|
|
31
|
-
onFocus(): void;
|
|
32
|
-
focusButton(button: string): void;
|
|
33
|
-
ngOnDestroy(): void;
|
|
28
|
+
onUploadButtonFocus(): void;
|
|
34
29
|
onUploadButtonClick(event?: any): void;
|
|
35
30
|
performUpload(): void;
|
|
36
31
|
onClearButtonClick(event?: any): void;
|
|
@@ -10,9 +10,9 @@ function default_1(options) {
|
|
|
10
10
|
], peerDependencies: {
|
|
11
11
|
// peer dep of the icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^1.0.0',
|
|
13
|
-
'@progress/kendo-angular-buttons': '13.4.
|
|
14
|
-
'@progress/kendo-angular-progressbar': '13.4.
|
|
15
|
-
'@progress/kendo-angular-popup': '13.4.
|
|
13
|
+
'@progress/kendo-angular-buttons': '13.4.1-develop.1',
|
|
14
|
+
'@progress/kendo-angular-progressbar': '13.4.1-develop.1',
|
|
15
|
+
'@progress/kendo-angular-popup': '13.4.1-develop.1',
|
|
16
16
|
} });
|
|
17
17
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
18
18
|
}
|
package/upload.component.d.ts
CHANGED