@overmap-ai/blocks 1.0.34-command-menu.0 → 1.0.34-command-menu.2
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/blocks.js +3 -2
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +3 -2
- package/dist/blocks.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/blocks.umd.cjs
CHANGED
|
@@ -1115,7 +1115,7 @@
|
|
|
1115
1115
|
}
|
|
1116
1116
|
}
|
|
1117
1117
|
);
|
|
1118
|
-
const commandMenuInputCva = classVarianceAuthority.cva(["outline-none", "w-full"], {
|
|
1118
|
+
const commandMenuInputCva = classVarianceAuthority.cva(["outline-none", "w-full", "placeholder-(--base-a9)"], {
|
|
1119
1119
|
variants: {
|
|
1120
1120
|
size: {
|
|
1121
1121
|
xs: ["h-12", "px-5.25", "text-base"],
|
|
@@ -1330,6 +1330,7 @@
|
|
|
1330
1330
|
onEscapeKeyDown,
|
|
1331
1331
|
onPointerDownOutside,
|
|
1332
1332
|
onInteractOutside,
|
|
1333
|
+
"data-floating-content": "",
|
|
1333
1334
|
asChild: true,
|
|
1334
1335
|
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1335
1336
|
cmdk.CommandRoot,
|
|
@@ -1452,7 +1453,7 @@
|
|
|
1452
1453
|
};
|
|
1453
1454
|
const CommandMenuOverlay = React.memo((props) => {
|
|
1454
1455
|
const { container, className, ...rest } = props;
|
|
1455
|
-
return /* @__PURE__ */ jsxRuntime.jsx(RadixDialog.DialogPortal, { container, children: /* @__PURE__ */ jsxRuntime.jsx(RadixDialog.DialogOverlay, { className: classVarianceAuthority.cx(className, commandMenuOverlayCva()), ...rest }) });
|
|
1456
|
+
return /* @__PURE__ */ jsxRuntime.jsx(RadixDialog.DialogPortal, { container, children: /* @__PURE__ */ jsxRuntime.jsx(RadixDialog.DialogOverlay, { className: classVarianceAuthority.cx(className, commandMenuOverlayCva()), "data-floating-content": "", ...rest }) });
|
|
1456
1457
|
});
|
|
1457
1458
|
CommandMenuOverlay.displayName = "CommandMenuOverlay";
|
|
1458
1459
|
const CommandMenuPage = (props) => {
|