@firecms/ui 3.0.0-canary.149 → 3.0.0-canary.150

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.
@@ -37,6 +37,7 @@ interface MultiSelectProps {
37
37
  position?: "item-aligned" | "popper";
38
38
  endAdornment?: React.ReactNode;
39
39
  multiple?: boolean;
40
+ includeSelectAll?: boolean;
40
41
  includeClear?: boolean;
41
42
  inputRef?: React.RefObject<HTMLButtonElement>;
42
43
  padding?: boolean;
package/dist/index.es.js CHANGED
@@ -14773,6 +14773,7 @@ const MultiSelect = React.forwardRef(
14773
14773
  placeholder,
14774
14774
  modalPopover = true,
14775
14775
  includeClear = true,
14776
+ includeSelectAll = true,
14776
14777
  useChips = true,
14777
14778
  className,
14778
14779
  children,
@@ -14975,7 +14976,7 @@ const MultiSelect = React.forwardRef(
14975
14976
  /* @__PURE__ */ jsx(Separator, { orientation: "horizontal", className: "my-0" }),
14976
14977
  /* @__PURE__ */ jsxs(Command.List, { children: [
14977
14978
  /* @__PURE__ */ jsx(Command.Empty, { className: "px-4 py-2", children: "No results found." }),
14978
- /* @__PURE__ */ jsxs(Command.Group, { children: [
14979
+ includeSelectAll && /* @__PURE__ */ jsxs(Command.Group, { children: [
14979
14980
  /* @__PURE__ */ jsxs(
14980
14981
  Command.Item,
14981
14982
  {
@@ -16043,7 +16044,7 @@ function Tabs({
16043
16044
  children
16044
16045
  }) {
16045
16046
  return /* @__PURE__ */ jsx(TabsPrimitive.Root, { value, onValueChange, className, children: /* @__PURE__ */ jsx(TabsPrimitive.List, { className: cls(
16046
- "flex text-sm font-medium text-center text-surface-accent-800 dark:text-white max-w-full overflow-auto no-scrollbar",
16047
+ "flex text-sm font-medium text-center text-surface-accent-800 dark:text-white max-w-full overflow-auto no-scrollbar items-end",
16047
16048
  innerClassName
16048
16049
  ), children }) });
16049
16050
  }