@sapphire-ion/framework 1.2.27 → 1.2.28
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 +33 -17
- package/fesm2022/sapphire-ion-framework.mjs +32 -16
- package/fesm2022/sapphire-ion-framework.mjs.map +1 -1
- package/lib/components/inputs/input-date/input-date.component.d.ts +1 -1
- package/lib/components/stepper/step/step.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ export declare class InputDateComponent extends CustomInput<string> {
|
|
|
32
32
|
SetValue(obj: string): void;
|
|
33
33
|
momentValue?: moment.Moment;
|
|
34
34
|
datetime: IonDatetime;
|
|
35
|
-
writeValue(obj
|
|
35
|
+
writeValue(obj?: string): void | Promise<void>;
|
|
36
36
|
popover: SIonPopoverComponent;
|
|
37
37
|
modal: IonModal;
|
|
38
38
|
Present(event: MouseEvent): Promise<void>;
|
|
@@ -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
|
}
|