@firecms/ui 3.0.0-canary.123 → 3.0.0-canary.125
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/components/Tooltip.d.ts +2 -1
- package/dist/index.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +4 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Select.tsx +4 -5
- package/src/components/Sheet.tsx +1 -1
- package/src/components/Tooltip.tsx +3 -1
package/dist/index.umd.js
CHANGED
@@ -16090,7 +16090,6 @@
|
|
16090
16090
|
placeholder,
|
16091
16091
|
className: "w-full",
|
16092
16092
|
children: [
|
16093
|
-
!hasValue && placeholder,
|
16094
16093
|
hasValue && value && renderValue ? renderValue(value) : placeholder,
|
16095
16094
|
hasValue && !renderValue && value
|
16096
16095
|
]
|
@@ -16120,7 +16119,7 @@
|
|
16120
16119
|
SelectPrimitive__namespace.Content,
|
16121
16120
|
{
|
16122
16121
|
position,
|
16123
|
-
className: cls("z-50 relative overflow-hidden border bg-white dark:bg-gray-900 p-2 rounded-lg", defaultBorderMixin),
|
16122
|
+
className: cls(focusedDisabled, "z-50 relative overflow-hidden border bg-white dark:bg-gray-900 p-2 rounded-lg", defaultBorderMixin),
|
16124
16123
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
16125
16124
|
SelectPrimitive__namespace.Viewport,
|
16126
16125
|
{
|
@@ -16232,7 +16231,7 @@
|
|
16232
16231
|
open: displayed || open,
|
16233
16232
|
onOpenChange,
|
16234
16233
|
children: /* @__PURE__ */ jsxRuntime.jsxs(DialogPrimitive__namespace.Portal, { children: [
|
16235
|
-
/* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Title, { children: title ?? "Sheet" }),
|
16234
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Title, { autoFocus: true, tabIndex: 0, children: title ?? "Sheet" }),
|
16236
16235
|
/* @__PURE__ */ jsxRuntime.jsx(
|
16237
16236
|
DialogPrimitive__namespace.Overlay,
|
16238
16237
|
{
|
@@ -16649,6 +16648,7 @@
|
|
16649
16648
|
tooltipStyle,
|
16650
16649
|
children,
|
16651
16650
|
asChild = false,
|
16651
|
+
container,
|
16652
16652
|
className,
|
16653
16653
|
style
|
16654
16654
|
}) => {
|
@@ -16658,7 +16658,7 @@
|
|
16658
16658
|
const trigger = asChild ? /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Trigger, { asChild: true, children }) : /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Trigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("div", { style, className, children }) });
|
16659
16659
|
return /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Provider, { delayDuration, children: /* @__PURE__ */ jsxRuntime.jsxs(TooltipPrimitive__namespace.Root, { open, onOpenChange, defaultOpen, children: [
|
16660
16660
|
trigger,
|
16661
|
-
/* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
16661
|
+
/* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { container, children: /* @__PURE__ */ jsxRuntime.jsx(
|
16662
16662
|
TooltipPrimitive__namespace.Content,
|
16663
16663
|
{
|
16664
16664
|
className: cls(
|