@sapphire-ion/framework 1.2.46 → 1.2.48
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/esm2022/lib/components/default/default-table/default-table.component.mjs +3 -3
- package/esm2022/lib/components/inputs/input-file/download-button/download-button.component.mjs +6 -3
- package/esm2022/lib/components/inputs/input-textarea/input-textarea.component.mjs +32 -24
- package/esm2022/lib/services/web/storage.service.mjs +9 -6
- package/fesm2022/sapphire-ion-framework.mjs +46 -32
- package/fesm2022/sapphire-ion-framework.mjs.map +1 -1
- package/lib/components/inputs/input-file/download-button/download-button.component.d.ts +2 -1
- package/lib/components/inputs/input-textarea/input-textarea.component.d.ts +1 -0
- package/lib/components/stepper/step/step.component.d.ts +1 -1
- package/lib/services/web/storage.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ export declare class DownloadButtonComponent implements ControlValueAccessor {
|
|
|
18
18
|
configuration: InputFileConfiguration;
|
|
19
19
|
customLabel: boolean;
|
|
20
20
|
label: string;
|
|
21
|
+
fileName: string;
|
|
21
22
|
constructor(storageService: StorageService, elementRef: ElementRef, apiUrlProviderService: ApiUrlProviderService);
|
|
22
23
|
registerOnChange(fn: any): void;
|
|
23
24
|
registerOnTouched(fn: any): void;
|
|
@@ -35,5 +36,5 @@ export declare class DownloadButtonComponent implements ControlValueAccessor {
|
|
|
35
36
|
SetNotLoading(path: string): void;
|
|
36
37
|
isLoading(path: string): boolean;
|
|
37
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<DownloadButtonComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DownloadButtonComponent, "download-button", never, { "expand": { "alias": "expand"; "required": false; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "params": { "alias": "params"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "post": { "alias": "post"; "required": false; }; "configuration": { "alias": "configuration"; "required": false; }; "customLabel": { "alias": "customLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, { "value": "valueChange"; }, never, never, false, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DownloadButtonComponent, "download-button", never, { "expand": { "alias": "expand"; "required": false; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "params": { "alias": "params"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "post": { "alias": "post"; "required": false; }; "configuration": { "alias": "configuration"; "required": false; }; "customLabel": { "alias": "customLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "fileName": { "alias": "fileName"; "required": false; }; }, { "value": "valueChange"; }, never, never, false, never>;
|
|
39
40
|
}
|
|
@@ -9,6 +9,7 @@ export declare class InputTextareaComponent extends CustomInput<string> {
|
|
|
9
9
|
setFocus(event: MouseEvent | null): void;
|
|
10
10
|
constructor();
|
|
11
11
|
private resize;
|
|
12
|
+
private EncontraScroll;
|
|
12
13
|
onInput(): void;
|
|
13
14
|
writeValue(obj: string): void | Promise<void>;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaComponent, never>;
|
|
@@ -9,7 +9,7 @@ export declare class StepComponent implements OnInit {
|
|
|
9
9
|
get index(): number;
|
|
10
10
|
get fill(): boolean;
|
|
11
11
|
get selected(): boolean;
|
|
12
|
-
get _fill():
|
|
12
|
+
get _fill(): 1 | 0;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepComponent, never>;
|
|
14
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<StepComponent, "step", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["ion-icon, ion-text"], false, never>;
|
|
15
15
|
}
|
|
@@ -10,7 +10,7 @@ export declare class StorageService {
|
|
|
10
10
|
constructor(http: HttpClient, apiUrlProviderService: ApiUrlProviderService, genericService: GenericService);
|
|
11
11
|
private currentlyDownloading;
|
|
12
12
|
GetProgress(file: string): number;
|
|
13
|
-
StartDownload(file: string, params?: any, post?: boolean): Download;
|
|
13
|
+
StartDownload(file: string, params?: any, post?: boolean, fileName?: string | null): Download;
|
|
14
14
|
private HandleDownload;
|
|
15
15
|
static SanitizeFileName(v: string): string;
|
|
16
16
|
GetFile(fileUrl: string, params?: any, post?: boolean): Observable<HttpEvent<Blob>>;
|