@ctlyst.id/internal-ui 5.3.2 → 5.3.4
Sign up to get free protection for your applications and to get access to all the features.
- 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.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,12 @@ function SelectAsync({
|
|
5018
5019
|
components: {
|
5019
5020
|
DropdownIndicator,
|
5020
5021
|
ClearIndicator,
|
5021
|
-
NoOptionsMessage
|
5022
|
+
NoOptionsMessage,
|
5023
|
+
...components
|
5022
5024
|
},
|
5023
|
-
...rest,
|
5024
5025
|
styles: { ...selectStyles(colorMode, isError), ...styles },
|
5025
|
-
theme: themeSelect
|
5026
|
+
theme: themeSelect,
|
5027
|
+
...rest
|
5026
5028
|
}
|
5027
5029
|
);
|
5028
5030
|
}
|