@firecms/ui 3.0.0-canary.124 → 3.0.0-canary.126
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/MultiSelect.tsx +0 -1
- 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
@@ -15563,7 +15563,6 @@
|
|
15563
15563
|
}, ref) => {
|
15564
15564
|
const [isPopoverOpen, setIsPopoverOpen] = React__namespace.useState(open ?? false);
|
15565
15565
|
const [selectedValues, setSelectedValues] = React__namespace.useState(value ?? []);
|
15566
|
-
console.log("selectedValues", selectedValues);
|
15567
15566
|
const onPopoverOpenChange = (open2) => {
|
15568
15567
|
setIsPopoverOpen(open2);
|
15569
15568
|
onOpenChange?.(open2);
|
@@ -16119,7 +16118,7 @@
|
|
16119
16118
|
SelectPrimitive__namespace.Content,
|
16120
16119
|
{
|
16121
16120
|
position,
|
16122
|
-
className: cls("z-50 relative overflow-hidden border bg-white dark:bg-gray-900 p-2 rounded-lg", defaultBorderMixin),
|
16121
|
+
className: cls(focusedDisabled, "z-50 relative overflow-hidden border bg-white dark:bg-gray-900 p-2 rounded-lg", defaultBorderMixin),
|
16123
16122
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
16124
16123
|
SelectPrimitive__namespace.Viewport,
|
16125
16124
|
{
|
@@ -16231,7 +16230,7 @@
|
|
16231
16230
|
open: displayed || open,
|
16232
16231
|
onOpenChange,
|
16233
16232
|
children: /* @__PURE__ */ jsxRuntime.jsxs(DialogPrimitive__namespace.Portal, { children: [
|
16234
|
-
/* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Title, { children: title ?? "Sheet" }),
|
16233
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Title, { autoFocus: true, tabIndex: 0, children: title ?? "Sheet" }),
|
16235
16234
|
/* @__PURE__ */ jsxRuntime.jsx(
|
16236
16235
|
DialogPrimitive__namespace.Overlay,
|
16237
16236
|
{
|
@@ -16648,6 +16647,7 @@
|
|
16648
16647
|
tooltipStyle,
|
16649
16648
|
children,
|
16650
16649
|
asChild = false,
|
16650
|
+
container,
|
16651
16651
|
className,
|
16652
16652
|
style
|
16653
16653
|
}) => {
|
@@ -16657,7 +16657,7 @@
|
|
16657
16657
|
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
16658
|
return /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Provider, { delayDuration, children: /* @__PURE__ */ jsxRuntime.jsxs(TooltipPrimitive__namespace.Root, { open, onOpenChange, defaultOpen, children: [
|
16659
16659
|
trigger,
|
16660
|
-
/* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
16660
|
+
/* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { container, children: /* @__PURE__ */ jsxRuntime.jsx(
|
16661
16661
|
TooltipPrimitive__namespace.Content,
|
16662
16662
|
{
|
16663
16663
|
className: cls(
|