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