@atomsolution/sdk-merchant 1.5.9 → 1.6.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.
- package/dist/batch-product-creation.cjs +18 -12
- package/dist/batch-product-creation.cjs.map +1 -1
- package/dist/batch-product-creation.esm.js +18 -12
- package/dist/batch-product-creation.esm.js.map +1 -1
- package/dist/batch-product-creation.js +18 -12
- package/dist/batch-product-creation.js.map +1 -1
- package/dist/style.css +4 -0
- package/package.json +1 -1
|
@@ -26316,19 +26316,25 @@ function SheetDropdown({
|
|
|
26316
26316
|
]
|
|
26317
26317
|
}
|
|
26318
26318
|
),
|
|
26319
|
-
open && /* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
26320
|
-
"
|
|
26319
|
+
open && /* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
26320
|
+
"div",
|
|
26321
26321
|
{
|
|
26322
|
-
|
|
26323
|
-
|
|
26324
|
-
|
|
26325
|
-
|
|
26326
|
-
|
|
26327
|
-
|
|
26328
|
-
|
|
26329
|
-
|
|
26330
|
-
|
|
26331
|
-
|
|
26322
|
+
className: "\n absolute z-10 mt-2\n min-w-full\n w-max\n border border-[#E4E7EC]\n rounded-lg bg-white shadow\n max-h-60\n overflow-y-auto\n ",
|
|
26323
|
+
children: sheetNames.map((name) => /* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
26324
|
+
"button",
|
|
26325
|
+
{
|
|
26326
|
+
type: "button",
|
|
26327
|
+
className: "\n flex w-full\n px-4 py-2\n text-sm text-gray-700\n hover:bg-gray-100\n whitespace-nowrap\n ",
|
|
26328
|
+
onClick: () => {
|
|
26329
|
+
onSelect(name);
|
|
26330
|
+
setOpen(false);
|
|
26331
|
+
},
|
|
26332
|
+
children: name
|
|
26333
|
+
},
|
|
26334
|
+
name
|
|
26335
|
+
))
|
|
26336
|
+
}
|
|
26337
|
+
)
|
|
26332
26338
|
] });
|
|
26333
26339
|
}
|
|
26334
26340
|
const useMappingStore = create((set) => ({
|