@primestyleai/tryon 5.5.7 → 5.5.9
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.
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import type { TranslateFn } from "../../i18n";
|
|
2
2
|
interface BasicsStepMobileProps {
|
|
3
|
-
productImage: string;
|
|
4
|
-
productTitle: string;
|
|
5
3
|
hUnit: string;
|
|
6
4
|
wUnit: string;
|
|
7
5
|
isImperialMode: boolean;
|
|
@@ -18,8 +16,10 @@ interface BasicsStepMobileProps {
|
|
|
18
16
|
switchToMetric: () => void;
|
|
19
17
|
switchToImperial: () => void;
|
|
20
18
|
onUploadPhoto: () => void;
|
|
19
|
+
/** Tab bar callback — same as onUploadPhoto, sets the parent step to "photo" */
|
|
20
|
+
onSwitchToScan: () => void;
|
|
21
21
|
error: string;
|
|
22
22
|
t: TranslateFn;
|
|
23
23
|
}
|
|
24
|
-
export declare function BasicsStepMobile({
|
|
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;
|
|
25
25
|
export {};
|