astrum-ui 0.1.11 → 0.1.13

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
@@ -704,6 +704,7 @@ var Select = React8.forwardRef(
704
704
  options,
705
705
  placeholder,
706
706
  className = "",
707
+ separator,
707
708
  id: idProp,
708
709
  value,
709
710
  defaultValue,
@@ -777,9 +778,10 @@ var Select = React8.forwardRef(
777
778
  /* @__PURE__ */ jsxs7(
778
779
  "div",
779
780
  {
780
- className: `astrum-select ${error ? "astrum-select--error" : ""} ${isOpen ? "astrum-select--open" : ""} ${className}`.trim(),
781
+ className: `astrum-select ${error ? "astrum-select--error" : ""} ${isOpen ? "astrum-select--open" : ""} ${separator != null ? "astrum-select--split" : ""} ${className}`.trim(),
781
782
  children: [
782
783
  /* @__PURE__ */ jsxs7("div", { className: "astrum-select__wrap", children: [
784
+ separator != null && /* @__PURE__ */ jsx8("div", { className: "astrum-select__separator", children: separator }),
783
785
  /* @__PURE__ */ jsxs7(
784
786
  "select",
785
787
  {