@lets-events/react 12.10.0 → 12.10.2

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,6 +1,6 @@
1
1
 
2
2
 
3
- > @lets-events/react@12.10.0 build
3
+ > @lets-events/react@12.10.2 build
4
4
  > tsup src/index.tsx --format esm,cjs --dts --external react
5
5
 
6
6
  CLI Building entry: src/index.tsx
@@ -10,12 +10,12 @@
10
10
  CLI Target: es6
11
11
  ESM Build start
12
12
  CJS Build start
13
- CJS dist/index.js 426.36 KB
14
- CJS ⚡️ Build success in 382ms
15
- ESM dist/index.mjs 410.78 KB
16
- ESM ⚡️ Build success in 383ms
13
+ CJS dist/index.js 426.31 KB
14
+ CJS ⚡️ Build success in 356ms
15
+ ESM dist/index.mjs 410.72 KB
16
+ ESM ⚡️ Build success in 358ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 7532ms
18
+ DTS ⚡️ Build success in 6877ms
19
19
  DTS dist/index.d.mts 404.95 KB
20
20
  DTS dist/index.d.ts 404.95 KB
21
21
  ⠙
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 12.10.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Drawer width
8
+
9
+ ## 12.10.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Drawer Height
14
+
3
15
  ## 12.10.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.js CHANGED
@@ -8620,7 +8620,7 @@ var DrawerOverlayStyled = styled("div", {
8620
8620
  top: 0,
8621
8621
  right: 0,
8622
8622
  width: "100vw",
8623
- height: "100vh",
8623
+ height: "100dvh",
8624
8624
  background: "rgba(0, 0, 0, 0.4)",
8625
8625
  transition: "opacity 200ms ease",
8626
8626
  variants: {
@@ -8639,7 +8639,7 @@ var DrawerWrapper = styled("div", {
8639
8639
  position: "fixed",
8640
8640
  top: 0,
8641
8641
  right: 0,
8642
- height: "100vh",
8642
+ height: "100dvh",
8643
8643
  overflow: "hidden",
8644
8644
  variants: {
8645
8645
  open: {
@@ -8654,7 +8654,7 @@ var DrawerContainerStyled = styled("div", {
8654
8654
  position: "absolute",
8655
8655
  top: 0,
8656
8656
  right: 0,
8657
- height: "100vh",
8657
+ height: "100dvh",
8658
8658
  background: "$neutral50",
8659
8659
  display: "flex",
8660
8660
  flexDirection: "column",
@@ -8662,10 +8662,6 @@ var DrawerContainerStyled = styled("div", {
8662
8662
  overflowY: "auto",
8663
8663
  width: "100%",
8664
8664
  boxSizing: "border-box",
8665
- "@md": {
8666
- minWidth: "100vw",
8667
- maxWidth: "100vw"
8668
- },
8669
8665
  transition: "transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)",
8670
8666
  paddingBottom: "1.5rem",
8671
8667
  variants: {
package/dist/index.mjs CHANGED
@@ -8503,7 +8503,7 @@ var DrawerOverlayStyled = styled("div", {
8503
8503
  top: 0,
8504
8504
  right: 0,
8505
8505
  width: "100vw",
8506
- height: "100vh",
8506
+ height: "100dvh",
8507
8507
  background: "rgba(0, 0, 0, 0.4)",
8508
8508
  transition: "opacity 200ms ease",
8509
8509
  variants: {
@@ -8522,7 +8522,7 @@ var DrawerWrapper = styled("div", {
8522
8522
  position: "fixed",
8523
8523
  top: 0,
8524
8524
  right: 0,
8525
- height: "100vh",
8525
+ height: "100dvh",
8526
8526
  overflow: "hidden",
8527
8527
  variants: {
8528
8528
  open: {
@@ -8537,7 +8537,7 @@ var DrawerContainerStyled = styled("div", {
8537
8537
  position: "absolute",
8538
8538
  top: 0,
8539
8539
  right: 0,
8540
- height: "100vh",
8540
+ height: "100dvh",
8541
8541
  background: "$neutral50",
8542
8542
  display: "flex",
8543
8543
  flexDirection: "column",
@@ -8545,10 +8545,6 @@ var DrawerContainerStyled = styled("div", {
8545
8545
  overflowY: "auto",
8546
8546
  width: "100%",
8547
8547
  boxSizing: "border-box",
8548
- "@md": {
8549
- minWidth: "100vw",
8550
- maxWidth: "100vw"
8551
- },
8552
8548
  transition: "transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)",
8553
8549
  paddingBottom: "1.5rem",
8554
8550
  variants: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lets-events/react",
3
- "version": "12.10.0",
3
+ "version": "12.10.2",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -5,7 +5,7 @@ export const DrawerOverlayStyled = styled("div", {
5
5
  top: 0,
6
6
  right: 0,
7
7
  width: "100vw",
8
- height: "100vh",
8
+ height: "100dvh",
9
9
  background: "rgba(0, 0, 0, 0.4)",
10
10
 
11
11
  transition: "opacity 200ms ease",
@@ -27,7 +27,7 @@ export const DrawerWrapper = styled("div", {
27
27
  position: "fixed",
28
28
  top: 0,
29
29
  right: 0,
30
- height: "100vh",
30
+ height: "100dvh",
31
31
  overflow: "hidden",
32
32
 
33
33
  variants: {
@@ -44,7 +44,7 @@ export const DrawerContainerStyled = styled("div", {
44
44
  position: "absolute",
45
45
  top: 0,
46
46
  right: 0,
47
- height: "100vh",
47
+ height: "100dvh",
48
48
  background: "$neutral50",
49
49
  display: "flex",
50
50
  flexDirection: "column",
@@ -52,12 +52,6 @@ export const DrawerContainerStyled = styled("div", {
52
52
  overflowY: "auto",
53
53
  width: "100%",
54
54
  boxSizing: 'border-box',
55
-
56
- "@md": {
57
- minWidth: "100vw",
58
- maxWidth: "100vw",
59
- },
60
-
61
55
  transition: "transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)",
62
56
 
63
57
  paddingBottom: "1.5rem",