hazo_ui 2.4.1 → 2.4.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/index.cjs +12 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +12 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4624,14 +4624,16 @@ var CommandPopover = ({
|
|
|
4624
4624
|
ref: container_ref,
|
|
4625
4625
|
className: cn(
|
|
4626
4626
|
"cls_command_popover",
|
|
4627
|
-
"fixed
|
|
4627
|
+
"fixed",
|
|
4628
4628
|
"w-64 min-w-[200px] max-w-[300px]",
|
|
4629
4629
|
"rounded-md border bg-popover text-popover-foreground shadow-lg",
|
|
4630
4630
|
"animate-in fade-in-0 zoom-in-95"
|
|
4631
4631
|
),
|
|
4632
4632
|
style: {
|
|
4633
|
+
position: "fixed",
|
|
4633
4634
|
top: position.top,
|
|
4634
|
-
left: position.left
|
|
4635
|
+
left: position.left,
|
|
4636
|
+
zIndex: 9999
|
|
4635
4637
|
},
|
|
4636
4638
|
children: /* @__PURE__ */ jsxs(Command, { className: "rounded-md", children: [
|
|
4637
4639
|
query && /* @__PURE__ */ jsxs("div", { className: "px-3 py-2 text-xs text-muted-foreground border-b", children: [
|
|
@@ -5242,14 +5244,16 @@ var HazoUiTextbox = ({
|
|
|
5242
5244
|
ref: edit_popover_ref,
|
|
5243
5245
|
className: cn(
|
|
5244
5246
|
"cls_edit_popover",
|
|
5245
|
-
"fixed
|
|
5247
|
+
"fixed",
|
|
5246
5248
|
"w-64 min-w-[200px] max-w-[300px]",
|
|
5247
5249
|
"rounded-md border bg-popover text-popover-foreground shadow-lg",
|
|
5248
5250
|
"animate-in fade-in-0 zoom-in-95"
|
|
5249
5251
|
),
|
|
5250
5252
|
style: {
|
|
5253
|
+
position: "fixed",
|
|
5251
5254
|
top: edit_context.rect.y,
|
|
5252
|
-
left: edit_context.rect.x
|
|
5255
|
+
left: edit_context.rect.x,
|
|
5256
|
+
zIndex: 9999
|
|
5253
5257
|
},
|
|
5254
5258
|
children: /* @__PURE__ */ jsxs("div", { className: "py-1", children: [
|
|
5255
5259
|
/* @__PURE__ */ jsx("div", { className: "px-3 py-2 text-xs text-muted-foreground border-b", children: "Change command" }),
|
|
@@ -5784,14 +5788,16 @@ var HazoUiTextarea = ({
|
|
|
5784
5788
|
ref: edit_popover_ref,
|
|
5785
5789
|
className: cn(
|
|
5786
5790
|
"cls_edit_popover",
|
|
5787
|
-
"fixed
|
|
5791
|
+
"fixed",
|
|
5788
5792
|
"w-64 min-w-[200px] max-w-[300px]",
|
|
5789
5793
|
"rounded-md border bg-popover text-popover-foreground shadow-lg",
|
|
5790
5794
|
"animate-in fade-in-0 zoom-in-95"
|
|
5791
5795
|
),
|
|
5792
5796
|
style: {
|
|
5797
|
+
position: "fixed",
|
|
5793
5798
|
top: edit_context.rect.y,
|
|
5794
|
-
left: edit_context.rect.x
|
|
5799
|
+
left: edit_context.rect.x,
|
|
5800
|
+
zIndex: 9999
|
|
5795
5801
|
},
|
|
5796
5802
|
children: /* @__PURE__ */ jsxs("div", { className: "py-1", children: [
|
|
5797
5803
|
/* @__PURE__ */ jsx("div", { className: "px-3 py-2 text-xs text-muted-foreground border-b", children: "Change command" }),
|