@graphcommerce/next-ui 9.0.0-canary.93 → 9.0.0-canary.95

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.
@@ -14,7 +14,10 @@ export function BlogTag(props: BlogTagsProps) {
14
14
  href={`/${url}`}
15
15
  component={NextLink}
16
16
  label={title}
17
- sx={[{ marginRight: 3, borderRadius: 2 }, ...(Array.isArray(sx) ? sx : [sx])]}
17
+ sx={[
18
+ { marginRight: 3, borderRadius: 2, cursor: 'pointer' },
19
+ ...(Array.isArray(sx) ? sx : [sx]),
20
+ ]}
18
21
  />
19
22
  )
20
23
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.95
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2399](https://github.com/graphcommerce-org/graphcommerce/pull/2399) [`f028b4f`](https://github.com/graphcommerce-org/graphcommerce/commit/f028b4f28e5d84c20353495e74bf3a549c183538) - Hide the back button on desktop pages where breadcrumbs are displayed. ([@carlocarels90](https://github.com/carlocarels90))
8
+
9
+ ## 9.0.0-canary.94
10
+
3
11
  ## 9.0.0-canary.93
4
12
 
5
13
  ### Patch Changes
@@ -30,8 +30,8 @@ export type LayoutHeaderProps = FloatingProps &
30
30
 
31
31
  hideBackButton?: boolean
32
32
 
33
- hideSm?: boolean
34
- hideMd?: boolean
33
+ hideSm?: boolean | null
34
+ hideMd?: boolean | null
35
35
  }
36
36
 
37
37
  type ComponentStyleProps = {
@@ -101,8 +101,8 @@ export const LayoutHeader = React.memo<LayoutHeaderProps>((props) => {
101
101
  children: !!children,
102
102
  divider: !!divider,
103
103
  size,
104
- hideSm,
105
- hideMd,
104
+ hideSm: !!hideSm,
105
+ hideMd: !!hideMd,
106
106
  })
107
107
 
108
108
  return (
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.93",
5
+ "version": "9.0.0-canary.95",
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.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",
29
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.95",
30
+ "@graphcommerce/framer-next-pages": "^9.0.0-canary.95",
31
+ "@graphcommerce/framer-scroller": "^9.0.0-canary.95",
32
+ "@graphcommerce/framer-utils": "^9.0.0-canary.95",
33
+ "@graphcommerce/image": "^9.0.0-canary.95",
34
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.95",
35
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.95",
36
36
  "@lingui/core": "^4.2.1",
37
37
  "@lingui/macro": "^4.2.1",
38
38
  "@lingui/react": "^4.2.1",