@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.
- package/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/index.js +4 -2
- package/dist/index.mjs +4 -2
- package/package.json +1 -1
- package/src/components/Modal.tsx +2 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @lets-events/react@10.0.
|
|
2
|
+
> @lets-events/react@10.0.1 build
|
|
3
3
|
> tsup src/index.tsx --format esm,cjs --dts --external react
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
[34mCLI[39m Target: es6
|
|
9
9
|
[34mESM[39m Build start
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist\index.js [22m[32m273.
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
-
[32mESM[39m [1mdist\index.mjs [22m[32m265.
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m [1mdist\index.js [22m[32m273.34 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 216ms
|
|
13
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m265.72 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 217ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 4943ms
|
|
17
17
|
[32mDTS[39m [1mdist\index.d.mts [22m[32m326.97 KB[39m
|
|
18
18
|
[32mDTS[39m [1mdist\index.d.ts [22m[32m326.97 KB[39m
|
package/CHANGELOG.md
CHANGED
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
package/src/components/Modal.tsx
CHANGED
|
@@ -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", {
|