@primestyleai/tryon 5.9.0 → 5.10.0

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.
@@ -0,0 +1,22 @@
1
+ import type { TranslateFn } from "../../i18n";
2
+ import type { Profile } from "../types";
3
+ /**
4
+ * Confirmation modal shown before the "Find My Best Fit" fast path fires a
5
+ * recommendation against the user's stored profile. The user sees exactly
6
+ * what measurements we're about to send (and in which unit system) so they
7
+ * can catch an imperial vs metric mismatch before the API call.
8
+ *
9
+ * - Proceed → parent runs `recommendForProduct`
10
+ * - Edit / close-X → parent returns to the basics step with the profile
11
+ * values intact, ready to be edited and resubmitted.
12
+ *
13
+ * Reuses the existing `.ps-confirm-overlay` / `.ps-confirm-modal` CSS already
14
+ * shipped for `DeleteConfirmModal` in `MySizingProfilesView` — same visual
15
+ * language, no new CSS class to maintain.
16
+ */
17
+ export declare function ConfirmMeasurementsModal({ profile, onProceed, onEdit, t, }: {
18
+ profile: Profile;
19
+ onProceed: () => void;
20
+ onEdit: () => void;
21
+ t: TranslateFn;
22
+ }): import("react/jsx-runtime").JSX.Element;