@graphcommerce/next-ui 9.0.0-canary.89 → 9.0.0-canary.93
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,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.0.0-canary.93
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2398](https://github.com/graphcommerce-org/graphcommerce/pull/2398) [`557171b`](https://github.com/graphcommerce-org/graphcommerce/commit/557171b7f5e9aa3d16205e53670082a90550ef1d) - Exclude ‘disableBackNavigation’ prop from LinkOrButton in LayoutHeaderBack. ([@carlocarels90](https://github.com/carlocarels90))
|
|
8
|
+
|
|
9
|
+
## 9.0.0-canary.92
|
|
10
|
+
|
|
11
|
+
## 9.0.0-canary.91
|
|
12
|
+
|
|
13
|
+
## 9.0.0-canary.90
|
|
14
|
+
|
|
3
15
|
## 9.0.0-canary.89
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -43,7 +43,7 @@ const buttonSx: SxProps<Theme> = (theme) => ({
|
|
|
43
43
|
})
|
|
44
44
|
|
|
45
45
|
export function LayoutHeaderBack(props: BackProps) {
|
|
46
|
-
const { disableBackNavigation = false } = props
|
|
46
|
+
const { disableBackNavigation = false, ...rest } = props
|
|
47
47
|
const router = useRouter()
|
|
48
48
|
const path = router.asPath.split('?')[0]
|
|
49
49
|
const up = useUp()
|
|
@@ -68,7 +68,7 @@ export function LayoutHeaderBack(props: BackProps) {
|
|
|
68
68
|
color='inherit'
|
|
69
69
|
startIcon={backIcon}
|
|
70
70
|
aria-label={label}
|
|
71
|
-
{...
|
|
71
|
+
{...rest}
|
|
72
72
|
>
|
|
73
73
|
<Box component='span' sx={{ display: { xs: 'none', md: 'inline' } }}>
|
|
74
74
|
{label}
|
|
@@ -85,7 +85,7 @@ export function LayoutHeaderBack(props: BackProps) {
|
|
|
85
85
|
startIcon={backIcon}
|
|
86
86
|
aria-label={up.title}
|
|
87
87
|
color='inherit'
|
|
88
|
-
{...
|
|
88
|
+
{...rest}
|
|
89
89
|
>
|
|
90
90
|
<Box component='span' sx={{ display: { xs: 'none', md: 'inline' } }}>
|
|
91
91
|
{up.title}
|
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": "9.0.0-canary.
|
|
5
|
+
"version": "9.0.0-canary.93",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"typescript": "5.5.3"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
|
30
|
-
"@graphcommerce/framer-next-pages": "^9.0.0-canary.
|
|
31
|
-
"@graphcommerce/framer-scroller": "^9.0.0-canary.
|
|
32
|
-
"@graphcommerce/framer-utils": "^9.0.0-canary.
|
|
33
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
|
34
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
|
35
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
|
29
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.93",
|
|
30
|
+
"@graphcommerce/framer-next-pages": "^9.0.0-canary.93",
|
|
31
|
+
"@graphcommerce/framer-scroller": "^9.0.0-canary.93",
|
|
32
|
+
"@graphcommerce/framer-utils": "^9.0.0-canary.93",
|
|
33
|
+
"@graphcommerce/image": "^9.0.0-canary.93",
|
|
34
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.93",
|
|
35
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.93",
|
|
36
36
|
"@lingui/core": "^4.2.1",
|
|
37
37
|
"@lingui/macro": "^4.2.1",
|
|
38
38
|
"@lingui/react": "^4.2.1",
|