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 CHANGED
@@ -4683,14 +4683,16 @@ var CommandPopover = ({
4683
4683
  ref: container_ref,
4684
4684
  className: cn(
4685
4685
  "cls_command_popover",
4686
- "fixed z-[9999]",
4686
+ "fixed",
4687
4687
  "w-64 min-w-[200px] max-w-[300px]",
4688
4688
  "rounded-md border bg-popover text-popover-foreground shadow-lg",
4689
4689
  "animate-in fade-in-0 zoom-in-95"
4690
4690
  ),
4691
4691
  style: {
4692
+ position: "fixed",
4692
4693
  top: position.top,
4693
- left: position.left
4694
+ left: position.left,
4695
+ zIndex: 9999
4694
4696
  },
4695
4697
  children: /* @__PURE__ */ jsxRuntime.jsxs(Command, { className: "rounded-md", children: [
4696
4698
  query && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "px-3 py-2 text-xs text-muted-foreground border-b", children: [
@@ -5301,14 +5303,16 @@ var HazoUiTextbox = ({
5301
5303
  ref: edit_popover_ref,
5302
5304
  className: cn(
5303
5305
  "cls_edit_popover",
5304
- "fixed z-[9999]",
5306
+ "fixed",
5305
5307
  "w-64 min-w-[200px] max-w-[300px]",
5306
5308
  "rounded-md border bg-popover text-popover-foreground shadow-lg",
5307
5309
  "animate-in fade-in-0 zoom-in-95"
5308
5310
  ),
5309
5311
  style: {
5312
+ position: "fixed",
5310
5313
  top: edit_context.rect.y,
5311
- left: edit_context.rect.x
5314
+ left: edit_context.rect.x,
5315
+ zIndex: 9999
5312
5316
  },
5313
5317
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "py-1", children: [
5314
5318
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "px-3 py-2 text-xs text-muted-foreground border-b", children: "Change command" }),
@@ -5843,14 +5847,16 @@ var HazoUiTextarea = ({
5843
5847
  ref: edit_popover_ref,
5844
5848
  className: cn(
5845
5849
  "cls_edit_popover",
5846
- "fixed z-[9999]",
5850
+ "fixed",
5847
5851
  "w-64 min-w-[200px] max-w-[300px]",
5848
5852
  "rounded-md border bg-popover text-popover-foreground shadow-lg",
5849
5853
  "animate-in fade-in-0 zoom-in-95"
5850
5854
  ),
5851
5855
  style: {
5856
+ position: "fixed",
5852
5857
  top: edit_context.rect.y,
5853
- left: edit_context.rect.x
5858
+ left: edit_context.rect.x,
5859
+ zIndex: 9999
5854
5860
  },
5855
5861
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "py-1", children: [
5856
5862
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "px-3 py-2 text-xs text-muted-foreground border-b", children: "Change command" }),