@wallavi/widget 1.3.3 → 1.3.4

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.js CHANGED
@@ -860,7 +860,7 @@ function BubbleWidget({
860
860
  {
861
861
  ref: panelRef,
862
862
  "aria-hidden": !open,
863
- style: { display: open ? "block" : "none", position: "relative" },
863
+ style: { display: open ? "block" : "none", position: "relative", zIndex: 1 },
864
864
  children: [
865
865
  /* @__PURE__ */ jsxRuntime.jsx(
866
866
  "div",
package/dist/index.mjs CHANGED
@@ -834,7 +834,7 @@ function BubbleWidget({
834
834
  {
835
835
  ref: panelRef,
836
836
  "aria-hidden": !open,
837
- style: { display: open ? "block" : "none", position: "relative" },
837
+ style: { display: open ? "block" : "none", position: "relative", zIndex: 1 },
838
838
  children: [
839
839
  /* @__PURE__ */ jsx(
840
840
  "div",
package/package.json CHANGED
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "private": false,
35
35
  "types": "./dist/index.d.ts",
36
- "version": "1.3.3",
36
+ "version": "1.3.4",
37
37
  "scripts": {
38
38
  "build": "tsup",
39
39
  "typecheck": "tsc --noEmit"