@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 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
  }