erp-pos-ecommerce-shared 0.2.12 → 0.2.13
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/components.js +3 -3
- package/dist/components.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6573,7 +6573,7 @@ var FilterSelect = ({
|
|
|
6573
6573
|
children: selectedOption ? selectedOption.label : placeholder
|
|
6574
6574
|
}
|
|
6575
6575
|
) }),
|
|
6576
|
-
/* @__PURE__ */ jsxs(Menu.Dropdown, { children: [
|
|
6576
|
+
/* @__PURE__ */ jsxs(Menu.Dropdown, { style: { boxShadow: "0 0 10px 0 rgba(0, 0, 0, 0.1)" }, children: [
|
|
6577
6577
|
searchable && /* @__PURE__ */ jsx(
|
|
6578
6578
|
TextInput,
|
|
6579
6579
|
{
|
|
@@ -6585,7 +6585,7 @@ var FilterSelect = ({
|
|
|
6585
6585
|
onChange: (e) => setSearch(e.currentTarget.value)
|
|
6586
6586
|
}
|
|
6587
6587
|
),
|
|
6588
|
-
filteredOptions.map((option) => /* @__PURE__ */ jsx(
|
|
6588
|
+
/* @__PURE__ */ jsx(ScrollArea, { h: 240, scrollbars: "y", type: "always", children: filteredOptions.map((option) => /* @__PURE__ */ jsx(
|
|
6589
6589
|
Menu.Item,
|
|
6590
6590
|
{
|
|
6591
6591
|
leftSection: selectedOption?.value === option.value ? /* @__PURE__ */ jsx(Check, { size: 12 }) : null,
|
|
@@ -6595,7 +6595,7 @@ var FilterSelect = ({
|
|
|
6595
6595
|
children: option.label
|
|
6596
6596
|
},
|
|
6597
6597
|
option.value
|
|
6598
|
-
)),
|
|
6598
|
+
)) }),
|
|
6599
6599
|
searchable && filteredOptions.length === 0 && /* @__PURE__ */ jsx(Menu.Item, { disabled: true, children: "Sin resultados" })
|
|
6600
6600
|
] })
|
|
6601
6601
|
]
|