@ctlyst.id/internal-ui 5.3.2 → 5.3.3
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 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -5010,6 +5010,7 @@ function SelectAsync({
|
|
5010
5010
|
...rest
|
5011
5011
|
}) {
|
5012
5012
|
const { colorMode } = (0, import_system8.useColorMode)();
|
5013
|
+
const { components } = rest;
|
5013
5014
|
return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
5014
5015
|
import_react_select_async_paginate.AsyncPaginate,
|
5015
5016
|
{
|
@@ -5018,11 +5019,13 @@ function SelectAsync({
|
|
5018
5019
|
components: {
|
5019
5020
|
DropdownIndicator,
|
5020
5021
|
ClearIndicator,
|
5021
|
-
NoOptionsMessage
|
5022
|
+
NoOptionsMessage,
|
5023
|
+
...components
|
5022
5024
|
},
|
5023
5025
|
...rest,
|
5024
5026
|
styles: { ...selectStyles(colorMode, isError), ...styles },
|
5025
|
-
theme: themeSelect
|
5027
|
+
theme: themeSelect,
|
5028
|
+
...rest
|
5026
5029
|
}
|
5027
5030
|
);
|
5028
5031
|
}
|