@ctlyst.id/internal-ui 5.3.2 → 5.3.3

Sign up to get free protection for your applications and to get access to all the features.
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,13 @@ function SelectAsync({
4813
4814
  components: {
4814
4815
  DropdownIndicator,
4815
4816
  ClearIndicator,
4816
- NoOptionsMessage
4817
+ NoOptionsMessage,
4818
+ ...components
4817
4819
  },
4818
4820
  ...rest,
4819
4821
  styles: { ...selectStyles(colorMode, isError), ...styles },
4820
- theme: themeSelect
4822
+ theme: themeSelect,
4823
+ ...rest
4821
4824
  }
4822
4825
  );
4823
4826
  }