@sapphire-ion/framework 1.0.45 → 1.0.47
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-list/default-list.component.mjs +1 -1
- package/esm2022/lib/components/popover/sion-popover/sion-popover.component.mjs +3 -3
- package/esm2022/lib/services/web/storage.service.mjs +1 -1
- package/fesm2022/sapphire-ion-framework.mjs +2 -2
- package/fesm2022/sapphire-ion-framework.mjs.map +1 -1
- package/lib/components/default/default-list/default-list.component.d.ts +1 -1
- package/lib/components/stepper/step/step.component.d.ts +1 -1
- package/lib/services/web/storage.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { ActivatedRoute } from '@angular/router';
|
|
|
3
3
|
import { GenericService } from '../../../services/generic.service';
|
|
4
4
|
import { HttpService } from '../../../services/web/http.service';
|
|
5
5
|
import { List } from './list';
|
|
6
|
-
import { TableField } from '
|
|
6
|
+
import { TableField } from '../../../classes/inputs/table-field';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/** Componente de listagem padrão
|
|
9
9
|
* Tipo Generic deve ser um service HttpService
|
|
@@ -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
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
1
|
+
import { HttpClient, HttpEvent } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { ApiUrlProviderService } from './api-url-provider.service';
|
|
4
4
|
import { GenericService } from '../generic.service';
|
|
@@ -13,7 +13,7 @@ export declare class StorageService {
|
|
|
13
13
|
StartDownload(file: string, params?: any, post?: boolean): Download;
|
|
14
14
|
private HandleDownload;
|
|
15
15
|
static SanitizeFileName(v: any): string;
|
|
16
|
-
GetFile(fileUrl: string, params?: any, post?: boolean): Observable<
|
|
16
|
+
GetFile(fileUrl: string, params?: any, post?: boolean): Observable<HttpEvent<Blob>>;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
|
|
18
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
|
|
19
19
|
}
|