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