@primestyleai/tryon 4.8.3 → 4.8.5
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/dist/react/index.js +17 -1
- package/package.json +1 -1
package/dist/react/index.js
CHANGED
|
@@ -5733,7 +5733,23 @@ function BodyProfileView({
|
|
|
5733
5733
|
] })
|
|
5734
5734
|
] })
|
|
5735
5735
|
] }),
|
|
5736
|
-
/* @__PURE__ */ jsx("input", { ref: fileInputRef, type: "file", accept: "image/*", onChange: handlePhotoSelect, style: { display: "none" } })
|
|
5736
|
+
/* @__PURE__ */ jsx("input", { ref: fileInputRef, type: "file", accept: "image/*", onChange: handlePhotoSelect, style: { display: "none" } }),
|
|
5737
|
+
/* @__PURE__ */ jsxs("div", { className: "ps-bp-nav", children: [
|
|
5738
|
+
/* @__PURE__ */ jsxs("button", { className: "ps-bp-back-btn", onClick: handleBackStep, type: "button", children: [
|
|
5739
|
+
/* @__PURE__ */ jsx("span", { className: "ps-bp-back-arrow", children: "←" }),
|
|
5740
|
+
" ",
|
|
5741
|
+
t("Back")
|
|
5742
|
+
] }),
|
|
5743
|
+
/* @__PURE__ */ jsx(
|
|
5744
|
+
"button",
|
|
5745
|
+
{
|
|
5746
|
+
className: `ps-bp-next-btn${!photoPreview ? " ps-bp-btn-disabled" : ""}`,
|
|
5747
|
+
onClick: handleNext,
|
|
5748
|
+
type: "button",
|
|
5749
|
+
children: t("Analyze My Size")
|
|
5750
|
+
}
|
|
5751
|
+
)
|
|
5752
|
+
] })
|
|
5737
5753
|
] });
|
|
5738
5754
|
}
|
|
5739
5755
|
return /* @__PURE__ */ jsx("div", { className: "ps-bp-wrapper", children: /* @__PURE__ */ jsxs("div", { className: "ps-bp-layout", children: [
|