@graphcommerce/next-ui 8.0.3 → 8.0.4-canary.0
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.4-canary.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2228](https://github.com/graphcommerce-org/graphcommerce/pull/2228) [`0c0cacb`](https://github.com/graphcommerce-org/graphcommerce/commit/0c0cacb8725f0a626ea5d3acf154d83c433c3eb7) - apply correct type for the inert property
|
|
8
|
+
([@carlocarels90](https://github.com/carlocarels90))
|
|
9
|
+
|
|
3
10
|
## 8.0.3
|
|
4
11
|
|
|
5
12
|
## 8.0.3-canary.6
|
|
@@ -363,7 +363,7 @@ export function OverlayBase(incomingProps: LayoutOverlayBaseProps) {
|
|
|
363
363
|
return (
|
|
364
364
|
<>
|
|
365
365
|
<MotionDiv
|
|
366
|
-
inert={active ? undefined :
|
|
366
|
+
inert={active ? undefined : true}
|
|
367
367
|
className={classes.backdrop}
|
|
368
368
|
style={{ opacity: positions.open.visible }}
|
|
369
369
|
sx={[
|
|
@@ -385,7 +385,7 @@ export function OverlayBase(incomingProps: LayoutOverlayBaseProps) {
|
|
|
385
385
|
]}
|
|
386
386
|
/>
|
|
387
387
|
<Scroller
|
|
388
|
-
inert={active ? undefined :
|
|
388
|
+
inert={active ? undefined : true}
|
|
389
389
|
className={`${classes.scroller} ${className ?? ''}`}
|
|
390
390
|
grid={false}
|
|
391
391
|
onClick={onClickAway}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "8.0.
|
|
5
|
+
"version": "8.0.4-canary.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"typescript": "5.3.3"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
29
|
-
"@graphcommerce/framer-next-pages": "^8.0.
|
|
30
|
-
"@graphcommerce/framer-scroller": "^8.0.
|
|
31
|
-
"@graphcommerce/framer-utils": "^8.0.
|
|
32
|
-
"@graphcommerce/image": "^8.0.
|
|
33
|
-
"@graphcommerce/lingui-next": "^8.0.
|
|
34
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
35
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
28
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.4-canary.0",
|
|
29
|
+
"@graphcommerce/framer-next-pages": "^8.0.4-canary.0",
|
|
30
|
+
"@graphcommerce/framer-scroller": "^8.0.4-canary.0",
|
|
31
|
+
"@graphcommerce/framer-utils": "^8.0.4-canary.0",
|
|
32
|
+
"@graphcommerce/image": "^8.0.4-canary.0",
|
|
33
|
+
"@graphcommerce/lingui-next": "^8.0.4-canary.0",
|
|
34
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.4-canary.0",
|
|
35
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.4-canary.0",
|
|
36
36
|
"@lingui/core": "^4.2.1",
|
|
37
37
|
"@lingui/macro": "^4.2.1",
|
|
38
38
|
"@lingui/react": "^4.2.1",
|