@primestyleai/tryon 5.5.9 → 5.5.11
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.
|
@@ -16,10 +16,14 @@ interface BasicsStepMobileProps {
|
|
|
16
16
|
switchToMetric: () => void;
|
|
17
17
|
switchToImperial: () => void;
|
|
18
18
|
onUploadPhoto: () => void;
|
|
19
|
-
/** Tab bar callback —
|
|
19
|
+
/** Tab bar callback — sets the parent step to "photo" */
|
|
20
20
|
onSwitchToScan: () => void;
|
|
21
|
+
/** Next button callback — advances the flow (parent owns handleNext) */
|
|
22
|
+
onNext: () => void;
|
|
23
|
+
/** Whether the Next button should be enabled */
|
|
24
|
+
canProceed: boolean;
|
|
21
25
|
error: string;
|
|
22
26
|
t: TranslateFn;
|
|
23
27
|
}
|
|
24
|
-
export declare function BasicsStepMobile({ hUnit, wUnit, isImperialMode, height, setHeight, heightFeet, setHeightFeet, heightInches, setHeightInches, weight, setWeight, age, setAge, switchToMetric, switchToImperial, onUploadPhoto, onSwitchToScan, error, t, }: BasicsStepMobileProps): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export declare function BasicsStepMobile({ hUnit, wUnit, isImperialMode, height, setHeight, heightFeet, setHeightFeet, heightInches, setHeightInches, weight, setWeight, age, setAge, switchToMetric, switchToImperial, onUploadPhoto, onSwitchToScan, onNext, canProceed, error, t, }: BasicsStepMobileProps): import("react/jsx-runtime").JSX.Element;
|
|
25
29
|
export {};
|