@lets-events/react 10.0.0 → 10.0.1

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @lets-events/react@10.0.0 build
2
+ > @lets-events/react@10.0.1 build
3
3
  > tsup src/index.tsx --format esm,cjs --dts --external react
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -8,11 +8,11 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- CJS dist\index.js 273.31 KB
12
- CJS ⚡️ Build success in 215ms
13
- ESM dist\index.mjs 265.68 KB
14
- ESM ⚡️ Build success in 215ms
11
+ CJS dist\index.js 273.34 KB
12
+ CJS ⚡️ Build success in 216ms
13
+ ESM dist\index.mjs 265.72 KB
14
+ ESM ⚡️ Build success in 217ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 4927ms
16
+ DTS ⚡️ Build success in 4943ms
17
17
  DTS dist\index.d.mts 326.97 KB
18
18
  DTS dist\index.d.ts 326.97 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 10.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fix modal overlay
8
+
3
9
  ## 10.0.0
4
10
 
5
11
  ### Major Changes
package/dist/index.js CHANGED
@@ -3622,13 +3622,15 @@ var ModalContentStyled = styled(import_radix_ui.Dialog.Content, {
3622
3622
  top: "50%",
3623
3623
  left: "50%",
3624
3624
  transform: "translate(-50%, -50%)",
3625
- backgroundColor: "$dark50"
3625
+ backgroundColor: "$dark50",
3626
+ zIndex: "10001"
3626
3627
  });
3627
3628
  var ModalOverlay = styled(import_radix_ui.Dialog.Overlay, {
3628
3629
  position: "fixed",
3629
3630
  inset: 0,
3630
3631
  opacity: 1,
3631
- backgroundColor: "rgba(0, 0, 0, .5)"
3632
+ backgroundColor: "rgba(0, 0, 0, .5)",
3633
+ zIndex: "10000"
3632
3634
  });
3633
3635
  var ModalHeaderStyled = styled("div", {
3634
3636
  borderBottom: "1px solid $neutral300",
package/dist/index.mjs CHANGED
@@ -3544,13 +3544,15 @@ var ModalContentStyled = styled(ModalRadix.Content, {
3544
3544
  top: "50%",
3545
3545
  left: "50%",
3546
3546
  transform: "translate(-50%, -50%)",
3547
- backgroundColor: "$dark50"
3547
+ backgroundColor: "$dark50",
3548
+ zIndex: "10001"
3548
3549
  });
3549
3550
  var ModalOverlay = styled(ModalRadix.Overlay, {
3550
3551
  position: "fixed",
3551
3552
  inset: 0,
3552
3553
  opacity: 1,
3553
- backgroundColor: "rgba(0, 0, 0, .5)"
3554
+ backgroundColor: "rgba(0, 0, 0, .5)",
3555
+ zIndex: "10000"
3554
3556
  });
3555
3557
  var ModalHeaderStyled = styled("div", {
3556
3558
  borderBottom: "1px solid $neutral300",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lets-events/react",
3
- "version": "10.0.0",
3
+ "version": "10.0.1",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -20,6 +20,7 @@ const ModalContentStyled = styled(ModalRadix.Content, {
20
20
  left: "50%",
21
21
  transform: "translate(-50%, -50%)",
22
22
  backgroundColor: "$dark50",
23
+ zIndex: '10001'
23
24
  });
24
25
 
25
26
  const ModalOverlay = styled(ModalRadix.Overlay, {
@@ -27,6 +28,7 @@ const ModalOverlay = styled(ModalRadix.Overlay, {
27
28
  inset: 0,
28
29
  opacity: 1,
29
30
  backgroundColor: "rgba(0, 0, 0, .5)",
31
+ zIndex: '10000'
30
32
  });
31
33
 
32
34
  const ModalHeaderStyled = styled("div", {