@ctlyst.id/internal-ui 5.3.2 → 5.3.4
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/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -4805,6 +4805,7 @@ function SelectAsync({
|
|
4805
4805
|
...rest
|
4806
4806
|
}) {
|
4807
4807
|
const { colorMode } = useColorMode4();
|
4808
|
+
const { components } = rest;
|
4808
4809
|
return /* @__PURE__ */ jsx54(
|
4809
4810
|
AsyncPaginate,
|
4810
4811
|
{
|
@@ -4813,11 +4814,12 @@ function SelectAsync({
|
|
4813
4814
|
components: {
|
4814
4815
|
DropdownIndicator,
|
4815
4816
|
ClearIndicator,
|
4816
|
-
NoOptionsMessage
|
4817
|
+
NoOptionsMessage,
|
4818
|
+
...components
|
4817
4819
|
},
|
4818
|
-
...rest,
|
4819
4820
|
styles: { ...selectStyles(colorMode, isError), ...styles },
|
4820
|
-
theme: themeSelect
|
4821
|
+
theme: themeSelect,
|
4822
|
+
...rest
|
4821
4823
|
}
|
4822
4824
|
);
|
4823
4825
|
}
|