@blockle/blocks 0.8.7 → 0.8.8

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
@@ -530,7 +530,7 @@ const Dialog = ({
530
530
  if (!hasAnimationDuration(dialogRef.current)) {
531
531
  hide();
532
532
  }
533
- }, [open]);
533
+ }, [hide, open]);
534
534
  if (!visible) {
535
535
  return null;
536
536
  }
package/dist/index.mjs CHANGED
@@ -530,7 +530,7 @@ const Dialog = ({
530
530
  if (!hasAnimationDuration(dialogRef.current)) {
531
531
  hide();
532
532
  }
533
- }, [open]);
533
+ }, [hide, open]);
534
534
  if (!visible) {
535
535
  return null;
536
536
  }
@@ -14,7 +14,8 @@ const backdrop = css.style({
14
14
  height: "100%",
15
15
  left: 0,
16
16
  top: 0,
17
- overflow: "hidden"
17
+ overflow: "hidden",
18
+ zIndex: 1e3
18
19
  }
19
20
  }
20
21
  }, "backdrop");
@@ -13,7 +13,8 @@ const backdrop = style({
13
13
  height: "100%",
14
14
  left: 0,
15
15
  top: 0,
16
- overflow: "hidden"
16
+ overflow: "hidden",
17
+ zIndex: 1e3
17
18
  }
18
19
  }
19
20
  }, "backdrop");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockle/blocks",
3
- "version": "0.8.7",
3
+ "version": "0.8.8",
4
4
  "description": "Blocks design system",
5
5
  "repository": "git@github.com:Blockle/blocks.git",
6
6
  "license": "MIT",