@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.js
CHANGED
|
@@ -1110,7 +1110,7 @@ const commandMenuListCva = cva(
|
|
|
1110
1110
|
}
|
|
1111
1111
|
}
|
|
1112
1112
|
);
|
|
1113
|
-
const commandMenuInputCva = cva(["outline-none", "w-full"], {
|
|
1113
|
+
const commandMenuInputCva = cva(["outline-none", "w-full", "placeholder-(--base-a9)"], {
|
|
1114
1114
|
variants: {
|
|
1115
1115
|
size: {
|
|
1116
1116
|
xs: ["h-12", "px-5.25", "text-base"],
|
|
@@ -1325,6 +1325,7 @@ const CommandMenuContent = memo((props) => {
|
|
|
1325
1325
|
onEscapeKeyDown,
|
|
1326
1326
|
onPointerDownOutside,
|
|
1327
1327
|
onInteractOutside,
|
|
1328
|
+
"data-floating-content": "",
|
|
1328
1329
|
asChild: true,
|
|
1329
1330
|
children: /* @__PURE__ */ jsxs(
|
|
1330
1331
|
CommandRoot,
|
|
@@ -1447,7 +1448,7 @@ const CommandMenuMultiSelectItem = (props) => {
|
|
|
1447
1448
|
};
|
|
1448
1449
|
const CommandMenuOverlay = memo((props) => {
|
|
1449
1450
|
const { container, className, ...rest } = props;
|
|
1450
|
-
return /* @__PURE__ */ jsx(DialogPortal, { container, children: /* @__PURE__ */ jsx(DialogOverlay$1, { className: cx(className, commandMenuOverlayCva()), ...rest }) });
|
|
1451
|
+
return /* @__PURE__ */ jsx(DialogPortal, { container, children: /* @__PURE__ */ jsx(DialogOverlay$1, { className: cx(className, commandMenuOverlayCva()), "data-floating-content": "", ...rest }) });
|
|
1451
1452
|
});
|
|
1452
1453
|
CommandMenuOverlay.displayName = "CommandMenuOverlay";
|
|
1453
1454
|
const CommandMenuPage = (props) => {
|