@firecms/ui 3.0.0-canary.83 → 3.0.0-canary.84
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 +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Select.tsx +1 -1
package/dist/index.umd.js
CHANGED
@@ -17078,7 +17078,7 @@
|
|
17078
17078
|
"flex-grow w-full max-w-full flex flex-row gap-2 items-center",
|
17079
17079
|
"overflow-visible",
|
17080
17080
|
size === "small" ? "h-[42px]" : "h-[64px]"
|
17081
|
-
), children: /* @__PURE__ */ jsxRuntime.jsxs(SelectPrimitive__namespace.Value, { placeholder, children: [
|
17081
|
+
), children: /* @__PURE__ */ jsxRuntime.jsxs(SelectPrimitive__namespace.Value, { placeholder, className: "w-full", children: [
|
17082
17082
|
renderValue && (hasValue && Array.isArray(value) ? value.map((v, i) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center gap-1 max-w-full", children: renderValue ? renderValue(v, i) : v }, v)) : typeof value === "string" ? renderValue ? renderValue(value, 0) : value : placeholder),
|
17083
17083
|
renderValues && (!hasValue || Array.isArray(value)) ? renderValues(value ?? []) : null,
|
17084
17084
|
!renderValue && !renderValues && hasValue
|