@select-org/select-post-builder 1.1.31 → 1.1.32

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.
@@ -17368,7 +17368,7 @@ const DialogOverlay = React.forwardRef(({ className, ...props }, ref) => /* @__P
17368
17368
  }
17369
17369
  ));
17370
17370
  const DialogContent = React.forwardRef(({ className, children, showCloseButton = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
17371
- /* @__PURE__ */ jsxRuntime.jsx("div", { "data-theme": "select-post-builder", children: /* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, { className: "backdrop-blur-sm" }) }),
17371
+ /* @__PURE__ */ jsxRuntime.jsx("div", { "data-theme": "select-post-builder", children: /* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, { className: "z-9999 backdrop-blur-sm" }) }),
17372
17372
  /* @__PURE__ */ jsxRuntime.jsx("div", { "data-theme": "select-post-builder", children: /* @__PURE__ */ jsxRuntime.jsxs(
17373
17373
  Content,
17374
17374
  {
@@ -17376,7 +17376,7 @@ const DialogContent = React.forwardRef(({ className, children, showCloseButton =
17376
17376
  "data-slot": "dialog-content",
17377
17377
  "data-theme": "select-post-builder",
17378
17378
  className: cn(
17379
- "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
17379
+ "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-99999 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
17380
17380
  className
17381
17381
  ),
17382
17382
  ...props,
@@ -594,6 +594,10 @@ body {
594
594
  z-index: 9999;
595
595
  }
596
596
 
597
+ [data-theme="select-post-builder"] .z-99999 {
598
+ z-index: 99999;
599
+ }
600
+
597
601
  [data-theme="select-post-builder"] .order-first {
598
602
  order: -9999;
599
603
  }
@@ -17338,7 +17338,7 @@ const DialogOverlay = forwardRef(({ className, ...props }, ref) => /* @__PURE__
17338
17338
  }
17339
17339
  ));
17340
17340
  const DialogContent = forwardRef(({ className, children, showCloseButton = true, ...props }, ref) => /* @__PURE__ */ jsxs(DialogPortal, { children: [
17341
- /* @__PURE__ */ jsx("div", { "data-theme": "select-post-builder", children: /* @__PURE__ */ jsx(DialogOverlay, { className: "backdrop-blur-sm" }) }),
17341
+ /* @__PURE__ */ jsx("div", { "data-theme": "select-post-builder", children: /* @__PURE__ */ jsx(DialogOverlay, { className: "z-9999 backdrop-blur-sm" }) }),
17342
17342
  /* @__PURE__ */ jsx("div", { "data-theme": "select-post-builder", children: /* @__PURE__ */ jsxs(
17343
17343
  Content,
17344
17344
  {
@@ -17346,7 +17346,7 @@ const DialogContent = forwardRef(({ className, children, showCloseButton = true,
17346
17346
  "data-slot": "dialog-content",
17347
17347
  "data-theme": "select-post-builder",
17348
17348
  className: cn(
17349
- "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
17349
+ "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-99999 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
17350
17350
  className
17351
17351
  ),
17352
17352
  ...props,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@select-org/select-post-builder",
3
- "version": "1.1.31",
3
+ "version": "1.1.32",
4
4
  "description": "A reusable, extensible Post Builder widget for the Select platform and beyond.",
5
5
  "main": "./dist/post-builder.cjs.js",
6
6
  "module": "./dist/post-builder.js",