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/components.js
CHANGED
|
@@ -1824,7 +1824,7 @@ var FilterSelect = ({
|
|
|
1824
1824
|
children: selectedOption ? selectedOption.label : placeholder
|
|
1825
1825
|
}
|
|
1826
1826
|
) }),
|
|
1827
|
-
/* @__PURE__ */ jsxs(Menu.Dropdown, { children: [
|
|
1827
|
+
/* @__PURE__ */ jsxs(Menu.Dropdown, { style: { boxShadow: "0 0 10px 0 rgba(0, 0, 0, 0.1)" }, children: [
|
|
1828
1828
|
searchable && /* @__PURE__ */ jsx(
|
|
1829
1829
|
TextInput,
|
|
1830
1830
|
{
|
|
@@ -1836,7 +1836,7 @@ var FilterSelect = ({
|
|
|
1836
1836
|
onChange: (e) => setSearch(e.currentTarget.value)
|
|
1837
1837
|
}
|
|
1838
1838
|
),
|
|
1839
|
-
filteredOptions.map((option) => /* @__PURE__ */ jsx(
|
|
1839
|
+
/* @__PURE__ */ jsx(ScrollArea, { h: 240, scrollbars: "y", type: "always", children: filteredOptions.map((option) => /* @__PURE__ */ jsx(
|
|
1840
1840
|
Menu.Item,
|
|
1841
1841
|
{
|
|
1842
1842
|
leftSection: selectedOption?.value === option.value ? /* @__PURE__ */ jsx(Check, { size: 12 }) : null,
|
|
@@ -1846,7 +1846,7 @@ var FilterSelect = ({
|
|
|
1846
1846
|
children: option.label
|
|
1847
1847
|
},
|
|
1848
1848
|
option.value
|
|
1849
|
-
)),
|
|
1849
|
+
)) }),
|
|
1850
1850
|
searchable && filteredOptions.length === 0 && /* @__PURE__ */ jsx(Menu.Item, { disabled: true, children: "Sin resultados" })
|
|
1851
1851
|
] })
|
|
1852
1852
|
]
|