@firecms/ui 3.0.0-canary.124 → 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 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +4 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Select.tsx +4 -4
- package/src/components/Sheet.tsx +1 -1
- package/src/components/Tooltip.tsx +3 -1
package/dist/index.umd.js
CHANGED
@@ -16119,7 +16119,7 @@
|
|
16119
16119
|
SelectPrimitive__namespace.Content,
|
16120
16120
|
{
|
16121
16121
|
position,
|
16122
|
-
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),
|
16123
16123
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
16124
16124
|
SelectPrimitive__namespace.Viewport,
|
16125
16125
|
{
|
@@ -16231,7 +16231,7 @@
|
|
16231
16231
|
open: displayed || open,
|
16232
16232
|
onOpenChange,
|
16233
16233
|
children: /* @__PURE__ */ jsxRuntime.jsxs(DialogPrimitive__namespace.Portal, { children: [
|
16234
|
-
/* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Title, { children: title ?? "Sheet" }),
|
16234
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Title, { autoFocus: true, tabIndex: 0, children: title ?? "Sheet" }),
|
16235
16235
|
/* @__PURE__ */ jsxRuntime.jsx(
|
16236
16236
|
DialogPrimitive__namespace.Overlay,
|
16237
16237
|
{
|
@@ -16648,6 +16648,7 @@
|
|
16648
16648
|
tooltipStyle,
|
16649
16649
|
children,
|
16650
16650
|
asChild = false,
|
16651
|
+
container,
|
16651
16652
|
className,
|
16652
16653
|
style
|
16653
16654
|
}) => {
|
@@ -16657,7 +16658,7 @@
|
|
16657
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 }) });
|
16658
16659
|
return /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Provider, { delayDuration, children: /* @__PURE__ */ jsxRuntime.jsxs(TooltipPrimitive__namespace.Root, { open, onOpenChange, defaultOpen, children: [
|
16659
16660
|
trigger,
|
16660
|
-
/* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
16661
|
+
/* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { container, children: /* @__PURE__ */ jsxRuntime.jsx(
|
16661
16662
|
TooltipPrimitive__namespace.Content,
|
16662
16663
|
{
|
16663
16664
|
className: cls(
|