@sapphire-ion/framework 1.2.29 → 1.2.31
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/inputs/input-date/input-date.component.mjs +6 -6
- package/esm2022/lib/services/web/storage.service.mjs +6 -1
- package/fesm2022/sapphire-ion-framework.mjs +10 -5
- package/fesm2022/sapphire-ion-framework.mjs.map +1 -1
- package/lib/components/stepper/step/step.component.d.ts +1 -1
- package/lib/services/web/storage.service.d.ts +1 -0
- package/package.json +1 -1
- package/themes/components/inputs/input-date/input-date.component.scss +5 -0
|
@@ -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
|
}
|
|
@@ -23,6 +23,7 @@ export declare class StorageService {
|
|
|
23
23
|
* lista de respostas dos arquivos, como promise, quando todos estiverem completos ou deram erro, é retornada
|
|
24
24
|
*/
|
|
25
25
|
GetBlobBatchLiveResponse(lstFiles: string[], onUpdate: (totalProgress: number, lstResponse?: LiveResponse[], eventType?: HttpEventType) => void): Promise<LiveResponse[]>;
|
|
26
|
+
GetBlobLiveResponse(file: string, onUpdate: (progress: number, response?: LiveResponse, eventType?: HttpEventType) => void): Promise<LiveResponse>;
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
|
|
27
28
|
static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
|
|
28
29
|
}
|
package/package.json
CHANGED