@graphcommerce/next-ui 9.0.0-canary.98 → 9.0.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/ActionCard/ActionCard.tsx +219 -203
- package/ActionCard/ActionCardAccordion.tsx +4 -2
- package/ActionCard/ActionCardLayout.tsx +3 -2
- package/ActionCard/ActionCardList.tsx +6 -5
- package/Blog/BlogAuthor/BlogAuthor.tsx +5 -4
- package/Blog/BlogContent/BlogContent.tsx +3 -2
- package/Blog/BlogHeader/BlogHeader.tsx +4 -3
- package/Blog/BlogList/BlogList.tsx +3 -3
- package/Blog/BlogListItem/BlogListItem.tsx +6 -5
- package/Blog/BlogTags/BlogTag.tsx +3 -2
- package/Blog/BlogTags/BlogTags.tsx +1 -1
- package/Breadcrumbs/Breadcrumbs.tsx +25 -19
- package/Breadcrumbs/BreadcrumbsList.tsx +3 -2
- package/Breadcrumbs/jsonLdBreadcrumb.tsx +1 -1
- package/Breadcrumbs/types.ts +1 -2
- package/Button/Button.tsx +2 -1
- package/Button/LinkOrButton.tsx +4 -2
- package/CHANGELOG.md +294 -1342
- package/ChipMenu/ChipMenu.tsx +3 -2
- package/Config.graphqls +28 -10
- package/Container/Container.tsx +90 -0
- package/ContainerWithHeader/ContainerWithHeader.tsx +2 -1
- package/Document/DocumentBodyEnd.tsx +1 -1
- package/Document/DocumentBodyStart.tsx +1 -1
- package/Document/DocumentHeadEnd.tsx +1 -1
- package/Document/DocumentHeadStart.tsx +1 -1
- package/Fab/Fab.tsx +15 -17
- package/FlagAvatar/FlagAvatar.tsx +2 -1
- package/Footer/Footer.tsx +14 -10
- package/Form/Form.tsx +2 -1
- package/Form/FormHeader.tsx +1 -1
- package/Form/FormRow.tsx +1 -1
- package/Form/InputCheckmark.tsx +2 -1
- package/FramerScroller/ItemScroller.tsx +5 -8
- package/FramerScroller/SidebarGallery.tsx +23 -30
- package/FramerScroller/SidebarSlider.tsx +8 -7
- package/FullPageMessage/FullPageMessage.tsx +2 -1
- package/IconHeader/IconHeader.tsx +5 -3
- package/IconSvg/IconSvg.tsx +8 -7
- package/Intl/DateTimeFormat/DateFormat.tsx +6 -4
- package/Intl/DateTimeFormat/DateTimeFormat.tsx +10 -14
- package/Intl/DateTimeFormat/TimeFormat.tsx +6 -4
- package/Intl/DateTimeFormat/index.ts +1 -0
- package/Intl/DateTimeFormat/useIntlDateTimeFormat.ts +13 -0
- package/Intl/DisplayNames/DisplayNames.tsx +5 -13
- package/Intl/DisplayNames/index.ts +1 -0
- package/Intl/DisplayNames/useIntlDisplayNames.ts +12 -0
- package/Intl/{ListFormat.tsx → ListFormat/ListFormat.tsx} +8 -13
- package/Intl/ListFormat/index.ts +2 -0
- package/Intl/ListFormat/useIntlListFormat.ts +15 -0
- package/Intl/NumberFormat/CurrencyFormat.tsx +4 -2
- package/Intl/NumberFormat/NumberFormat.tsx +15 -17
- package/Intl/NumberFormat/PercentFormat.tsx +6 -2
- package/Intl/NumberFormat/UnitFormat.tsx +5 -5
- package/Intl/NumberFormat/index.ts +1 -0
- package/Intl/NumberFormat/useIntlNumberFormat.ts +17 -0
- package/Intl/RelativeTimeFormat/RelativeTimeFormat.tsx +6 -13
- package/Intl/RelativeTimeFormat/RelativeToTimeFormat.tsx +4 -2
- package/Intl/RelativeTimeFormat/index.ts +1 -0
- package/Intl/RelativeTimeFormat/useIntlRelativeTimeFormat.ts +15 -0
- package/Intl/useIntlLocalesArgument.ts +16 -0
- package/Layout/components/LayoutHeader.tsx +7 -4
- package/Layout/components/LayoutHeaderBack.tsx +6 -4
- package/Layout/components/LayoutHeaderClose.tsx +1 -1
- package/Layout/components/LayoutHeaderContent.tsx +11 -12
- package/Layout/components/LayoutProvider.tsx +1 -1
- package/Layout/components/LayoutTitle.tsx +5 -3
- package/Layout/context/layoutContext.tsx +1 -1
- package/Layout/types.ts +1 -1
- package/LayoutDefault/components/LayoutDefault.tsx +12 -10
- package/LayoutOverlay/components/LayoutOverlay.tsx +3 -2
- package/LayoutOverlay/components/LayoutOverlayHeader.tsx +2 -1
- package/LayoutOverlay/test/LayoutOverlayDemo.tsx +4 -1
- package/LayoutParts/DesktopHeaderBadge.tsx +2 -1
- package/LayoutParts/DesktopNavBar.tsx +26 -22
- package/LayoutParts/DesktopNavBarItem.tsx +11 -7
- package/LayoutParts/Logo.tsx +5 -5
- package/LayoutParts/MenuFab.tsx +7 -13
- package/LayoutParts/MenuFabItem.tsx +6 -1
- package/LayoutParts/MenuFabSecondaryItem.tsx +11 -7
- package/LayoutParts/MobileTopRight.tsx +24 -0
- package/LayoutParts/PlaceholderFab.tsx +2 -1
- package/LayoutParts/StickyBelowHeader.tsx +2 -1
- package/LayoutParts/index.ts +1 -0
- package/LazyHydrate/LazyHydrate.tsx +18 -21
- package/MediaQuery/MediaQuery.tsx +111 -0
- package/MediaQuery/index.ts +1 -0
- package/Navigation/components/NavigationFab.tsx +3 -2
- package/Navigation/components/NavigationItem.tsx +3 -3
- package/Navigation/components/NavigationList.tsx +4 -3
- package/Navigation/components/NavigationOverlay.tsx +18 -11
- package/Navigation/components/NavigationProvider.tsx +9 -8
- package/Navigation/components/NavigationTitle.tsx +5 -5
- package/Navigation/hooks/useNavigation.ts +4 -2
- package/Overlay/components/Overlay.tsx +3 -2
- package/Overlay/components/OverlayBase.tsx +71 -30
- package/Overlay/components/OverlayContainer.tsx +2 -2
- package/Overlay/components/OverlayHeader.tsx +7 -4
- package/Overlay/components/OverlaySsr.tsx +2 -1
- package/Overlay/components/OverlayStickyBottom.tsx +2 -1
- package/Overlay/utils/variantsToScrollSnapType.ts +2 -2
- package/OverlayOrPopperChip/OverlayOrPopperChip.tsx +5 -12
- package/OverlayOrPopperChip/OverlayOrPopperPanel.tsx +3 -3
- package/OverlayOrPopperChip/OverlayPanel.tsx +13 -7
- package/OverlayOrPopperChip/OverlayPanelActions.tsx +2 -2
- package/OverlayOrPopperChip/PopperPanel.tsx +3 -2
- package/OverlayOrPopperChip/PopperPanelActions.tsx +2 -2
- package/OverlayOrPopperChip/types.ts +2 -2
- package/OverlayOrPopperChip/useHandleClickNotDrag.ts +3 -1
- package/Page/CssAndFramerMotionProvider.tsx +2 -1
- package/Page/types.ts +5 -5
- package/PageLoadIndicator/PageLoadIndicator.tsx +3 -2
- package/PageMeta/PageMeta.tsx +3 -2
- package/PageMeta/canonicalize.ts +7 -3
- package/Pagination/Pagination.tsx +4 -2
- package/Pagination/PaginationExtended.tsx +2 -9
- package/RenderType/RenderType.tsx +6 -0
- package/Row/ButtonLinkList/ButtonLinkList.tsx +4 -7
- package/Row/ButtonLinkList/ButtonLinkListItem.tsx +2 -1
- package/Row/ColumnOne/variant/VariantMessage.tsx +2 -4
- package/Row/ColumnOneBoxed/ColumnOneBoxed.tsx +4 -2
- package/Row/ColumnOneCentered/ColumnOneCentered.tsx +4 -2
- package/Row/ColumnThree/ColumnThree.tsx +6 -5
- package/Row/ColumnTwo/ColumnTwo.tsx +8 -7
- package/Row/ColumnTwoSpread/ColumnTwoSpread.tsx +7 -5
- package/Row/ColumnTwoWithTop/ColumnTwoWithTop.tsx +5 -4
- package/Row/ContentLinks/ContentLinks.tsx +4 -3
- package/Row/HeroBanner/HeroBanner.tsx +3 -2
- package/Row/IconBlocks/IconBlock.tsx +3 -2
- package/Row/IconBlocks/IconBlocks.tsx +3 -2
- package/Row/ImageText/ImageText.tsx +3 -2
- package/Row/ImageTextBoxed/ImageTextBoxed.tsx +4 -3
- package/Row/ParagraphWithSidebarSlide/ParagraphWithSidebarSlide.tsx +3 -2
- package/Row/Quote/Quote.tsx +1 -1
- package/Row/Row.tsx +2 -1
- package/Row/RowLinks/RowLinks.tsx +36 -34
- package/Row/RowLinks/variant/VariantImageLabelSwiper.tsx +6 -2
- package/Row/RowLinks/variant/VariantInline.tsx +6 -2
- package/Row/RowLinks/variant/VariantLogoSwiper.tsx +2 -1
- package/Row/RowLinks/variant/VariantUsps.tsx +2 -1
- package/Row/SpecialBanner/SpecialBanner.tsx +3 -2
- package/SectionContainer/SectionContainer.tsx +3 -2
- package/SectionHeader/SectionHeader.tsx +2 -1
- package/Separator/Separator.tsx +3 -2
- package/Snackbar/DismissibleSnackbar.tsx +1 -1
- package/Snackbar/ErrorSnackbar.tsx +1 -1
- package/Snackbar/MessageSnackbarImpl.tsx +7 -16
- package/StarRatingField/StarRatingField.tsx +3 -2
- package/Stepper/Stepper.tsx +3 -2
- package/Styles/__tests__/spreadVal.test.ts +4 -4
- package/Styles/extendableComponent.ts +4 -3
- package/Styles/withEmotionCache.tsx +2 -2
- package/Styles/withTheme.tsx +4 -1
- package/TextInputNumber/TextInputNumber.tsx +5 -8
- package/Theme/DarkLightModeThemeProvider.tsx +10 -7
- package/Theme/MuiButton.ts +2 -1
- package/Theme/MuiChip.ts +2 -1
- package/Theme/MuiFab.ts +2 -1
- package/Theme/MuiSlider.ts +3 -3
- package/Theme/MuiSnackbar.ts +1 -1
- package/Theme/NextLink.tsx +35 -15
- package/Theme/createTheme.ts +6 -0
- package/Theme/index.ts +1 -0
- package/Theme/themeDefaults.ts +10 -10
- package/Theme/useContainerSizing.ts +20 -0
- package/TimeAgo/TimeAgo.tsx +3 -3
- package/ToggleButton/ToggleButton.tsx +6 -4
- package/ToggleButtonGroup/ToggleButtonGroup.tsx +99 -94
- package/UspList/UspList.tsx +3 -2
- package/UspList/UspListItem.tsx +3 -2
- package/hooks/memoDeep.ts +3 -2
- package/hooks/useDateTimeFormat.ts +3 -1
- package/hooks/useMatchMedia.ts +2 -1
- package/hooks/useMemoDeep.ts +2 -1
- package/hooks/useNumberFormat.ts +3 -1
- package/index.ts +3 -1
- package/package.json +17 -18
- package/utils/cookie.ts +4 -3
- package/utils/robots.ts +1 -1
- package/utils/sitemap.ts +3 -2
- package/utils/sxx.ts +16 -0
- package/AnimatedRow/AnimatedRow.tsx +0 -23
- package/docs/building-components.mdx +0 -3
- package/docs/components/ComponentBasic.tsx +0 -26
- package/docs/components/ComponentChild.tsx +0 -49
- package/docs/components/ComponentChildVariant.tsx +0 -55
- package/docs/components/ComponentChildVariantExtendable.tsx +0 -63
- package/docs/components/ComponentStylable.tsx +0 -32
- package/docs/pages/building-components.tsx +0 -62
package/CHANGELOG.md
CHANGED
|
@@ -1,72 +1,56 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.0
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [#2414](https://github.com/graphcommerce-org/graphcommerce/pull/2414) [`cd8e35b`](https://github.com/graphcommerce-org/graphcommerce/commit/cd8e35ba3dfafd34221b0875bf4f83c802955d66) - Added RelativeTimeFormat and RelativeToTimeFormat components to display relative dates in all locales. ([@Vignesh-M21](https://github.com/Vignesh-M21))
|
|
8
|
-
|
|
9
|
-
- [#2414](https://github.com/graphcommerce-org/graphcommerce/pull/2414) [`8b1a5a6`](https://github.com/graphcommerce-org/graphcommerce/commit/8b1a5a62a580cc8d08746cb19c4e5a4f52bd270c) - Date strings (12-12-2012) are not supported by older Safari browser versions. must be converted (12/12/2012) in order for it to function; otherwise, it will return NaN if we attempt to access the getTime() on an object. ([@Vignesh-M21](https://github.com/Vignesh-M21))
|
|
10
|
-
|
|
11
|
-
## 9.0.0-canary.97
|
|
12
|
-
|
|
13
|
-
## 9.0.0-canary.96
|
|
14
|
-
|
|
15
|
-
## 9.0.0-canary.95
|
|
16
|
-
|
|
17
|
-
### Patch Changes
|
|
18
|
-
|
|
19
|
-
- [#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))
|
|
20
|
-
|
|
21
|
-
## 9.0.0-canary.94
|
|
3
|
+
## 9.0.0
|
|
22
4
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Patch Changes
|
|
26
|
-
|
|
27
|
-
- [#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))
|
|
28
|
-
|
|
29
|
-
## 9.0.0-canary.92
|
|
30
|
-
|
|
31
|
-
## 9.0.0-canary.91
|
|
32
|
-
|
|
33
|
-
## 9.0.0-canary.90
|
|
34
|
-
|
|
35
|
-
## 9.0.0-canary.89
|
|
36
|
-
|
|
37
|
-
### Patch Changes
|
|
5
|
+
### Minor Changes
|
|
38
6
|
|
|
39
|
-
- [#
|
|
7
|
+
- [#2216](https://github.com/graphcommerce-org/graphcommerce/pull/2216) [`74eb239`](https://github.com/graphcommerce-org/graphcommerce/commit/74eb2393a64988649178d59f53b33d41fecdd769) - Added Intl components, deprecated `useNumberFormat` and `useDateTimeFormatter`, and replaced usage sites. New components and hooks:
|
|
40
8
|
|
|
41
|
-
|
|
9
|
+
- `<DateFormatter />` and `useDateFormatter`
|
|
10
|
+
- `<DateTimeFormat />` and `useDateTimeFormatter`
|
|
11
|
+
- `<TimeFormat />` and `useTimeFormatter`
|
|
12
|
+
- `<DisplayNames />` and `useDisplayNames`
|
|
13
|
+
- `<ListFormat />`
|
|
14
|
+
- `<CurrencyFormat />`
|
|
15
|
+
- `<NumberFormat />`
|
|
16
|
+
- `<PercentFormat />`
|
|
17
|
+
- `<UnitFormat />` ([@paales](https://github.com/paales))
|
|
42
18
|
|
|
43
|
-
|
|
19
|
+
- [#2405](https://github.com/graphcommerce-org/graphcommerce/pull/2405) [`39a2df4`](https://github.com/graphcommerce-org/graphcommerce/commit/39a2df46c26be390cd8d65200ab347e12b217f9e) - Added MediaQuery Component: Render (and hydrate) a Component based on a media query given.
|
|
44
20
|
|
|
45
|
-
|
|
21
|
+
```tsx
|
|
22
|
+
<MediaQuery query={(theme) => theme.breakpoints.up('md')}>
|
|
23
|
+
<MyExpensiveDesktopComponent>
|
|
24
|
+
Only visisble on desktop
|
|
25
|
+
</MyExpensiveDesktopComponent>
|
|
26
|
+
</MediaQuery>
|
|
27
|
+
```
|
|
46
28
|
|
|
47
|
-
|
|
29
|
+
When to use, replacement for:
|
|
48
30
|
|
|
49
|
-
|
|
31
|
+
1. useMediaQuery: When you are now using useMediaQuery to conditionally render content for mobile or desktop. a. Is very slow as it has to wait for the JS to initialize on pageload. b. Can cause CLS problems if the useMediaQuery is used to render elements in the viewport. c. Can cause LCP issues if useMediaQuery is used to render the LCP element. d. Causes TBT problems as a component always needs to be rerendered. (And bad TBT can cause INP problems) e. HTML isn't present in the DOM, which can cause SEO issues.
|
|
32
|
+
2. CSS Media query: When you are using CSS to show or hide content based on media queries. a. Causes TBT problems as both code paths need to be rendered. (And bad TBT can cause INP problems)
|
|
50
33
|
|
|
51
|
-
|
|
34
|
+
It wraps the component in a div that has 'display: contents;' when shown and 'display: none;' when hidden so it should not interfere with other styling. It conditionally hydrates the component if the query matches. If it doesn't match, it will NOT hydrate the component (and thus not execute the JS). ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
52
35
|
|
|
53
|
-
|
|
36
|
+
- [#2306](https://github.com/graphcommerce-org/graphcommerce/pull/2306) [`5e188e8`](https://github.com/graphcommerce-org/graphcommerce/commit/5e188e830dca4730c73830858f59a94e9d41ed12) - Added delete account functionality to the account section. Disabled by default and can be enabled through the config. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
54
37
|
|
|
55
|
-
|
|
38
|
+
- [#2209](https://github.com/graphcommerce-org/graphcommerce/pull/2209) [`2872cab`](https://github.com/graphcommerce-org/graphcommerce/commit/2872cabdca9ee4f0378fd411c6a633f71bb92f1f) - Removed `useMediaQuery` from the `<WishlistItemActionCard />` and `<CartItemActionCard />` and replaced it with a new responsive `size` prop. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
56
39
|
|
|
57
|
-
|
|
40
|
+
- [#2274](https://github.com/graphcommerce-org/graphcommerce/pull/2274) [`57131cf`](https://github.com/graphcommerce-org/graphcommerce/commit/57131cfcc43695cc3e22f28912feb2a8439620a7) - Created a `cssFlags` functionality to allow for conditional rendering based on stored flags in the localStorage. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
58
41
|
|
|
59
|
-
|
|
42
|
+
- [#2273](https://github.com/graphcommerce-org/graphcommerce/pull/2273) [`77955c5`](https://github.com/graphcommerce-org/graphcommerce/commit/77955c56ac8633ab1c5e0f3ddb25e3a87236e2bb) - Improve `<Breadcrumbs/>` on Category and Product pages. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
60
43
|
|
|
61
|
-
- [#
|
|
44
|
+
- [#2242](https://github.com/graphcommerce-org/graphcommerce/pull/2242) [`a4cce76`](https://github.com/graphcommerce-org/graphcommerce/commit/a4cce76ca37af2bec604e953ada4bb11bd91f55d) - Add option to show an extended version of the pagination component. Configurable via the `productListPaginationVariant` key in your `graphcommerce.config.js`.
|
|
62
45
|
|
|
63
|
-
|
|
46
|
+
- `COMPACT` means: `< Page X of Y >`
|
|
47
|
+
- `EXTENDED` means: `< 1 2 ... [5] ... 10 11 >` ([@FrankHarland](https://github.com/FrankHarland))
|
|
64
48
|
|
|
65
|
-
|
|
49
|
+
- [#2285](https://github.com/graphcommerce-org/graphcommerce/pull/2285) [`d5e7371`](https://github.com/graphcommerce-org/graphcommerce/commit/d5e73716990bf1d5a5ee40d88f9cd8266750ec66) - Resolve the overlay issue when navigating from the 'Forgot Password' page to the 'Sign In' page. ([@carlocarels90](https://github.com/carlocarels90))
|
|
66
50
|
|
|
67
|
-
- [#
|
|
51
|
+
- [#2274](https://github.com/graphcommerce-org/graphcommerce/pull/2274) [`4a24813`](https://github.com/graphcommerce-org/graphcommerce/commit/4a248130041484833768fe6018f91d05a59522de) - Add props to `<DarkLightModeThemeProvider />` to disable dark/light mode or to change the default ssr mode. Save user chosen mode in localStorage. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
68
52
|
|
|
69
|
-
|
|
53
|
+
- [#2315](https://github.com/graphcommerce-org/graphcommerce/pull/2315) [`fb9118e`](https://github.com/graphcommerce-org/graphcommerce/commit/fb9118ec819d1b507d4fbde04f2ca34ec01ecf49) - Add `guestOrder` functionality. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
70
54
|
|
|
71
55
|
### Patch Changes
|
|
72
56
|
|
|
@@ -74,1522 +58,554 @@
|
|
|
74
58
|
|
|
75
59
|
- [#2354](https://github.com/graphcommerce-org/graphcommerce/pull/2354) [`7c10458`](https://github.com/graphcommerce-org/graphcommerce/commit/7c104588ef96b9066b8f91835c29f957b08e4831) - Fix back button transparency on hover ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
76
60
|
|
|
77
|
-
- [#
|
|
78
|
-
|
|
79
|
-
## 9.0.0-canary.77
|
|
80
|
-
|
|
81
|
-
## 9.0.0-canary.76
|
|
82
|
-
|
|
83
|
-
## 9.0.0-canary.75
|
|
84
|
-
|
|
85
|
-
### Patch Changes
|
|
86
|
-
|
|
87
|
-
- [#2348](https://github.com/graphcommerce-org/graphcommerce/pull/2348) [`61b66ef`](https://github.com/graphcommerce-org/graphcommerce/commit/61b66efeab9b377c8daa322015d4b55cdf3db4c1) - Added a new OverlayHeader component to be used in combination with the Overlay component. ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
88
|
-
|
|
89
|
-
## 9.0.0-canary.74
|
|
90
|
-
|
|
91
|
-
## 9.0.0-canary.73
|
|
92
|
-
|
|
93
|
-
### Patch Changes
|
|
94
|
-
|
|
95
|
-
- [`4c24225`](https://github.com/graphcommerce-org/graphcommerce/commit/4c24225f9f998cd40e71da06528eb9323e9b6752) - Created a new `memoDeep` function that is a deep compare variant of `React.memo`. Performance seems to be pretty good, but should only be used as a result of a profiling session. ([@paales](https://github.com/paales))
|
|
61
|
+
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`43bd04a`](https://github.com/graphcommerce-org/graphcommerce/commit/43bd04a777c5800cc7e01bee1e123a5aad82f194) - Added `useIsSSR` hook that will properly resolve when the page is rendered on the server and on first render, but will return false when a component is rendered on the client directly. ([@FrankHarland](https://github.com/FrankHarland))
|
|
96
62
|
|
|
97
|
-
|
|
63
|
+
- [#2216](https://github.com/graphcommerce-org/graphcommerce/pull/2216) [`1895176`](https://github.com/graphcommerce-org/graphcommerce/commit/1895176b5776adcf588999ceab7edd6f53cff294) - USPS would be loaded after other queries, causing unnecessary slowdown. ([@paales](https://github.com/paales))
|
|
98
64
|
|
|
99
|
-
|
|
65
|
+
- [#2321](https://github.com/graphcommerce-org/graphcommerce/pull/2321) [`fa261d4`](https://github.com/graphcommerce-org/graphcommerce/commit/fa261d4ae600b46ae08c5ca7514163f2da54eead) - Added the possibility to place content before or after the scroller. ([@carlocarels90](https://github.com/carlocarels90))
|
|
100
66
|
|
|
101
|
-
|
|
67
|
+
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use `muiRegister`, which improves INP scores. ([@FrankHarland](https://github.com/FrankHarland))
|
|
102
68
|
|
|
103
|
-
|
|
69
|
+
- [#2369](https://github.com/graphcommerce-org/graphcommerce/pull/2369) [`8f1b806`](https://github.com/graphcommerce-org/graphcommerce/commit/8f1b806624c96f3151cda81e0553d3df7f1936dd) - Mark the menu item as active if router.asPath matches the href, or if the first URL segment matches, indicating it's the parent item. ([@carlocarels90](https://github.com/carlocarels90))
|
|
104
70
|
|
|
105
|
-
|
|
71
|
+
- [#2393](https://github.com/graphcommerce-org/graphcommerce/pull/2393) [`8946991`](https://github.com/graphcommerce-org/graphcommerce/commit/894699122c2748724acf439ce3ff14fa56a1e68c) - Solve an issue where the success page would show a back button which would go back to the payment page (which would be empty) ([@carlocarels90](https://github.com/carlocarels90))
|
|
106
72
|
|
|
107
|
-
|
|
73
|
+
- [#2348](https://github.com/graphcommerce-org/graphcommerce/pull/2348) [`61b66ef`](https://github.com/graphcommerce-org/graphcommerce/commit/61b66efeab9b377c8daa322015d4b55cdf3db4c1) - Added a new `<OverlayHeader />` component to be used in combination with the `<Overlay />` component. ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
108
74
|
|
|
109
|
-
|
|
75
|
+
- [#2356](https://github.com/graphcommerce-org/graphcommerce/pull/2356) [`d283901`](https://github.com/graphcommerce-org/graphcommerce/commit/d283901cb537c3e7bf6f5500e9f52f47f452cf10) - Loading an overlay page directly would animate in the overlay instead of directly showing it. ([@paales](https://github.com/paales))
|
|
110
76
|
|
|
111
|
-
|
|
77
|
+
- [#2216](https://github.com/graphcommerce-org/graphcommerce/pull/2216) [`012b865`](https://github.com/graphcommerce-org/graphcommerce/commit/012b86560d93e35dd7ca4a9469ed65e6fb83ead0) - Move arguments of `responsiveVal` around so the `minBreakpoint` can be given as third argument. ([@paales](https://github.com/paales))
|
|
112
78
|
|
|
113
|
-
|
|
79
|
+
- [#2361](https://github.com/graphcommerce-org/graphcommerce/pull/2361) [`c2560fe`](https://github.com/graphcommerce-org/graphcommerce/commit/c2560fef474ab6d0c0e2ac402ca4c860dba55ebc) - OverlayBase now supports disableAnimation and disableDrag ([@paales](https://github.com/paales))
|
|
114
80
|
|
|
115
|
-
|
|
81
|
+
- [#2223](https://github.com/graphcommerce-org/graphcommerce/pull/2223) [`d7459fe`](https://github.com/graphcommerce-org/graphcommerce/commit/d7459feb6e6902af09ab9ff766c0b3b1a74fb723) - Updated canonicalize helper for better multi domain support ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
116
82
|
|
|
117
|
-
|
|
83
|
+
- [#2314](https://github.com/graphcommerce-org/graphcommerce/pull/2314) [`59874b5`](https://github.com/graphcommerce-org/graphcommerce/commit/59874b572bda17905dc836554f9a3e31f393eb3e) - Solve issue where the page would reload during development when the first call to `/graphql` was made. ([@paales](https://github.com/paales))
|
|
118
84
|
|
|
119
|
-
|
|
85
|
+
- [#2418](https://github.com/graphcommerce-org/graphcommerce/pull/2418) [`2d65c0b`](https://github.com/graphcommerce-org/graphcommerce/commit/2d65c0b2625d5aeb82b34207e5addbff613e40f7) - Added locale prop support for all `<Intl/>` components and exposed all functionality as hooks. ([@paales](https://github.com/paales))
|
|
120
86
|
|
|
121
|
-
|
|
87
|
+
- [#2421](https://github.com/graphcommerce-org/graphcommerce/pull/2421) [`d500643`](https://github.com/graphcommerce-org/graphcommerce/commit/d500643138799b6db1610cb10a1d065d6219d8ea) - Resolve peer dependency issues so we get a clean install ([@paales](https://github.com/paales))
|
|
122
88
|
|
|
123
|
-
|
|
89
|
+
- [`4c24225`](https://github.com/graphcommerce-org/graphcommerce/commit/4c24225f9f998cd40e71da06528eb9323e9b6752) - Created a new `memoDeep` function that is a deep compare variant of `React.memo`. Performance seems to be pretty good, but should only be used as a result of a profiling session. ([@paales](https://github.com/paales))
|
|
124
90
|
|
|
125
|
-
|
|
91
|
+
- [#2380](https://github.com/graphcommerce-org/graphcommerce/pull/2380) [`0ca65f1`](https://github.com/graphcommerce-org/graphcommerce/commit/0ca65f11fbe288a221f2c5aa618abecf5b4b7bc9) - Solve an issue where internal full URL's would cause prefetching errors and would use a hard navigation. ([@paales](https://github.com/paales))
|
|
126
92
|
|
|
127
|
-
|
|
93
|
+
- [#2407](https://github.com/graphcommerce-org/graphcommerce/pull/2407) [`61f2af1`](https://github.com/graphcommerce-org/graphcommerce/commit/61f2af1158f2ef6908f7edd18f3f8cb2be196a9b) - Add maxWidth to ProductListLayouts ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
128
94
|
|
|
129
|
-
|
|
95
|
+
- [#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))
|
|
130
96
|
|
|
131
|
-
- [#
|
|
97
|
+
- [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`c57614d`](https://github.com/graphcommerce-org/graphcommerce/commit/c57614d47675cec2a0bf290371f11441495e10fe) - The `<ActionCardList />` can now recieve focus, allowing form submissions to scroll to the field. Focussed fields now are now highlighted even when there is an error. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
132
98
|
|
|
133
|
-
|
|
99
|
+
- [#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))
|
|
134
100
|
|
|
135
|
-
|
|
101
|
+
- [#2297](https://github.com/graphcommerce-org/graphcommerce/pull/2297) [`e41cb6f`](https://github.com/graphcommerce-org/graphcommerce/commit/e41cb6fcdde95629d29c03b1a700c6097f00c901) - Prevent gallery thumbnails from scrolling when opening or closing a layout overlay. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
136
102
|
|
|
137
|
-
|
|
103
|
+
- [#2354](https://github.com/graphcommerce-org/graphcommerce/pull/2354) [`1de9582`](https://github.com/graphcommerce-org/graphcommerce/commit/1de9582967f2a09cc7167a38ada4e50fe0d1b29a) - Properly align cart loading state (and other FullPageMessage usages) ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
138
104
|
|
|
139
|
-
|
|
105
|
+
- [#2216](https://github.com/graphcommerce-org/graphcommerce/pull/2216) [`223f16a`](https://github.com/graphcommerce-org/graphcommerce/commit/223f16a0e9a7718e52e81a4e2902471a8b78d35c) - The `<LazyHydrate />` component now accepts a `height` prop that allows deferring of rendering of the child component when initially rendered on the client. This improves performance. ([@paales](https://github.com/paales))
|
|
140
106
|
|
|
141
|
-
|
|
107
|
+
- [#2196](https://github.com/graphcommerce-org/graphcommerce/pull/2196) [`84c50e4`](https://github.com/graphcommerce-org/graphcommerce/commit/84c50e49a1a7f154d4a8f4045c37e773e20283ad) - Allow Lingui to use `linguiLocale` with country identifiers like `en-us`, it would always load `en` in this case. Introduced a new `useLocale` hook to use the correct locale string to use in Intl methods. ([@paales](https://github.com/paales))
|
|
142
108
|
|
|
143
|
-
|
|
109
|
+
- [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`cb8d2f0`](https://github.com/graphcommerce-org/graphcommerce/commit/cb8d2f0059d64242260e30ce34655868f204ef4c) - Made all component prop types exported ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
144
110
|
|
|
145
|
-
|
|
111
|
+
- [#2414](https://github.com/graphcommerce-org/graphcommerce/pull/2414) [`cd8e35b`](https://github.com/graphcommerce-org/graphcommerce/commit/cd8e35ba3dfafd34221b0875bf4f83c802955d66) - Added RelativeTimeFormat and RelativeToTimeFormat components to display relative dates in all locales. ([@Vignesh-M21](https://github.com/Vignesh-M21))
|
|
146
112
|
|
|
147
|
-
|
|
113
|
+
- [#2250](https://github.com/graphcommerce-org/graphcommerce/pull/2250) [`e56e836`](https://github.com/graphcommerce-org/graphcommerce/commit/e56e836f1fc463bf286c62668a4b65f320d5dc4a) - Make the back/up buttons translatable ([@carlocarels90](https://github.com/carlocarels90))
|
|
148
114
|
|
|
149
|
-
- [#
|
|
115
|
+
- [#2414](https://github.com/graphcommerce-org/graphcommerce/pull/2414) [`8b1a5a6`](https://github.com/graphcommerce-org/graphcommerce/commit/8b1a5a62a580cc8d08746cb19c4e5a4f52bd270c) - Date strings (12-12-2012) are not supported by older Safari browser versions. must be converted (12/12/2012) in order for it to function; otherwise, it will return NaN if we attempt to access the getTime() on an object. ([@Vignesh-M21](https://github.com/Vignesh-M21))
|
|
150
116
|
|
|
151
|
-
|
|
117
|
+
- [#2418](https://github.com/graphcommerce-org/graphcommerce/pull/2418) [`f35505c`](https://github.com/graphcommerce-org/graphcommerce/commit/f35505c618283c9de6a0db5b3080655c6825da17) - MediaQuery component now accepts a display prop to not always render with display contents. Implement the MediaQuery component for the DesktopNavBar and filter page for StickyBelowHeader and ProductFiltersPro sidebar ([@paales](https://github.com/paales))
|
|
152
118
|
|
|
153
|
-
|
|
119
|
+
- [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`444e446`](https://github.com/graphcommerce-org/graphcommerce/commit/444e446a218cc9da3defb940a6d5cce0229ff845) - Added clear upgrade instructions for `linguiLocale`. ([@paales](https://github.com/paales))
|
|
154
120
|
|
|
155
121
|
- [#2317](https://github.com/graphcommerce-org/graphcommerce/pull/2317) [`6c173c7`](https://github.com/graphcommerce-org/graphcommerce/commit/6c173c7bba601413cc5e1c9cf0595b8ec262fb92) - Added new plugin insertion points: `<DocumentHeadStart/>`, `<DocumentHeadEnd/>`, `<DocumentBodyEnd/>`, `<DocumentBodyStart/>` for the \_document.app to allow creating plugins for those locations to insert scripts etc. ([@paales](https://github.com/paales))
|
|
156
122
|
|
|
157
|
-
|
|
123
|
+
- [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`49937fd`](https://github.com/graphcommerce-org/graphcommerce/commit/49937fd765338e25899d427ee4d799fa7978faeb) - Allow changing various props for internal components ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
158
124
|
|
|
159
|
-
##
|
|
160
|
-
|
|
161
|
-
### Minor Changes
|
|
162
|
-
|
|
163
|
-
- [#2315](https://github.com/graphcommerce-org/graphcommerce/pull/2315) [`fb9118e`](https://github.com/graphcommerce-org/graphcommerce/commit/fb9118ec819d1b507d4fbde04f2ca34ec01ecf49) - Add guestOrder functionality, remove `size: 'max'` from getStaticProps ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
125
|
+
## 9.0.0-canary.118
|
|
164
126
|
|
|
165
|
-
##
|
|
127
|
+
## 9.0.0-canary.117
|
|
166
128
|
|
|
167
129
|
### Patch Changes
|
|
168
130
|
|
|
169
|
-
- [#
|
|
170
|
-
|
|
171
|
-
## 8.1.0-canary.45
|
|
131
|
+
- [#2361](https://github.com/graphcommerce-org/graphcommerce/pull/2361) [`c2560fe`](https://github.com/graphcommerce-org/graphcommerce/commit/c2560fef474ab6d0c0e2ac402ca4c860dba55ebc) - OverlayBase now supports disableAnimation and disableDrag ([@paales](https://github.com/paales))
|
|
172
132
|
|
|
173
|
-
|
|
133
|
+
## 9.0.0-canary.116
|
|
174
134
|
|
|
175
|
-
|
|
135
|
+
## 9.0.0-canary.115
|
|
176
136
|
|
|
177
|
-
|
|
137
|
+
## 9.0.0-canary.114
|
|
178
138
|
|
|
179
|
-
|
|
139
|
+
## 9.0.0-canary.113
|
|
180
140
|
|
|
181
|
-
|
|
141
|
+
## 9.0.0-canary.112
|
|
182
142
|
|
|
183
|
-
##
|
|
143
|
+
## 9.0.0-canary.111
|
|
184
144
|
|
|
185
|
-
##
|
|
145
|
+
## 9.0.0-canary.110
|
|
186
146
|
|
|
187
|
-
##
|
|
147
|
+
## 9.0.0-canary.109
|
|
188
148
|
|
|
189
|
-
##
|
|
149
|
+
## 9.0.0-canary.108
|
|
190
150
|
|
|
191
151
|
### Patch Changes
|
|
192
152
|
|
|
193
|
-
- [#
|
|
194
|
-
|
|
195
|
-
## 8.1.0-canary.40
|
|
196
|
-
|
|
197
|
-
### Minor Changes
|
|
198
|
-
|
|
199
|
-
- [#2306](https://github.com/graphcommerce-org/graphcommerce/pull/2306) [`5e188e8`](https://github.com/graphcommerce-org/graphcommerce/commit/5e188e830dca4730c73830858f59a94e9d41ed12) - Add delete account functionality to the account section. Disabled by default and can be enabled through the config. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
200
|
-
|
|
201
|
-
## 8.1.0-canary.39
|
|
202
|
-
|
|
203
|
-
## 8.1.0-canary.38
|
|
153
|
+
- [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`cb8d2f0`](https://github.com/graphcommerce-org/graphcommerce/commit/cb8d2f0059d64242260e30ce34655868f204ef4c) - Made all component prop types exported ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
204
154
|
|
|
205
|
-
|
|
155
|
+
- [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`49937fd`](https://github.com/graphcommerce-org/graphcommerce/commit/49937fd765338e25899d427ee4d799fa7978faeb) - Allow changing various props for internal components ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
206
156
|
|
|
207
|
-
##
|
|
157
|
+
## 9.0.0-canary.107
|
|
208
158
|
|
|
209
|
-
##
|
|
159
|
+
## 9.0.0-canary.106
|
|
210
160
|
|
|
211
|
-
##
|
|
161
|
+
## 9.0.0-canary.105
|
|
212
162
|
|
|
213
|
-
##
|
|
163
|
+
## 9.0.0-canary.104
|
|
214
164
|
|
|
215
|
-
##
|
|
216
|
-
|
|
217
|
-
## 8.1.0-canary.31
|
|
165
|
+
## 9.0.0-canary.103
|
|
218
166
|
|
|
219
167
|
### Patch Changes
|
|
220
168
|
|
|
221
|
-
- [#
|
|
222
|
-
|
|
223
|
-
## 8.1.0-canary.30
|
|
224
|
-
|
|
225
|
-
## 8.1.0-canary.29
|
|
226
|
-
|
|
227
|
-
## 8.1.0-canary.28
|
|
228
|
-
|
|
229
|
-
## 8.1.0-canary.27
|
|
230
|
-
|
|
231
|
-
### Minor Changes
|
|
232
|
-
|
|
233
|
-
- [#2273](https://github.com/graphcommerce-org/graphcommerce/pull/2273) [`77955c5`](https://github.com/graphcommerce-org/graphcommerce/commit/77955c56ac8633ab1c5e0f3ddb25e3a87236e2bb) - Improve Breadcrumbs on Category and Product pages ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
234
|
-
|
|
235
|
-
## 8.1.0-canary.26
|
|
169
|
+
- [#2369](https://github.com/graphcommerce-org/graphcommerce/pull/2369) [`8f1b806`](https://github.com/graphcommerce-org/graphcommerce/commit/8f1b806624c96f3151cda81e0553d3df7f1936dd) - Mark the menu item as active if router.asPath matches the href, or if the first URL segment matches, indicating it's the parent item. ([@carlocarels90](https://github.com/carlocarels90))
|
|
236
170
|
|
|
237
|
-
|
|
171
|
+
- [#2421](https://github.com/graphcommerce-org/graphcommerce/pull/2421) [`d500643`](https://github.com/graphcommerce-org/graphcommerce/commit/d500643138799b6db1610cb10a1d065d6219d8ea) - Resolve peer dependency issues so we get a clean install ([@paales](https://github.com/paales))
|
|
238
172
|
|
|
239
|
-
|
|
173
|
+
## 9.0.0-canary.102
|
|
240
174
|
|
|
241
175
|
### Patch Changes
|
|
242
176
|
|
|
243
|
-
- [#
|
|
244
|
-
|
|
245
|
-
## 8.1.0-canary.25
|
|
246
|
-
|
|
247
|
-
## 8.1.0-canary.24
|
|
248
|
-
|
|
249
|
-
## 8.1.0-canary.23
|
|
250
|
-
|
|
251
|
-
## 8.1.0-canary.22
|
|
252
|
-
|
|
253
|
-
## 8.1.0-canary.21
|
|
254
|
-
|
|
255
|
-
## 8.1.0-canary.20
|
|
256
|
-
|
|
257
|
-
## 8.1.0-canary.19
|
|
258
|
-
|
|
259
|
-
## 8.1.0-canary.18
|
|
260
|
-
|
|
261
|
-
## 8.1.0-canary.17
|
|
262
|
-
|
|
263
|
-
### Minor Changes
|
|
264
|
-
|
|
265
|
-
- [#2209](https://github.com/graphcommerce-org/graphcommerce/pull/2209) [`2872cab`](https://github.com/graphcommerce-org/graphcommerce/commit/2872cabdca9ee4f0378fd411c6a633f71bb92f1f) - Removed useMediaQuery from the wishlist and cart ItemActionCard and replaced it with a new responsive size prop. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
266
|
-
|
|
267
|
-
## 8.1.0-canary.16
|
|
177
|
+
- [#2418](https://github.com/graphcommerce-org/graphcommerce/pull/2418) [`2d65c0b`](https://github.com/graphcommerce-org/graphcommerce/commit/2d65c0b2625d5aeb82b34207e5addbff613e40f7) - Added locale prop support for all Intl components and exposed all functionality as hooks. ([@paales](https://github.com/paales))
|
|
268
178
|
|
|
269
|
-
|
|
179
|
+
- [#2418](https://github.com/graphcommerce-org/graphcommerce/pull/2418) [`f35505c`](https://github.com/graphcommerce-org/graphcommerce/commit/f35505c618283c9de6a0db5b3080655c6825da17) - MediaQuery component now accepts a display prop to not always render with display contents. Implement the MediaQuery component for the DesktopNavBar and filter page for StickyBelowHeader and ProductFiltersPro sidebar ([@paales](https://github.com/paales))
|
|
270
180
|
|
|
271
|
-
##
|
|
272
|
-
|
|
273
|
-
## 8.1.0-canary.13
|
|
274
|
-
|
|
275
|
-
## 8.1.0-canary.12
|
|
276
|
-
|
|
277
|
-
## 8.1.0-canary.11
|
|
278
|
-
|
|
279
|
-
## 8.1.0-canary.10
|
|
280
|
-
|
|
281
|
-
## 8.1.0-canary.9
|
|
282
|
-
|
|
283
|
-
### Patch Changes
|
|
284
|
-
|
|
285
|
-
- [#2223](https://github.com/graphcommerce-org/graphcommerce/pull/2223) [`d7459fe`](https://github.com/graphcommerce-org/graphcommerce/commit/d7459feb6e6902af09ab9ff766c0b3b1a74fb723) - Updated canonicalize helper for better multi domain support ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
286
|
-
|
|
287
|
-
## 8.1.0-canary.8
|
|
181
|
+
## 9.0.0-canary.101
|
|
288
182
|
|
|
289
183
|
### Patch Changes
|
|
290
184
|
|
|
291
|
-
- [#
|
|
185
|
+
- [#2405](https://github.com/graphcommerce-org/graphcommerce/pull/2405) [`39a2df4`](https://github.com/graphcommerce-org/graphcommerce/commit/39a2df46c26be390cd8d65200ab347e12b217f9e) - Added MediaQuery Component: Render (and hydrate) a Component based on a media query given.
|
|
292
186
|
|
|
293
|
-
|
|
187
|
+
```tsx
|
|
188
|
+
<MediaQuery query={(theme) => theme.breakpoints.up('md')}>
|
|
189
|
+
<MyExpensiveDesktopComponent>
|
|
190
|
+
Only visisble on desktop
|
|
191
|
+
</MyExpensiveDesktopComponent>
|
|
192
|
+
</MediaQuery>
|
|
193
|
+
```
|
|
294
194
|
|
|
295
|
-
|
|
195
|
+
When to use, replacement for:
|
|
296
196
|
|
|
297
|
-
|
|
197
|
+
1. useMediaQuery: When you are now using useMediaQuery to conditionally render content for mobile or desktop. a. Is very slow as it has to wait for the JS to initialize on pageload. b. Can cause CLS problems if the useMediaQuery is used to render elements in the viewport. c. Can cause LCP issues if useMediaQuery is used to render the LCP element. d. Causes TBT problems as a component always needs to be rerendered. (And bad TBT can cause INP problems) e. HTML isn't present in the DOM, which can cause SEO issues.
|
|
198
|
+
2. CSS Media query: When you are using CSS to show or hide content based on media queries. a. Causes TBT problems as both code paths need to be rendered. (And bad TBT can cause INP problems)
|
|
298
199
|
|
|
299
|
-
|
|
200
|
+
It wraps the component in a div that has 'display: contents;' when shown and 'display: none;' when hidden so it should not interfere with other styling. It conditionally hydrates the component if the query matches. If it doesn't match, it will NOT hydrate the component (and thus not execute the JS). ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
300
201
|
|
|
301
|
-
|
|
202
|
+
- [#2380](https://github.com/graphcommerce-org/graphcommerce/pull/2380) [`0ca65f1`](https://github.com/graphcommerce-org/graphcommerce/commit/0ca65f11fbe288a221f2c5aa618abecf5b4b7bc9) - Solve an issue where internal full URL's would cause prefetching errors and would use a hard navigation. ([@paales](https://github.com/paales))
|
|
302
203
|
|
|
303
|
-
##
|
|
204
|
+
## 9.0.0-canary.98
|
|
304
205
|
|
|
305
206
|
### Patch Changes
|
|
306
207
|
|
|
307
|
-
- [#
|
|
308
|
-
|
|
309
|
-
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores ([@FrankHarland](https://github.com/FrankHarland))
|
|
208
|
+
- [#2414](https://github.com/graphcommerce-org/graphcommerce/pull/2414) [`cd8e35b`](https://github.com/graphcommerce-org/graphcommerce/commit/cd8e35ba3dfafd34221b0875bf4f83c802955d66) - Added RelativeTimeFormat and RelativeToTimeFormat components to display relative dates in all locales. ([@Vignesh-M21](https://github.com/Vignesh-M21))
|
|
310
209
|
|
|
311
|
-
|
|
210
|
+
- [#2414](https://github.com/graphcommerce-org/graphcommerce/pull/2414) [`8b1a5a6`](https://github.com/graphcommerce-org/graphcommerce/commit/8b1a5a62a580cc8d08746cb19c4e5a4f52bd270c) - Date strings (12-12-2012) are not supported by older Safari browser versions. must be converted (12/12/2012) in order for it to function; otherwise, it will return NaN if we attempt to access the getTime() on an object. ([@Vignesh-M21](https://github.com/Vignesh-M21))
|
|
312
211
|
|
|
313
|
-
##
|
|
212
|
+
## 9.0.0-canary.95
|
|
314
213
|
|
|
315
214
|
### Patch Changes
|
|
316
215
|
|
|
317
|
-
- [#
|
|
216
|
+
- [#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))
|
|
318
217
|
|
|
319
|
-
##
|
|
218
|
+
## 9.0.0-canary.93
|
|
320
219
|
|
|
321
220
|
### Patch Changes
|
|
322
221
|
|
|
323
|
-
- [#
|
|
324
|
-
|
|
325
|
-
- [#2235](https://github.com/graphcommerce-org/graphcommerce/pull/2235) [`de99691`](https://github.com/graphcommerce-org/graphcommerce/commit/de9969155e271cc2535147479b80b602a1b9c335) - The Lazyhydrate component to accepts any BoxProps. Replaced `<section>` with a `<Box>` so it doesn't hold symantic meaning.
|
|
326
|
-
|
|
327
|
-
Please note: If you've used child selectors to style the section, please make sure you update your styles. ([@carlocarels90](https://github.com/carlocarels90))
|
|
328
|
-
|
|
329
|
-
- [#2241](https://github.com/graphcommerce-org/graphcommerce/pull/2241) [`6f3fe60`](https://github.com/graphcommerce-org/graphcommerce/commit/6f3fe60441762d55cb46d587279121e8fe469cdd) - Decreased layout shift on product pages by reserving space for sidebar ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
330
|
-
|
|
331
|
-
- [#2241](https://github.com/graphcommerce-org/graphcommerce/pull/2241) [`cde3c31`](https://github.com/graphcommerce-org/graphcommerce/commit/cde3c310abf2ac3c82d1062d5fb0a4c00ba50cff) - Removed unnecessary vendor prefixes ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
332
|
-
|
|
333
|
-
- [#2241](https://github.com/graphcommerce-org/graphcommerce/pull/2241) [`4c83636`](https://github.com/graphcommerce-org/graphcommerce/commit/4c836366c324881ee5121c645c5f94fc60e3ebb3) - Prevent horizontal scrollbar on small screens when using SidebarGallery ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
334
|
-
|
|
335
|
-
- [#2230](https://github.com/graphcommerce-org/graphcommerce/pull/2230) [`1da6b82`](https://github.com/graphcommerce-org/graphcommerce/commit/1da6b82dbb7e1543542d809ea625a8867643ea68) - Fix menu item visibility in accessability tree ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
336
|
-
|
|
337
|
-
## 8.0.5-canary.10
|
|
338
|
-
|
|
339
|
-
## 8.0.5-canary.9
|
|
340
|
-
|
|
341
|
-
## 8.0.5-canary.8
|
|
222
|
+
- [#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))
|
|
342
223
|
|
|
343
|
-
##
|
|
224
|
+
## 9.0.0-canary.89
|
|
344
225
|
|
|
345
226
|
### Patch Changes
|
|
346
227
|
|
|
347
|
-
- [#
|
|
348
|
-
|
|
349
|
-
- [#2241](https://github.com/graphcommerce-org/graphcommerce/pull/2241) [`cde3c31`](https://github.com/graphcommerce-org/graphcommerce/commit/cde3c310abf2ac3c82d1062d5fb0a4c00ba50cff) - Removed unnecessary vendor prefixes ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
350
|
-
|
|
351
|
-
- [#2241](https://github.com/graphcommerce-org/graphcommerce/pull/2241) [`4c83636`](https://github.com/graphcommerce-org/graphcommerce/commit/4c836366c324881ee5121c645c5f94fc60e3ebb3) - Prevent horizontal scrollbar on small screens when using SidebarGallery ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
228
|
+
- [#2393](https://github.com/graphcommerce-org/graphcommerce/pull/2393) [`8946991`](https://github.com/graphcommerce-org/graphcommerce/commit/894699122c2748724acf439ce3ff14fa56a1e68c) - Solve an issue where the success page would show a back button which would go back to the payment page (which would be empty) ([@carlocarels90](https://github.com/carlocarels90))
|
|
352
229
|
|
|
353
|
-
##
|
|
230
|
+
## 9.0.0-canary.80
|
|
354
231
|
|
|
355
|
-
|
|
232
|
+
### Patch Changes
|
|
356
233
|
|
|
357
|
-
|
|
234
|
+
- [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`c57614d`](https://github.com/graphcommerce-org/graphcommerce/commit/c57614d47675cec2a0bf290371f11441495e10fe) - ActionCardList can now recieve focus, allowing form submissions to scroll to the field. Focussed fields now are now highlighted even when there is an error. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
358
235
|
|
|
359
|
-
##
|
|
236
|
+
## 9.0.0-canary.79
|
|
360
237
|
|
|
361
238
|
### Patch Changes
|
|
362
239
|
|
|
363
|
-
- [#
|
|
240
|
+
- [#2356](https://github.com/graphcommerce-org/graphcommerce/pull/2356) [`d283901`](https://github.com/graphcommerce-org/graphcommerce/commit/d283901cb537c3e7bf6f5500e9f52f47f452cf10) - Loading an overlay page directly would animate in the overlay instead of directly showing it. ([@paales](https://github.com/paales))
|
|
364
241
|
|
|
365
|
-
##
|
|
242
|
+
## 9.0.0-canary.78
|
|
366
243
|
|
|
367
244
|
### Patch Changes
|
|
368
245
|
|
|
369
|
-
- [#
|
|
246
|
+
- [#2354](https://github.com/graphcommerce-org/graphcommerce/pull/2354) [`7cd5c1c`](https://github.com/graphcommerce-org/graphcommerce/commit/7cd5c1cadf8dac43de9e5bb19038383be64aa08f) - Fix issues when using non-hex colors in theme ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
370
247
|
|
|
371
|
-
|
|
248
|
+
- [#2354](https://github.com/graphcommerce-org/graphcommerce/pull/2354) [`7c10458`](https://github.com/graphcommerce-org/graphcommerce/commit/7c104588ef96b9066b8f91835c29f957b08e4831) - Fix back button transparency on hover ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
372
249
|
|
|
373
|
-
|
|
250
|
+
- [#2354](https://github.com/graphcommerce-org/graphcommerce/pull/2354) [`1de9582`](https://github.com/graphcommerce-org/graphcommerce/commit/1de9582967f2a09cc7167a38ada4e50fe0d1b29a) - Properly align cart loading state (and other FullPageMessage usages) ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
374
251
|
|
|
375
|
-
##
|
|
252
|
+
## 9.0.0-canary.75
|
|
376
253
|
|
|
377
254
|
### Patch Changes
|
|
378
255
|
|
|
379
|
-
- [#
|
|
256
|
+
- [#2348](https://github.com/graphcommerce-org/graphcommerce/pull/2348) [`61b66ef`](https://github.com/graphcommerce-org/graphcommerce/commit/61b66efeab9b377c8daa322015d4b55cdf3db4c1) - Added a new OverlayHeader component to be used in combination with the Overlay component. ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
380
257
|
|
|
381
|
-
##
|
|
258
|
+
## 9.0.0-canary.73
|
|
382
259
|
|
|
383
260
|
### Patch Changes
|
|
384
261
|
|
|
385
|
-
- [
|
|
386
|
-
|
|
387
|
-
## 8.0.4-canary.1
|
|
262
|
+
- [`4c24225`](https://github.com/graphcommerce-org/graphcommerce/commit/4c24225f9f998cd40e71da06528eb9323e9b6752) - Created a new `memoDeep` function that is a deep compare variant of `React.memo`. Performance seems to be pretty good, but should only be used as a result of a profiling session. ([@paales](https://github.com/paales))
|
|
388
263
|
|
|
389
|
-
##
|
|
264
|
+
## 9.0.0-canary.57
|
|
390
265
|
|
|
391
266
|
### Patch Changes
|
|
392
267
|
|
|
393
|
-
- [#
|
|
394
|
-
|
|
395
|
-
## 8.0.3
|
|
396
|
-
|
|
397
|
-
## 8.0.3-canary.6
|
|
398
|
-
|
|
399
|
-
## 8.0.3-canary.5
|
|
400
|
-
|
|
401
|
-
## 8.0.3-canary.4
|
|
402
|
-
|
|
403
|
-
## 8.0.3-canary.3
|
|
404
|
-
|
|
405
|
-
## 8.0.3-canary.2
|
|
406
|
-
|
|
407
|
-
## 8.0.3-canary.1
|
|
408
|
-
|
|
409
|
-
## 8.0.3-canary.0
|
|
410
|
-
|
|
411
|
-
## 8.0.2
|
|
412
|
-
|
|
413
|
-
## 8.0.2-canary.3
|
|
414
|
-
|
|
415
|
-
## 8.0.2-canary.2
|
|
416
|
-
|
|
417
|
-
## 8.0.2-canary.1
|
|
418
|
-
|
|
419
|
-
## 8.0.2-canary.0
|
|
268
|
+
- [#2312](https://github.com/graphcommerce-org/graphcommerce/pull/2312) [`e6a3776`](https://github.com/graphcommerce-org/graphcommerce/commit/e6a377637f1aaafe5b1db7a3123b8caad28d00f5) - Updated all package versions ([@paales](https://github.com/paales))
|
|
420
269
|
|
|
421
|
-
## 8.0.
|
|
270
|
+
## 8.1.0-canary.50
|
|
422
271
|
|
|
423
272
|
### Patch Changes
|
|
424
273
|
|
|
425
|
-
- [#
|
|
274
|
+
- [#2321](https://github.com/graphcommerce-org/graphcommerce/pull/2321) [`fa261d4`](https://github.com/graphcommerce-org/graphcommerce/commit/fa261d4ae600b46ae08c5ca7514163f2da54eead) - Add the possibility to place content before or after the scroller. ([@carlocarels90](https://github.com/carlocarels90))
|
|
426
275
|
|
|
427
|
-
## 8.0
|
|
276
|
+
## 8.1.0-canary.49
|
|
428
277
|
|
|
429
278
|
### Patch Changes
|
|
430
279
|
|
|
431
|
-
- [#
|
|
432
|
-
|
|
433
|
-
## 8.0.1-canary.3
|
|
434
|
-
|
|
435
|
-
## 8.0.1-canary.2
|
|
436
|
-
|
|
437
|
-
## 8.0.1-canary.1
|
|
438
|
-
|
|
439
|
-
## 8.0.1-canary.0
|
|
280
|
+
- [#2317](https://github.com/graphcommerce-org/graphcommerce/pull/2317) [`6c173c7`](https://github.com/graphcommerce-org/graphcommerce/commit/6c173c7bba601413cc5e1c9cf0595b8ec262fb92) - Added new plugin insertion points: `<DocumentHeadStart/>`, `<DocumentHeadEnd/>`, `<DocumentBodyEnd/>`, `<DocumentBodyStart/>` for the \_document.app to allow creating plugins for those locations to insert scripts etc. ([@paales](https://github.com/paales))
|
|
440
281
|
|
|
441
|
-
## 8.0.
|
|
282
|
+
## 8.1.0-canary.47
|
|
442
283
|
|
|
443
284
|
### Minor Changes
|
|
444
285
|
|
|
445
|
-
- [#
|
|
446
|
-
|
|
447
|
-
- [#2073](https://github.com/graphcommerce-org/graphcommerce/pull/2073) [`05ce566`](https://github.com/graphcommerce-org/graphcommerce/commit/05ce5665b3c63b0620266c8ac35e8b555e2029e8) - It is now allowed to use children inside the footer component ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
286
|
+
- [#2315](https://github.com/graphcommerce-org/graphcommerce/pull/2315) [`fb9118e`](https://github.com/graphcommerce-org/graphcommerce/commit/fb9118ec819d1b507d4fbde04f2ca34ec01ecf49) - Add guestOrder functionality, remove `size: 'max'` from getStaticProps ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
448
287
|
|
|
449
|
-
|
|
288
|
+
## 8.1.0-canary.46
|
|
450
289
|
|
|
451
290
|
### Patch Changes
|
|
452
291
|
|
|
453
|
-
- [#
|
|
454
|
-
|
|
455
|
-
- [#2138](https://github.com/graphcommerce-org/graphcommerce/pull/2138) [`a057d62`](https://github.com/graphcommerce-org/graphcommerce/commit/a057d6274e1d427e631ab3fad7a16078315103b8) - When viewing the homepage the logo will not have a `<a/>` tag wrapped anymore. ([@carlocarels90](https://github.com/carlocarels90))
|
|
456
|
-
|
|
457
|
-
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`da21357`](https://github.com/graphcommerce-org/graphcommerce/commit/da2135744dddfa0d211c59589090ebb1977c38c9) - The `<Snackbar/>` component now accepts an icon when severity is set to info ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
458
|
-
|
|
459
|
-
- [#2135](https://github.com/graphcommerce-org/graphcommerce/pull/2135) [`7b017f5`](https://github.com/graphcommerce-org/graphcommerce/commit/7b017f58ba3be587d20a7f52c84b2907d52fe201) - Fix incorrect canonical URLs when i18n domain routing is used ([@hnsr](https://github.com/hnsr))
|
|
460
|
-
|
|
461
|
-
- [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`727d100`](https://github.com/graphcommerce-org/graphcommerce/commit/727d1004dfcb7dddf6e35b6b157a34491bb05cc6) - Fixed ItemScroller component className. Changed from SidebarSlider to ItemScroller ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
462
|
-
|
|
463
|
-
- [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed ([@FrankHarland](https://github.com/FrankHarland))
|
|
464
|
-
|
|
465
|
-
- [#2108](https://github.com/graphcommerce-org/graphcommerce/pull/2108) [`7fc4bb9`](https://github.com/graphcommerce-org/graphcommerce/commit/7fc4bb925c59da46961c9656a2a67b37a9c2d652) - Removed the 'NoSSR' functionality from `<WaitForQueries/>` component as it slows down rendering. The 'feature' was necessary for the following use case: When hydrating a component that was server rendered and was living inside a `<Suspense />` component. It would cause an hydration error and this was the workaround. With useSuspenseQuery and React 18, this problem will not occur. ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
292
|
+
- [#2314](https://github.com/graphcommerce-org/graphcommerce/pull/2314) [`59874b5`](https://github.com/graphcommerce-org/graphcommerce/commit/59874b572bda17905dc836554f9a3e31f393eb3e) - Solve issue where the page would reload during development when the first call to /graphql was made. ([@paales](https://github.com/paales))
|
|
466
293
|
|
|
467
|
-
|
|
294
|
+
## 8.1.0-canary.45
|
|
468
295
|
|
|
469
|
-
|
|
296
|
+
### Patch Changes
|
|
470
297
|
|
|
471
|
-
- [#
|
|
298
|
+
- [#2216](https://github.com/graphcommerce-org/graphcommerce/pull/2216) [`1895176`](https://github.com/graphcommerce-org/graphcommerce/commit/1895176b5776adcf588999ceab7edd6f53cff294) - USPS would be loaded after other pages, causing uneceesasry slowdown ([@paales](https://github.com/paales))
|
|
472
299
|
|
|
473
|
-
- [#
|
|
474
|
-
|
|
475
|
-
- [#2105](https://github.com/graphcommerce-org/graphcommerce/pull/2105) [`185f9dd`](https://github.com/graphcommerce-org/graphcommerce/commit/185f9ddebff0eaf1f388faebe88a5d400294512a) - Fixed bug in Chrome where the mobile menu wouldn't open after the first selected level ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
476
|
-
|
|
477
|
-
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`94e1ae8`](https://github.com/graphcommerce-org/graphcommerce/commit/94e1ae811fe9eb0051863e8be91c6399ddcdf22f) - Added `<DismissibleSnackbar/>` component to allow messages to be shown only once ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
478
|
-
|
|
479
|
-
- [#2137](https://github.com/graphcommerce-org/graphcommerce/pull/2137) [`df507b1`](https://github.com/graphcommerce-org/graphcommerce/commit/df507b194c67eef7b02df858c07938bb308b5397) - Don't render pseudo-locale in HTML lang attribute ([@hnsr](https://github.com/hnsr))
|
|
480
|
-
|
|
481
|
-
- [#2125](https://github.com/graphcommerce-org/graphcommerce/pull/2125) [`5224ee5`](https://github.com/graphcommerce-org/graphcommerce/commit/5224ee5001c94a19f226fa36106e76739319297c) - If there is an open menu in an overlay, pressing the escape button now closes the menu instead of the overlay. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
482
|
-
|
|
483
|
-
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`53947d3`](https://github.com/graphcommerce-org/graphcommerce/commit/53947d39f2f3ee578c14903c96a2b356d99d9475) - Implemented 'Message' variant for `<RowColumnOne/>` to show an important message which, after dismissing, will not show again ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
484
|
-
|
|
485
|
-
- [#2121](https://github.com/graphcommerce-org/graphcommerce/pull/2121) [`a5da6ff`](https://github.com/graphcommerce-org/graphcommerce/commit/a5da6ffc8be359e93c7bde986134f7162aae13b9) - Change the critical css injection location to be in the head instead of `<style>` tags in the body. It had a number of negative consequences, such as the famous "flash of unstyled content" (FOUC) and the re-paint and re-layout required. ([@paales](https://github.com/paales))
|
|
486
|
-
|
|
487
|
-
## 8.0.0-canary.100
|
|
488
|
-
|
|
489
|
-
## 8.0.0-canary.99
|
|
490
|
-
|
|
491
|
-
## 8.0.0-canary.98
|
|
492
|
-
|
|
493
|
-
## 8.0.0-canary.97
|
|
494
|
-
|
|
495
|
-
## 8.0.0-canary.96
|
|
496
|
-
|
|
497
|
-
## 8.0.0-canary.95
|
|
498
|
-
|
|
499
|
-
## 8.0.0-canary.94
|
|
500
|
-
|
|
501
|
-
## 8.0.0-canary.93
|
|
502
|
-
|
|
503
|
-
## 8.0.0-canary.92
|
|
504
|
-
|
|
505
|
-
## 8.0.0-canary.91
|
|
506
|
-
|
|
507
|
-
## 8.0.0-canary.90
|
|
508
|
-
|
|
509
|
-
## 8.0.0-canary.89
|
|
510
|
-
|
|
511
|
-
## 8.0.0-canary.88
|
|
512
|
-
|
|
513
|
-
## 8.0.0-canary.87
|
|
514
|
-
|
|
515
|
-
## 8.0.0-canary.86
|
|
516
|
-
|
|
517
|
-
## 8.0.0-canary.85
|
|
518
|
-
|
|
519
|
-
## 8.0.0-canary.84
|
|
520
|
-
|
|
521
|
-
### Patch Changes
|
|
522
|
-
|
|
523
|
-
- [#2161](https://github.com/graphcommerce-org/graphcommerce/pull/2161) [`cc5c636`](https://github.com/graphcommerce-org/graphcommerce/commit/cc5c636f9f2b3d9fa33384b9a02d6ad3631aa414) - Removed whitespace on top of the zoomed in image on the PDP. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
524
|
-
|
|
525
|
-
## 8.0.0-canary.83
|
|
526
|
-
|
|
527
|
-
## 8.0.0-canary.82
|
|
528
|
-
|
|
529
|
-
## 8.0.0-canary.81
|
|
530
|
-
|
|
531
|
-
## 8.0.0-canary.80
|
|
532
|
-
|
|
533
|
-
### Patch Changes
|
|
534
|
-
|
|
535
|
-
- [#2138](https://github.com/graphcommerce-org/graphcommerce/pull/2138) [`a057d62`](https://github.com/graphcommerce-org/graphcommerce/commit/a057d6274e1d427e631ab3fad7a16078315103b8) - Wrap the logo in a div on the homepage to prevent redirection. ([@carlocarels90](https://github.com/carlocarels90))
|
|
536
|
-
|
|
537
|
-
## 8.0.0-canary.79
|
|
538
|
-
|
|
539
|
-
### Patch Changes
|
|
540
|
-
|
|
541
|
-
- [#2137](https://github.com/graphcommerce-org/graphcommerce/pull/2137) [`df507b1`](https://github.com/graphcommerce-org/graphcommerce/commit/df507b194c67eef7b02df858c07938bb308b5397) - Don't render pseudo-locale in HTML lang attribute ([@hnsr](https://github.com/hnsr))
|
|
542
|
-
|
|
543
|
-
## 8.0.0-canary.78
|
|
544
|
-
|
|
545
|
-
### Patch Changes
|
|
546
|
-
|
|
547
|
-
- [#2135](https://github.com/graphcommerce-org/graphcommerce/pull/2135) [`7b017f5`](https://github.com/graphcommerce-org/graphcommerce/commit/7b017f58ba3be587d20a7f52c84b2907d52fe201) - Fix incorrect canonical URLs when i18n domain routing is used ([@hnsr](https://github.com/hnsr))
|
|
548
|
-
|
|
549
|
-
## 8.0.0-canary.77
|
|
550
|
-
|
|
551
|
-
### Patch Changes
|
|
552
|
-
|
|
553
|
-
- [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info) ([@FrankHarland](https://github.com/FrankHarland))
|
|
554
|
-
|
|
555
|
-
## 8.0.0-canary.76
|
|
556
|
-
|
|
557
|
-
## 8.0.0-canary.75
|
|
558
|
-
|
|
559
|
-
## 8.0.0-canary.74
|
|
560
|
-
|
|
561
|
-
### Minor Changes
|
|
562
|
-
|
|
563
|
-
- [#2133](https://github.com/graphcommerce-org/graphcommerce/pull/2133) [`133f908`](https://github.com/graphcommerce-org/graphcommerce/commit/133f908200a79589036420f2925835724522cab8) - Added lazy hydration to improve total blocking time. Added LazyHydrate component which can be wrapped around other components you want to lazy hydrate. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
564
|
-
|
|
565
|
-
## 8.0.0-canary.73
|
|
566
|
-
|
|
567
|
-
## 8.0.0-canary.72
|
|
568
|
-
|
|
569
|
-
## 8.0.0-canary.71
|
|
570
|
-
|
|
571
|
-
## 8.0.0-canary.70
|
|
572
|
-
|
|
573
|
-
## 8.0.0-canary.69
|
|
574
|
-
|
|
575
|
-
## 7.1.0-canary.68
|
|
576
|
-
|
|
577
|
-
## 7.1.0-canary.67
|
|
578
|
-
|
|
579
|
-
### Patch Changes
|
|
580
|
-
|
|
581
|
-
- [#2108](https://github.com/graphcommerce-org/graphcommerce/pull/2108) [`7fc4bb9`](https://github.com/graphcommerce-org/graphcommerce/commit/7fc4bb925c59da46961c9656a2a67b37a9c2d652) - Removed the 'NoSSR' functionality from `<WaitForQueries/>` component as it slows down rendering. The 'feature' was necessary for the following use case: When hydrating a component that was server rendered and was living inside a `<Suspense />` component. It would cause an hydration error and this was the workaround. With useSuspenseQuery and React 18, this problem will not occur. ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
582
|
-
|
|
583
|
-
## 7.1.0-canary.66
|
|
584
|
-
|
|
585
|
-
## 7.1.0-canary.65
|
|
586
|
-
|
|
587
|
-
## 7.1.0-canary.64
|
|
588
|
-
|
|
589
|
-
## 7.1.0-canary.63
|
|
590
|
-
|
|
591
|
-
## 7.1.0-canary.62
|
|
592
|
-
|
|
593
|
-
## 7.1.0-canary.61
|
|
594
|
-
|
|
595
|
-
### Patch Changes
|
|
596
|
-
|
|
597
|
-
- [#2125](https://github.com/graphcommerce-org/graphcommerce/pull/2125) [`5224ee500`](https://github.com/graphcommerce-org/graphcommerce/commit/5224ee5001c94a19f226fa36106e76739319297c) - If there is an open menu in an overlay, pressing the escape button now closes the menu instead of the overlay. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
598
|
-
|
|
599
|
-
## 7.1.0-canary.60
|
|
600
|
-
|
|
601
|
-
## 7.1.0-canary.59
|
|
602
|
-
|
|
603
|
-
## 7.1.0-canary.58
|
|
604
|
-
|
|
605
|
-
### Patch Changes
|
|
606
|
-
|
|
607
|
-
- [#2121](https://github.com/graphcommerce-org/graphcommerce/pull/2121) [`a5da6ffc8`](https://github.com/graphcommerce-org/graphcommerce/commit/a5da6ffc8be359e93c7bde986134f7162aae13b9) - Change the critical css injection location to be in the head instead of `<style>` tags in the body. It has a number of negative consequences, such as the famous "flash of unstyled content" (FOUC) and the re-paint and re-layout required. ([@paales](https://github.com/paales))
|
|
608
|
-
|
|
609
|
-
## 7.1.0-canary.57
|
|
610
|
-
|
|
611
|
-
## 7.1.0-canary.56
|
|
612
|
-
|
|
613
|
-
### Patch Changes
|
|
614
|
-
|
|
615
|
-
- [#2123](https://github.com/graphcommerce-org/graphcommerce/pull/2123) [`8ad60f255`](https://github.com/graphcommerce-org/graphcommerce/commit/8ad60f255b747858c35dd6b6cf5c90147d960082) - Fixed schema-dts dependency issue ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
616
|
-
|
|
617
|
-
## 7.1.0-canary.55
|
|
618
|
-
|
|
619
|
-
### Patch Changes
|
|
620
|
-
|
|
621
|
-
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`da2135744`](https://github.com/graphcommerce-org/graphcommerce/commit/da2135744dddfa0d211c59589090ebb1977c38c9) - Added info icon for Snackbar when severity is set to info ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
622
|
-
|
|
623
|
-
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`d608830ce`](https://github.com/graphcommerce-org/graphcommerce/commit/d608830ce77f85ff725cc106b9fc55a22012c74c) - Added ‘disableBackdropClick’ prop to MessageSnackbar to allow page interaction without closing the snackbar ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
624
|
-
|
|
625
|
-
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`94e1ae811`](https://github.com/graphcommerce-org/graphcommerce/commit/94e1ae811fe9eb0051863e8be91c6399ddcdf22f) - Added DismissibleSnackbar component to allow messages to be shown only once ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
626
|
-
|
|
627
|
-
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`53947d39f`](https://github.com/graphcommerce-org/graphcommerce/commit/53947d39f2f3ee578c14903c96a2b356d99d9475) - Implemented Message variant for RowColumnOne to show an important message which, after dismissing, will not show again ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
628
|
-
|
|
629
|
-
## 7.1.0-canary.54
|
|
630
|
-
|
|
631
|
-
## 7.1.0-canary.53
|
|
632
|
-
|
|
633
|
-
## 7.1.0-canary.52
|
|
634
|
-
|
|
635
|
-
## 7.1.0-canary.51
|
|
636
|
-
|
|
637
|
-
## 7.1.0-canary.50
|
|
638
|
-
|
|
639
|
-
## 7.1.0-canary.49
|
|
640
|
-
|
|
641
|
-
## 7.1.0-canary.48
|
|
642
|
-
|
|
643
|
-
## 7.1.0-canary.47
|
|
644
|
-
|
|
645
|
-
## 7.1.0-canary.46
|
|
646
|
-
|
|
647
|
-
## 7.1.0-canary.45
|
|
648
|
-
|
|
649
|
-
### Patch Changes
|
|
650
|
-
|
|
651
|
-
- [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`727d1004d`](https://github.com/graphcommerce-org/graphcommerce/commit/727d1004dfcb7dddf6e35b6b157a34491bb05cc6) - Fixed ItemScroller component className. Changed from SidebarSlider to ItemScroller ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
652
|
-
|
|
653
|
-
## 7.1.0-canary.38
|
|
654
|
-
|
|
655
|
-
### Patch Changes
|
|
656
|
-
|
|
657
|
-
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`695f40cf2`](https://github.com/graphcommerce-org/graphcommerce/commit/695f40cf220636d17f04bc9b0ce86c549c740386) - filterNonNullable keys simplified the types which caused unions to be collapsed ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
658
|
-
|
|
659
|
-
## 7.1.0-canary.37
|
|
660
|
-
|
|
661
|
-
## 7.1.0-canary.36
|
|
662
|
-
|
|
663
|
-
## 7.1.0-canary.35
|
|
664
|
-
|
|
665
|
-
## 7.1.0-canary.34
|
|
666
|
-
|
|
667
|
-
## 7.1.0-canary.33
|
|
668
|
-
|
|
669
|
-
## 7.1.0-canary.32
|
|
670
|
-
|
|
671
|
-
## 7.1.0-canary.31
|
|
672
|
-
|
|
673
|
-
## 7.1.0-canary.30
|
|
674
|
-
|
|
675
|
-
### Patch Changes
|
|
676
|
-
|
|
677
|
-
- [#2105](https://github.com/graphcommerce-org/graphcommerce/pull/2105) [`185f9ddeb`](https://github.com/graphcommerce-org/graphcommerce/commit/185f9ddebff0eaf1f388faebe88a5d400294512a) - Fixed bug where the mobile menu wouldn't open after the first selected level ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
678
|
-
|
|
679
|
-
## 7.1.0-canary.29
|
|
680
|
-
|
|
681
|
-
## 7.1.0-canary.28
|
|
682
|
-
|
|
683
|
-
### Minor Changes
|
|
684
|
-
|
|
685
|
-
- [#2018](https://github.com/graphcommerce-org/graphcommerce/pull/2018) [`750aa6a72`](https://github.com/graphcommerce-org/graphcommerce/commit/750aa6a72710869d54244467253212e551d335e0) - Changed the layout of the succes page. We are using ActionCards right now to match the design of the cart. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
686
|
-
|
|
687
|
-
## 7.1.0-canary.27
|
|
688
|
-
|
|
689
|
-
## 7.1.0-canary.26
|
|
690
|
-
|
|
691
|
-
## 7.1.0-canary.25
|
|
692
|
-
|
|
693
|
-
## 7.1.0-canary.24
|
|
694
|
-
|
|
695
|
-
## 7.1.0-canary.23
|
|
696
|
-
|
|
697
|
-
## 7.1.0-canary.22
|
|
698
|
-
|
|
699
|
-
## 7.1.0-canary.21
|
|
700
|
-
|
|
701
|
-
## 7.1.0-canary.20
|
|
702
|
-
|
|
703
|
-
## 7.1.0-canary.19
|
|
704
|
-
|
|
705
|
-
## 7.1.0-canary.18
|
|
706
|
-
|
|
707
|
-
## 7.1.0-canary.17
|
|
708
|
-
|
|
709
|
-
## 7.1.0-canary.16
|
|
710
|
-
|
|
711
|
-
## 7.1.0-canary.15
|
|
712
|
-
|
|
713
|
-
## 7.1.0-canary.14
|
|
714
|
-
|
|
715
|
-
### Patch Changes
|
|
716
|
-
|
|
717
|
-
- [#2045](https://github.com/graphcommerce-org/graphcommerce/pull/2045) [`1ac1e0989`](https://github.com/graphcommerce-org/graphcommerce/commit/1ac1e09897daadd646200cb3ddc2aa75a51e182e) - Make sure the product image gallery traps focus and scrollbar doesn't disappear suddenly ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
718
|
-
|
|
719
|
-
## 7.1.0-canary.13
|
|
720
|
-
|
|
721
|
-
## 7.1.0-canary.12
|
|
722
|
-
|
|
723
|
-
## 7.1.0-canary.11
|
|
724
|
-
|
|
725
|
-
## 7.1.0-canary.10
|
|
726
|
-
|
|
727
|
-
## 7.1.0-canary.9
|
|
728
|
-
|
|
729
|
-
## 7.1.0-canary.8
|
|
730
|
-
|
|
731
|
-
### Minor Changes
|
|
732
|
-
|
|
733
|
-
- [#2073](https://github.com/graphcommerce-org/graphcommerce/pull/2073) [`05ce5665b`](https://github.com/graphcommerce-org/graphcommerce/commit/05ce5665b3c63b0620266c8ac35e8b555e2029e8) - It is now allowed to use children inside the footer component ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
734
|
-
|
|
735
|
-
## 7.0.2-canary.7
|
|
736
|
-
|
|
737
|
-
## 7.0.2-canary.6
|
|
738
|
-
|
|
739
|
-
### Patch Changes
|
|
740
|
-
|
|
741
|
-
- [#2066](https://github.com/graphcommerce-org/graphcommerce/pull/2066) [`3b1f58515`](https://github.com/graphcommerce-org/graphcommerce/commit/3b1f585153672a644a613411134e5ad36aa4c266) - Add showButtons prop to scrollerButton ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
742
|
-
|
|
743
|
-
## 7.0.2-canary.5
|
|
744
|
-
|
|
745
|
-
## 7.0.1
|
|
746
|
-
|
|
747
|
-
### Patch Changes
|
|
748
|
-
|
|
749
|
-
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`136580b39`](https://github.com/graphcommerce-org/graphcommerce/commit/136580b39e3cffdd07e3fa087e049bd532c3e8f1) - Updated all dependencies to the latest version where possible. ([@paales](https://github.com/paales))
|
|
750
|
-
|
|
751
|
-
- [#2064](https://github.com/graphcommerce-org/graphcommerce/pull/2064) [`a550fa039`](https://github.com/graphcommerce-org/graphcommerce/commit/a550fa039a104b661ffd3fd3e32d99eaf782bc88) - Allow setting all RowLinks props on its variants, instead of a limited predefined set ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
752
|
-
|
|
753
|
-
## 7.0.1-canary.15
|
|
754
|
-
|
|
755
|
-
### Patch Changes
|
|
756
|
-
|
|
757
|
-
- [#2064](https://github.com/graphcommerce-org/graphcommerce/pull/2064) [`a550fa039`](https://github.com/graphcommerce-org/graphcommerce/commit/a550fa039a104b661ffd3fd3e32d99eaf782bc88) - Allow setting all RowLinks props on its variants, instead of a limited predefined set ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
758
|
-
|
|
759
|
-
## 7.0.1-canary.14
|
|
760
|
-
|
|
761
|
-
## 7.0.1-canary.13
|
|
762
|
-
|
|
763
|
-
## 7.0.1-canary.12
|
|
764
|
-
|
|
765
|
-
## 7.0.1-canary.11
|
|
766
|
-
|
|
767
|
-
## 7.0.1-canary.10
|
|
768
|
-
|
|
769
|
-
## 7.0.1-canary.9
|
|
770
|
-
|
|
771
|
-
## 7.0.1-canary.8
|
|
772
|
-
|
|
773
|
-
## 7.0.1-canary.7
|
|
774
|
-
|
|
775
|
-
## 7.0.1-canary.6
|
|
776
|
-
|
|
777
|
-
## 7.0.1-canary.5
|
|
778
|
-
|
|
779
|
-
## 7.0.1-canary.4
|
|
780
|
-
|
|
781
|
-
## 7.0.1-canary.3
|
|
782
|
-
|
|
783
|
-
## 7.0.1-canary.2
|
|
784
|
-
|
|
785
|
-
## 7.0.1-canary.1
|
|
786
|
-
|
|
787
|
-
## 7.0.1-canary.0
|
|
788
|
-
|
|
789
|
-
### Patch Changes
|
|
790
|
-
|
|
791
|
-
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`136580b39`](https://github.com/graphcommerce-org/graphcommerce/commit/136580b39e3cffdd07e3fa087e049bd532c3e8f1) - Updated all dependencies to the latest version where possible. ([@paales](https://github.com/paales))
|
|
792
|
-
|
|
793
|
-
## 7.0.0
|
|
794
|
-
|
|
795
|
-
### Major Changes
|
|
796
|
-
|
|
797
|
-
- [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
|
|
798
|
-
|
|
799
|
-
### Minor Changes
|
|
800
|
-
|
|
801
|
-
- [#1961](https://github.com/graphcommerce-org/graphcommerce/pull/1961) [`4a759c662`](https://github.com/graphcommerce-org/graphcommerce/commit/4a759c66215eaa69edc342b898e05e8f92c3ba9a) - Add Open Graph meta tags to all pages ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
802
|
-
|
|
803
|
-
- [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`609b384de`](https://github.com/graphcommerce-org/graphcommerce/commit/609b384de8cded7a9dd2f29bd516ded810ab970a) - Created a new version of the cart using ActionCards for each CartItem. Different types of CartItems can have different ActionCards. These ActionCards will be overridden with the use of Plugins. An example can be found in the @graphcommerce/magento-product-configurable package. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
804
|
-
|
|
805
|
-
- [#2023](https://github.com/graphcommerce-org/graphcommerce/pull/2023) [`7cd53fb2a`](https://github.com/graphcommerce-org/graphcommerce/commit/7cd53fb2aca18ae4a56025b2a015fecbda2e47b7) - Added links to test components on the test page. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
806
|
-
|
|
807
|
-
### Patch Changes
|
|
808
|
-
|
|
809
|
-
- [#1934](https://github.com/graphcommerce-org/graphcommerce/pull/1934) [`96ac0320a`](https://github.com/graphcommerce-org/graphcommerce/commit/96ac0320a30bc55a6db5d46663d28b552fda4db6) - Overlays with a floating layout can now be closed by clicking beside the overlay. ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
810
|
-
|
|
811
|
-
- [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`e9041802b`](https://github.com/graphcommerce-org/graphcommerce/commit/e9041802b27d6610cc93715ca61acff7f59792e6) - When the switchPoint of LayoutHeader is zero, make sure the header doesn’t flash when scrolling up on iOS ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
812
|
-
|
|
813
|
-
- [#1998](https://github.com/graphcommerce-org/graphcommerce/pull/1998) [`fdbdcb76f`](https://github.com/graphcommerce-org/graphcommerce/commit/fdbdcb76f918cf74b22253bd641a04c490ceb140) - Users are now not able to scroll an overlay during the open animation. ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
814
|
-
|
|
815
|
-
- [#1960](https://github.com/graphcommerce-org/graphcommerce/pull/1960) [`f78caf5a8`](https://github.com/graphcommerce-org/graphcommerce/commit/f78caf5a83683f1ae4b901fb94bd22d50943fa2f) - Updated packages: `next`, `@apollo/client`, `react-hook-form`, `@emotion/*`, `@lingui/*`, `@mui/*` and various others. ([@paales](https://github.com/paales))
|
|
816
|
-
|
|
817
|
-
- [#1965](https://github.com/graphcommerce-org/graphcommerce/pull/1965) [`44b2911d7`](https://github.com/graphcommerce-org/graphcommerce/commit/44b2911d73fb6c6c7188f16d5890ca93877e9aa7) - Added prop to LayoutHeader to be able to hide the back button ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
818
|
-
|
|
819
|
-
- [#1946](https://github.com/graphcommerce-org/graphcommerce/pull/1946) [`87260618b`](https://github.com/graphcommerce-org/graphcommerce/commit/87260618b8abaebd727ff4435abb1aea6ed33730) - Firefox: scroll snap overlays would snap to 0 when the scroll snap targets wouldn’t exactly match the possible targets. ([@paales](https://github.com/paales))
|
|
820
|
-
|
|
821
|
-
- [#1913](https://github.com/graphcommerce-org/graphcommerce/pull/1913) [`17eac116d`](https://github.com/graphcommerce-org/graphcommerce/commit/17eac116dbf2b811a67bfefd735d5a5a3e2b20dc) - Fixed zIndex issue with CartFab and ScrollerButton ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
822
|
-
|
|
823
|
-
- [#1913](https://github.com/graphcommerce-org/graphcommerce/pull/1913) [`61b1987eb`](https://github.com/graphcommerce-org/graphcommerce/commit/61b1987eb8d37566cb4675f0ae962925aef2fc6d) - Fixed RowLinks ScrollerButton alignment when content is shown beside the Scroller ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
824
|
-
|
|
825
|
-
- [#1930](https://github.com/graphcommerce-org/graphcommerce/pull/1930) [`c8d023e9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c8d023e9e874131cd9f8fe192b1fca5fe1a26ee3) - Fix the 'close menu' on search and add the option to secondary menu items ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
826
|
-
|
|
827
|
-
- [#2042](https://github.com/graphcommerce-org/graphcommerce/pull/2042) [`587fd2fe5`](https://github.com/graphcommerce-org/graphcommerce/commit/587fd2fe50c843acd9ffae869372df1df57e0a4b) - Updated german translations ([@action-simon](https://github.com/action-simon))
|
|
828
|
-
|
|
829
|
-
- [#1897](https://github.com/graphcommerce-org/graphcommerce/pull/1897) [`f44d7cec6`](https://github.com/graphcommerce-org/graphcommerce/commit/f44d7cec61766f4768c30d29b211a12f2846e9f6) - Overlays can now be configured to get a bgColor ([@FrankHarland](https://github.com/FrankHarland))
|
|
830
|
-
|
|
831
|
-
- [#1980](https://github.com/graphcommerce-org/graphcommerce/pull/1980) [`275aaaba3`](https://github.com/graphcommerce-org/graphcommerce/commit/275aaaba34c9db1705183393c4327e8f16b09386) - Fixed overlays closing while still dragging - overlays should only close after releasing pointer ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
832
|
-
|
|
833
|
-
- [#1939](https://github.com/graphcommerce-org/graphcommerce/pull/1939) [`0cdccf681`](https://github.com/graphcommerce-org/graphcommerce/commit/0cdccf6817d6a769f59cccb68b1b1b8b4405cbd0) - Make blogListItem date prop optional ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
834
|
-
|
|
835
|
-
- [#1958](https://github.com/graphcommerce-org/graphcommerce/pull/1958) [`0a311b6eb`](https://github.com/graphcommerce-org/graphcommerce/commit/0a311b6ebb5a52e2a7f1d2e6a0fe113904fa2d34) - Left overlays wouldn't properly snap when the overlay gets wider than the viewport ([@paales](https://github.com/paales))
|
|
836
|
-
|
|
837
|
-
- [#2005](https://github.com/graphcommerce-org/graphcommerce/pull/2005) [`950521b4d`](https://github.com/graphcommerce-org/graphcommerce/commit/950521b4d46a1b980636c05d68a8f6aba289e85c) - Footer's grid-area's will only be rendered when the props are passed. ([@LeanderMatse](https://github.com/LeanderMatse))
|
|
838
|
-
|
|
839
|
-
## 6.2.0-canary.98
|
|
840
|
-
|
|
841
|
-
## 6.2.0-canary.97
|
|
842
|
-
|
|
843
|
-
### Patch Changes
|
|
844
|
-
|
|
845
|
-
- [#2042](https://github.com/graphcommerce-org/graphcommerce/pull/2042) [`587fd2fe5`](https://github.com/graphcommerce-org/graphcommerce/commit/587fd2fe50c843acd9ffae869372df1df57e0a4b) - Updated german translations ([@action-simon](https://github.com/action-simon))
|
|
846
|
-
|
|
847
|
-
## 6.2.0-canary.96
|
|
848
|
-
|
|
849
|
-
## 6.2.0-canary.95
|
|
850
|
-
|
|
851
|
-
## 6.2.0-canary.94
|
|
852
|
-
|
|
853
|
-
## 6.2.0-canary.93
|
|
854
|
-
|
|
855
|
-
## 6.2.0-canary.92
|
|
856
|
-
|
|
857
|
-
## 6.2.0-canary.91
|
|
858
|
-
|
|
859
|
-
## 6.2.0-canary.90
|
|
860
|
-
|
|
861
|
-
## 6.2.0-canary.89
|
|
862
|
-
|
|
863
|
-
## 6.2.0-canary.88
|
|
864
|
-
|
|
865
|
-
## 6.2.0-canary.87
|
|
866
|
-
|
|
867
|
-
## 6.2.0-canary.86
|
|
868
|
-
|
|
869
|
-
### Minor Changes
|
|
870
|
-
|
|
871
|
-
- [#2023](https://github.com/graphcommerce-org/graphcommerce/pull/2023) [`7cd53fb2a`](https://github.com/graphcommerce-org/graphcommerce/commit/7cd53fb2aca18ae4a56025b2a015fecbda2e47b7) - Added links to test components on the test page. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
872
|
-
|
|
873
|
-
## 6.2.0-canary.85
|
|
874
|
-
|
|
875
|
-
## 6.2.0-canary.84
|
|
876
|
-
|
|
877
|
-
## 6.2.0-canary.83
|
|
878
|
-
|
|
879
|
-
## 6.2.0-canary.82
|
|
880
|
-
|
|
881
|
-
## 6.2.0-canary.81
|
|
882
|
-
|
|
883
|
-
### Minor Changes
|
|
884
|
-
|
|
885
|
-
- [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`609b384de`](https://github.com/graphcommerce-org/graphcommerce/commit/609b384de8cded7a9dd2f29bd516ded810ab970a) - Created a new version of the cart using ActionCards for each CartItem. Different types of CartItems can have different ActionCards. These ActionCards will be overridden with the use of Plugins. An example can be found in the @graphcommerce/magento-product-configurable package. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
886
|
-
|
|
887
|
-
### Patch Changes
|
|
888
|
-
|
|
889
|
-
- [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`e9041802b`](https://github.com/graphcommerce-org/graphcommerce/commit/e9041802b27d6610cc93715ca61acff7f59792e6) - When the switchPoint is zero, make sure the header doesn’t flash when scrolling up on iOS ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
890
|
-
|
|
891
|
-
- [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`e81a9722b`](https://github.com/graphcommerce-org/graphcommerce/commit/e81a9722b5f581dacb624246c14d74aafbf55893) - Make sure the className is forwarded for ActionCardLayout ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
892
|
-
|
|
893
|
-
## 6.2.0-canary.80
|
|
894
|
-
|
|
895
|
-
## 6.2.0-canary.79
|
|
896
|
-
|
|
897
|
-
### Patch Changes
|
|
898
|
-
|
|
899
|
-
- [#2013](https://github.com/graphcommerce-org/graphcommerce/pull/2013) [`c57bdf8a4`](https://github.com/graphcommerce-org/graphcommerce/commit/c57bdf8a4ce936c3eedc4dfada3a464a113ac68a) - Updated @mui and framer-motion packages to latest versions ([@paales](https://github.com/paales))
|
|
900
|
-
|
|
901
|
-
## 6.2.0-canary.78
|
|
902
|
-
|
|
903
|
-
## 6.2.0-canary.77
|
|
904
|
-
|
|
905
|
-
## 6.2.0-canary.76
|
|
906
|
-
|
|
907
|
-
### Patch Changes
|
|
908
|
-
|
|
909
|
-
- [#2005](https://github.com/graphcommerce-org/graphcommerce/pull/2005) [`950521b4d`](https://github.com/graphcommerce-org/graphcommerce/commit/950521b4d46a1b980636c05d68a8f6aba289e85c) - Footer's grid-area's will only be rendered when the props are passed. ([@LeanderMatse](https://github.com/LeanderMatse))
|
|
910
|
-
|
|
911
|
-
## 6.2.0-canary.75
|
|
912
|
-
|
|
913
|
-
## 6.2.0-canary.74
|
|
914
|
-
|
|
915
|
-
## 6.2.0-canary.73
|
|
916
|
-
|
|
917
|
-
## 6.2.0-canary.72
|
|
918
|
-
|
|
919
|
-
## 6.2.0-canary.71
|
|
920
|
-
|
|
921
|
-
### Patch Changes
|
|
922
|
-
|
|
923
|
-
- [#1980](https://github.com/graphcommerce-org/graphcommerce/pull/1980) [`275aaaba3`](https://github.com/graphcommerce-org/graphcommerce/commit/275aaaba34c9db1705183393c4327e8f16b09386) - Fixed overlays closing while still dragging - overlays should only close after releasing pointer ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
924
|
-
|
|
925
|
-
## 6.2.0-canary.70
|
|
926
|
-
|
|
927
|
-
## 6.2.0-canary.69
|
|
928
|
-
|
|
929
|
-
## 6.2.0-canary.68
|
|
930
|
-
|
|
931
|
-
## 6.2.0-canary.67
|
|
932
|
-
|
|
933
|
-
## 6.2.0-canary.66
|
|
934
|
-
|
|
935
|
-
## 6.2.0-canary.65
|
|
936
|
-
|
|
937
|
-
## 6.2.0-canary.64
|
|
938
|
-
|
|
939
|
-
### Patch Changes
|
|
940
|
-
|
|
941
|
-
- [#1998](https://github.com/graphcommerce-org/graphcommerce/pull/1998) [`fdbdcb76f`](https://github.com/graphcommerce-org/graphcommerce/commit/fdbdcb76f918cf74b22253bd641a04c490ceb140) - Fixed users accidentally being able to scroll overlays out of view during open animation ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
942
|
-
|
|
943
|
-
## 6.2.0-canary.63
|
|
944
|
-
|
|
945
|
-
## 6.2.0-canary.62
|
|
946
|
-
|
|
947
|
-
## 6.2.0-canary.61
|
|
948
|
-
|
|
949
|
-
## 6.2.0-canary.60
|
|
950
|
-
|
|
951
|
-
## 6.2.0-canary.59
|
|
952
|
-
|
|
953
|
-
## 6.2.0-canary.58
|
|
954
|
-
|
|
955
|
-
## 6.2.0-canary.57
|
|
956
|
-
|
|
957
|
-
## 6.2.0-canary.56
|
|
958
|
-
|
|
959
|
-
## 6.2.0-canary.55
|
|
960
|
-
|
|
961
|
-
## 6.2.0-canary.54
|
|
962
|
-
|
|
963
|
-
## 6.2.0-canary.53
|
|
964
|
-
|
|
965
|
-
## 6.2.0-canary.52
|
|
966
|
-
|
|
967
|
-
## 6.2.0-canary.51
|
|
968
|
-
|
|
969
|
-
## 6.2.0-canary.50
|
|
970
|
-
|
|
971
|
-
### Minor Changes
|
|
972
|
-
|
|
973
|
-
- [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
|
|
974
|
-
|
|
975
|
-
## 6.2.0-canary.49
|
|
976
|
-
|
|
977
|
-
## 6.2.0-canary.48
|
|
978
|
-
|
|
979
|
-
### Minor Changes
|
|
980
|
-
|
|
981
|
-
- [#1961](https://github.com/graphcommerce-org/graphcommerce/pull/1961) [`4a759c662`](https://github.com/graphcommerce-org/graphcommerce/commit/4a759c66215eaa69edc342b898e05e8f92c3ba9a) - Add Open Graph meta tags to all pages ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
982
|
-
|
|
983
|
-
## 6.2.0-canary.47
|
|
984
|
-
|
|
985
|
-
## 6.2.0-canary.46
|
|
986
|
-
|
|
987
|
-
## 6.2.0-canary.45
|
|
988
|
-
|
|
989
|
-
## 6.2.0-canary.44
|
|
990
|
-
|
|
991
|
-
## 6.2.0-canary.43
|
|
992
|
-
|
|
993
|
-
### Patch Changes
|
|
994
|
-
|
|
995
|
-
- [#1965](https://github.com/graphcommerce-org/graphcommerce/pull/1965) [`44b2911d7`](https://github.com/graphcommerce-org/graphcommerce/commit/44b2911d73fb6c6c7188f16d5890ca93877e9aa7) - Added prop to LayoutHeader to be able to hide the back button ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
996
|
-
|
|
997
|
-
## 6.2.0-canary.42
|
|
998
|
-
|
|
999
|
-
## 6.2.0-canary.41
|
|
1000
|
-
|
|
1001
|
-
### Patch Changes
|
|
1002
|
-
|
|
1003
|
-
- [#1960](https://github.com/graphcommerce-org/graphcommerce/pull/1960) [`f78caf5a8`](https://github.com/graphcommerce-org/graphcommerce/commit/f78caf5a83683f1ae4b901fb94bd22d50943fa2f) - Updated packages @apollo/client, react-hook-form, @emotion/\*, @lingui/\*, @mui/\* and various others. ([@paales](https://github.com/paales))
|
|
1004
|
-
|
|
1005
|
-
## 6.2.0-canary.40
|
|
1006
|
-
|
|
1007
|
-
## 6.2.0-canary.39
|
|
1008
|
-
|
|
1009
|
-
## 6.2.0-canary.38
|
|
1010
|
-
|
|
1011
|
-
### Patch Changes
|
|
1012
|
-
|
|
1013
|
-
- [#1958](https://github.com/graphcommerce-org/graphcommerce/pull/1958) [`0a311b6eb`](https://github.com/graphcommerce-org/graphcommerce/commit/0a311b6ebb5a52e2a7f1d2e6a0fe113904fa2d34) - Left overlays wouldn't properly snap when the overlay gets wider than the viewport ([@paales](https://github.com/paales))
|
|
1014
|
-
|
|
1015
|
-
## 6.2.0-canary.37
|
|
1016
|
-
|
|
1017
|
-
## 6.2.0-canary.36
|
|
1018
|
-
|
|
1019
|
-
## 6.2.0-canary.35
|
|
1020
|
-
|
|
1021
|
-
## 6.2.0-canary.34
|
|
1022
|
-
|
|
1023
|
-
## 6.2.0-canary.33
|
|
1024
|
-
|
|
1025
|
-
## 6.2.0-canary.32
|
|
1026
|
-
|
|
1027
|
-
## 6.2.0-canary.31
|
|
1028
|
-
|
|
1029
|
-
## 6.2.0-canary.30
|
|
1030
|
-
|
|
1031
|
-
## 6.2.0-canary.29
|
|
1032
|
-
|
|
1033
|
-
### Patch Changes
|
|
1034
|
-
|
|
1035
|
-
- [#1946](https://github.com/graphcommerce-org/graphcommerce/pull/1946) [`87260618b`](https://github.com/graphcommerce-org/graphcommerce/commit/87260618b8abaebd727ff4435abb1aea6ed33730) - Firefox: scroll snap overlays would snap to 0 when the scroll snap targets wouldn’t exactly match the possible targets. ([@paales](https://github.com/paales))
|
|
1036
|
-
|
|
1037
|
-
## 6.2.0-canary.28
|
|
1038
|
-
|
|
1039
|
-
## 6.2.0-canary.27
|
|
1040
|
-
|
|
1041
|
-
## 6.2.0-canary.26
|
|
1042
|
-
|
|
1043
|
-
## 6.2.0-canary.25
|
|
1044
|
-
|
|
1045
|
-
## 6.2.0-canary.24
|
|
1046
|
-
|
|
1047
|
-
## 6.2.0-canary.23
|
|
1048
|
-
|
|
1049
|
-
## 6.2.0-canary.22
|
|
1050
|
-
|
|
1051
|
-
### Patch Changes
|
|
1052
|
-
|
|
1053
|
-
- [#1939](https://github.com/graphcommerce-org/graphcommerce/pull/1939) [`0cdccf681`](https://github.com/graphcommerce-org/graphcommerce/commit/0cdccf6817d6a769f59cccb68b1b1b8b4405cbd0) - Make blogListItem date prop optional ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
1054
|
-
|
|
1055
|
-
## 6.2.0-canary.21
|
|
1056
|
-
|
|
1057
|
-
## 6.2.0-canary.20
|
|
1058
|
-
|
|
1059
|
-
## 6.2.0-canary.19
|
|
1060
|
-
|
|
1061
|
-
## 6.2.0-canary.18
|
|
1062
|
-
|
|
1063
|
-
## 6.2.0-canary.17
|
|
1064
|
-
|
|
1065
|
-
### Patch Changes
|
|
1066
|
-
|
|
1067
|
-
- [#1934](https://github.com/graphcommerce-org/graphcommerce/pull/1934) [`96ac0320a`](https://github.com/graphcommerce-org/graphcommerce/commit/96ac0320a30bc55a6db5d46663d28b552fda4db6) - Fixed floating overlays not closing when clicking beside the overlay ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1068
|
-
|
|
1069
|
-
## 6.2.0-canary.16
|
|
1070
|
-
|
|
1071
|
-
### Patch Changes
|
|
1072
|
-
|
|
1073
|
-
- [#1930](https://github.com/graphcommerce-org/graphcommerce/pull/1930) [`c8d023e9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c8d023e9e874131cd9f8fe192b1fca5fe1a26ee3) - Fix the close menu on search and add the option to secondary menu items ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
1074
|
-
|
|
1075
|
-
## 6.2.0-canary.15
|
|
1076
|
-
|
|
1077
|
-
## 6.2.0-canary.14
|
|
1078
|
-
|
|
1079
|
-
## 6.2.0-canary.13
|
|
1080
|
-
|
|
1081
|
-
## 6.2.0-canary.12
|
|
1082
|
-
|
|
1083
|
-
## 6.2.0-canary.11
|
|
1084
|
-
|
|
1085
|
-
## 6.2.0-canary.10
|
|
1086
|
-
|
|
1087
|
-
## 6.2.0-canary.9
|
|
1088
|
-
|
|
1089
|
-
### Patch Changes
|
|
1090
|
-
|
|
1091
|
-
- [#1897](https://github.com/graphcommerce-org/graphcommerce/pull/1897) [`f44d7cec6`](https://github.com/graphcommerce-org/graphcommerce/commit/f44d7cec61766f4768c30d29b211a12f2846e9f6) - Overlays can now be configured to get a bgColor ([@FrankHarland](https://github.com/FrankHarland))
|
|
1092
|
-
|
|
1093
|
-
## 6.2.0-canary.8
|
|
1094
|
-
|
|
1095
|
-
## 6.2.0-canary.7
|
|
1096
|
-
|
|
1097
|
-
## 6.2.0-canary.6
|
|
1098
|
-
|
|
1099
|
-
## 6.1.1-canary.5
|
|
1100
|
-
|
|
1101
|
-
### Patch Changes
|
|
1102
|
-
|
|
1103
|
-
- [#1913](https://github.com/graphcommerce-org/graphcommerce/pull/1913) [`17eac116d`](https://github.com/graphcommerce-org/graphcommerce/commit/17eac116dbf2b811a67bfefd735d5a5a3e2b20dc) - Fixed zIndex issue with CartFab and ScrollerButton ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1104
|
-
|
|
1105
|
-
- [#1913](https://github.com/graphcommerce-org/graphcommerce/pull/1913) [`61b1987eb`](https://github.com/graphcommerce-org/graphcommerce/commit/61b1987eb8d37566cb4675f0ae962925aef2fc6d) - Fixed RowLinks ScrollerButton alignment when content is shown beside the Scroller ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1106
|
-
|
|
1107
|
-
## 6.1.1-canary.4
|
|
1108
|
-
|
|
1109
|
-
## 6.1.1-canary.3
|
|
1110
|
-
|
|
1111
|
-
## 6.1.1-canary.2
|
|
1112
|
-
|
|
1113
|
-
## 6.1.1-canary.1
|
|
1114
|
-
|
|
1115
|
-
## 6.1.1-canary.0
|
|
1116
|
-
|
|
1117
|
-
## 6.1.0
|
|
1118
|
-
|
|
1119
|
-
### Patch Changes
|
|
1120
|
-
|
|
1121
|
-
- [#1867](https://github.com/graphcommerce-org/graphcommerce/pull/1867) [`8e4bf4ca7`](https://github.com/graphcommerce-org/graphcommerce/commit/8e4bf4ca7d0c32525df50df4a350ab19a2fbf620) - Overlay would show an incorrect box-shadow for the variant=bottom ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1122
|
-
|
|
1123
|
-
- [#1895](https://github.com/graphcommerce-org/graphcommerce/pull/1895) [`49d34bda4`](https://github.com/graphcommerce-org/graphcommerce/commit/49d34bda4b4426ad97272ce0a28e17f52e9f4e06) - When opening the overlay while darkmode was enabled, it would close immediately ([@paales](https://github.com/paales))
|
|
1124
|
-
|
|
1125
|
-
- [#1867](https://github.com/graphcommerce-org/graphcommerce/pull/1867) [`9b7e4414c`](https://github.com/graphcommerce-org/graphcommerce/commit/9b7e4414c537e775c1f2d5de65ffde6fc39b7f3b) - Disallow overscrolling on overlays on mobile ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1126
|
-
|
|
1127
|
-
## 6.0.2-canary.22
|
|
1128
|
-
|
|
1129
|
-
## 6.0.2-canary.21
|
|
1130
|
-
|
|
1131
|
-
## 6.0.2-canary.20
|
|
1132
|
-
|
|
1133
|
-
## 6.0.2-canary.19
|
|
1134
|
-
|
|
1135
|
-
## 6.0.2-canary.18
|
|
1136
|
-
|
|
1137
|
-
## 6.0.2-canary.17
|
|
1138
|
-
|
|
1139
|
-
### Patch Changes
|
|
1140
|
-
|
|
1141
|
-
- [#1895](https://github.com/graphcommerce-org/graphcommerce/pull/1895) [`49d34bda4`](https://github.com/graphcommerce-org/graphcommerce/commit/49d34bda4b4426ad97272ce0a28e17f52e9f4e06) - When opening the overlay while darkmode was enabled, it would close immediately ([@paales](https://github.com/paales))
|
|
1142
|
-
|
|
1143
|
-
## 6.0.2-canary.16
|
|
1144
|
-
|
|
1145
|
-
## 6.0.2-canary.15
|
|
1146
|
-
|
|
1147
|
-
## 6.0.2-canary.14
|
|
1148
|
-
|
|
1149
|
-
## 6.0.2-canary.13
|
|
1150
|
-
|
|
1151
|
-
## 6.0.2-canary.12
|
|
1152
|
-
|
|
1153
|
-
## 6.0.2-canary.11
|
|
1154
|
-
|
|
1155
|
-
## 6.0.2-canary.10
|
|
1156
|
-
|
|
1157
|
-
## 6.0.2-canary.9
|
|
1158
|
-
|
|
1159
|
-
## 6.0.2-canary.8
|
|
1160
|
-
|
|
1161
|
-
## 6.0.2-canary.7
|
|
1162
|
-
|
|
1163
|
-
## 6.0.2-canary.6
|
|
1164
|
-
|
|
1165
|
-
## 6.0.2-canary.5
|
|
1166
|
-
|
|
1167
|
-
## 6.0.2-canary.4
|
|
1168
|
-
|
|
1169
|
-
## 6.0.2-canary.3
|
|
1170
|
-
|
|
1171
|
-
## 6.0.2-canary.2
|
|
1172
|
-
|
|
1173
|
-
### Patch Changes
|
|
1174
|
-
|
|
1175
|
-
- [#1867](https://github.com/graphcommerce-org/graphcommerce/pull/1867) [`8e4bf4ca7`](https://github.com/graphcommerce-org/graphcommerce/commit/8e4bf4ca7d0c32525df50df4a350ab19a2fbf620) - Fix incorrect box-shadow on bottom overlays ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1176
|
-
|
|
1177
|
-
- [#1867](https://github.com/graphcommerce-org/graphcommerce/pull/1867) [`5cf7c8c9e`](https://github.com/graphcommerce-org/graphcommerce/commit/5cf7c8c9ee95d28be0a7f476ea3f06f482c4fd5d) - Fix MdBottom class affecting Sm overlay ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1178
|
-
|
|
1179
|
-
- [#1867](https://github.com/graphcommerce-org/graphcommerce/pull/1867) [`9b7e4414c`](https://github.com/graphcommerce-org/graphcommerce/commit/9b7e4414c537e775c1f2d5de65ffde6fc39b7f3b) - Disallow overscrolling on overlays on mobile ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1180
|
-
|
|
1181
|
-
- [#1867](https://github.com/graphcommerce-org/graphcommerce/pull/1867) [`197b71711`](https://github.com/graphcommerce-org/graphcommerce/commit/197b717119da2a1876d36931c0063ad6d32a675c) - Overlay fixess ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1182
|
-
|
|
1183
|
-
## 6.0.2-canary.1
|
|
1184
|
-
|
|
1185
|
-
## 6.0.2-canary.0
|
|
1186
|
-
|
|
1187
|
-
## 6.0.1
|
|
1188
|
-
|
|
1189
|
-
### Patch Changes
|
|
1190
|
-
|
|
1191
|
-
- [#1854](https://github.com/graphcommerce-org/graphcommerce/pull/1854) [`f4df162c5`](https://github.com/graphcommerce-org/graphcommerce/commit/f4df162c59d90298f305f51d409974592ab8e680) - Overlay desktop bottom didn't have a box-shadow ([@paales](https://github.com/paales))
|
|
1192
|
-
|
|
1193
|
-
- [#1854](https://github.com/graphcommerce-org/graphcommerce/pull/1854) [`ba92b3ebe`](https://github.com/graphcommerce-org/graphcommerce/commit/ba92b3ebe9dae16f156f6c0d62bdf25a7df1a2a7) - Allow bottom overlays to resize and animate in position ([@paales](https://github.com/paales))
|
|
1194
|
-
|
|
1195
|
-
## 6.0.1-canary.7
|
|
1196
|
-
|
|
1197
|
-
## 6.0.1-canary.6
|
|
1198
|
-
|
|
1199
|
-
## 6.0.1-canary.5
|
|
1200
|
-
|
|
1201
|
-
## 6.0.1-canary.4
|
|
1202
|
-
|
|
1203
|
-
## 6.0.1-canary.3
|
|
1204
|
-
|
|
1205
|
-
## 6.0.1-canary.2
|
|
1206
|
-
|
|
1207
|
-
## 6.0.1-canary.1
|
|
1208
|
-
|
|
1209
|
-
## 6.0.1-canary.0
|
|
1210
|
-
|
|
1211
|
-
### Patch Changes
|
|
1212
|
-
|
|
1213
|
-
- [#1854](https://github.com/graphcommerce-org/graphcommerce/pull/1854) [`f4df162c5`](https://github.com/graphcommerce-org/graphcommerce/commit/f4df162c59d90298f305f51d409974592ab8e680) - Overlay desktop bottom didn't have a box-shadow ([@paales](https://github.com/paales))
|
|
1214
|
-
|
|
1215
|
-
- [#1854](https://github.com/graphcommerce-org/graphcommerce/pull/1854) [`ba92b3ebe`](https://github.com/graphcommerce-org/graphcommerce/commit/ba92b3ebe9dae16f156f6c0d62bdf25a7df1a2a7) - Allow bottom overlays to resize and animate in position ([@paales](https://github.com/paales))
|
|
1216
|
-
|
|
1217
|
-
## 6.0.0
|
|
1218
|
-
|
|
1219
|
-
### Major Changes
|
|
1220
|
-
|
|
1221
|
-
- [#1832](https://github.com/graphcommerce-org/graphcommerce/pull/1832) [`26d4243d5`](https://github.com/graphcommerce-org/graphcommerce/commit/26d4243d5b63d604e5a36386d9b01914db5f2918) - Added a new RowLink component with variants: Inline, ImageLabelSwiper, LogoSwiper and Usps. Updated the demo to show off these new components. ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1222
|
-
|
|
1223
|
-
- [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`0cc472915`](https://github.com/graphcommerce-org/graphcommerce/commit/0cc4729154d316227a41712b5f0adf514768e91f) - Introducing the new ProductFiltersPro component set with completely new filter and UI behavior. Filters will appear as a popper on the md and up breakpoints and as an overlay on sm and below breakpoints. Filters now have an Apply button instead of applying directly. ([@paales](https://github.com/paales))
|
|
1224
|
-
|
|
1225
|
-
### Minor Changes
|
|
1226
|
-
|
|
1227
|
-
- [#1822](https://github.com/graphcommerce-org/graphcommerce/pull/1822) [`cc02c46e3`](https://github.com/graphcommerce-org/graphcommerce/commit/cc02c46e32c9a44a90789591f43d91ae234dac84) - Added Facebook Open Graph tags to product pages:
|
|
1228
|
-
|
|
1229
|
-
- og:title
|
|
1230
|
-
- og:image
|
|
1231
|
-
- og:url
|
|
1232
|
-
- type
|
|
1233
|
-
- product:retailer_part_no
|
|
1234
|
-
- product:price:amount
|
|
1235
|
-
- product:sale_price:amount
|
|
1236
|
-
- product:price:currency
|
|
1237
|
-
- product:category ([@KMalkowski](https://github.com/KMalkowski))
|
|
1238
|
-
|
|
1239
|
-
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`fafa76ba9`](https://github.com/graphcommerce-org/graphcommerce/commit/fafa76ba9e655739171abc553d309795c9d8e5c2) - Overlays now use an additional scroll container to handle vertical scroll, fixing:
|
|
1240
|
-
|
|
1241
|
-
- Scrolling on desktop will not close the overlay when there is content to be scrolled
|
|
1242
|
-
- Scrolling will not snap to bottom / top when the content is barely scrollable
|
|
1243
|
-
- Dragging will only open or close the drawer, not something inbetween
|
|
1244
|
-
- Swiping up on mobile will not close the overlay, first you need to scroll to the top of the overlay.
|
|
1245
|
-
- Floating overlays will now scroll inside the floating overlay. ([@paales](https://github.com/paales))
|
|
1246
|
-
|
|
1247
|
-
- [#1798](https://github.com/graphcommerce-org/graphcommerce/pull/1798) [`3cee17a51`](https://github.com/graphcommerce-org/graphcommerce/commit/3cee17a51ff961f4363d95c9decb8c7d1f9ca319) - Added utility function `filterByTypename` function to filter types based on `__typename` ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
1248
|
-
|
|
1249
|
-
- [#1814](https://github.com/graphcommerce-org/graphcommerce/pull/1814) [`15aa59049`](https://github.com/graphcommerce-org/graphcommerce/commit/15aa590493bf7639231f3bb3dd623c234ebad7cf) - ActionCard default styling introduced for a more inline and changed the look of selected filters. ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1250
|
-
|
|
1251
|
-
- [#1793](https://github.com/graphcommerce-org/graphcommerce/pull/1793) [`5562fa69b`](https://github.com/graphcommerce-org/graphcommerce/commit/5562fa69b1bc260f68555dcfaf30153eda489bed) - Add newsletter subscribe form ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1252
|
-
|
|
1253
|
-
### Patch Changes
|
|
1254
|
-
|
|
1255
|
-
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`dbc2ae0d3`](https://github.com/graphcommerce-org/graphcommerce/commit/dbc2ae0d360f645c3eab2a8f38b3d1431eab7d80) - Overlays will only hide the body scrollbar for right overlays so the page doesnt jump when opening. ([@paales](https://github.com/paales))
|
|
1256
|
-
|
|
1257
|
-
- [#1836](https://github.com/graphcommerce-org/graphcommerce/pull/1836) [`2857229c4`](https://github.com/graphcommerce-org/graphcommerce/commit/2857229c4d1c776540218f5e4cab3be524161502) - Overlays can not be closed as easily by swiping up, it will now always stop at the top over the overlay. ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1258
|
-
|
|
1259
|
-
- [#1771](https://github.com/graphcommerce-org/graphcommerce/pull/1771) [`aec07f567`](https://github.com/graphcommerce-org/graphcommerce/commit/aec07f5679472281b8eb71cf6967a1ff775d2a7f) - Navigation became visible when resizing the viewport. ([@paales](https://github.com/paales))
|
|
1260
|
-
|
|
1261
|
-
- [#1809](https://github.com/graphcommerce-org/graphcommerce/pull/1809) [`2da3c9214`](https://github.com/graphcommerce-org/graphcommerce/commit/2da3c92148aef08813b95e404a25796acf0eefd2) - Google Analytics now supports view_item, view_cart and remove_from_cart ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
1262
|
-
|
|
1263
|
-
- [#1792](https://github.com/graphcommerce-org/graphcommerce/pull/1792) [`b0b8348b0`](https://github.com/graphcommerce-org/graphcommerce/commit/b0b8348b0d294f98140c2605691d47011add5b01) - Overlay headers with long titles now render correctly ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1264
|
-
|
|
1265
|
-
- [#1829](https://github.com/graphcommerce-org/graphcommerce/pull/1829) [`5f5f0dd1e`](https://github.com/graphcommerce-org/graphcommerce/commit/5f5f0dd1e0960b4cad694c5aaddffc7ccfc2bb1a) - Overlay right variant doesn't close automatically in firefox anymore ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1266
|
-
|
|
1267
|
-
- [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`16e91da42`](https://github.com/graphcommerce-org/graphcommerce/commit/16e91da42dcb454ea4761d1780b9338c88ef1463) - Corrected spelling mistake: incomming to incoming ([@paales](https://github.com/paales))
|
|
1268
|
-
|
|
1269
|
-
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`0bac3bdd8`](https://github.com/graphcommerce-org/graphcommerce/commit/0bac3bdd8505ccad8036d13e19559f2b3523fd92) - Navigation layout-animations will now only trigger when the active menu item changes ([@paales](https://github.com/paales))
|
|
1270
|
-
|
|
1271
|
-
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`6bffd680b`](https://github.com/graphcommerce-org/graphcommerce/commit/6bffd680b9d6a370048d06842cd3ce73130471dd) - Overlays now can't be closed when dragging beyong the pane (and actually opening them). ([@paales](https://github.com/paales))
|
|
1272
|
-
|
|
1273
|
-
- [#1834](https://github.com/graphcommerce-org/graphcommerce/pull/1834) [`58f7a63a4`](https://github.com/graphcommerce-org/graphcommerce/commit/58f7a63a4a4ef3bfcaeea75e393902b97138ba54) - Overlays may now be larger than 100% of the viewport without breaking. ([@paales](https://github.com/paales))
|
|
1274
|
-
|
|
1275
|
-
- [#1831](https://github.com/graphcommerce-org/graphcommerce/pull/1831) [`f4008bae3`](https://github.com/graphcommerce-org/graphcommerce/commit/f4008bae3e3ac8288c731b1dd87e6c6aef8e81fc) - Added a linting rule that disallows `import { Theme } from '@emotion/react'` because that causes huge performance issues. Also added `tsc:trace` to the root project to debug typescript performance issues. ([@paales](https://github.com/paales))
|
|
1276
|
-
|
|
1277
|
-
- [`bcaf428a3`](https://github.com/graphcommerce-org/graphcommerce/commit/bcaf428a31f2b480d442d347d09c0131a8569155) - Overlay timing issues resolved which would cause overlays to close or flicker. ([@paales](https://github.com/paales))
|
|
300
|
+
- [#2216](https://github.com/graphcommerce-org/graphcommerce/pull/2216) [`74eb239`](https://github.com/graphcommerce-org/graphcommerce/commit/74eb2393a64988649178d59f53b33d41fecdd769) - Added Intl components and replaced usage sites ([@paales](https://github.com/paales))
|
|
1278
301
|
|
|
1279
|
-
- [#
|
|
302
|
+
- [#2216](https://github.com/graphcommerce-org/graphcommerce/pull/2216) [`012b865`](https://github.com/graphcommerce-org/graphcommerce/commit/012b86560d93e35dd7ca4a9469ed65e6fb83ead0) - Move arguments of responsiveVal around so the minBreakpoint can be given as third argument ([@paales](https://github.com/paales))
|
|
1280
303
|
|
|
1281
|
-
- [#
|
|
304
|
+
- [#2216](https://github.com/graphcommerce-org/graphcommerce/pull/2216) [`223f16a`](https://github.com/graphcommerce-org/graphcommerce/commit/223f16a0e9a7718e52e81a4e2902471a8b78d35c) - LazyHydrate component now accepts a height prop that allows deferring of rendering of the child component when initially rendered on the client. This improves performance. ([@paales](https://github.com/paales))
|
|
1282
305
|
|
|
1283
|
-
|
|
306
|
+
## 8.1.0-canary.41
|
|
1284
307
|
|
|
1285
|
-
|
|
308
|
+
### Patch Changes
|
|
1286
309
|
|
|
1287
|
-
- [#
|
|
310
|
+
- [#2242](https://github.com/graphcommerce-org/graphcommerce/pull/2242) [`a4cce76`](https://github.com/graphcommerce-org/graphcommerce/commit/a4cce76ca37af2bec604e953ada4bb11bd91f55d) - Add option to show an extended version of the pagination component. Configurable via the "productListPaginationVariant" key in your graphcommerce.config.js COMPACT means: "< Page X of Y >" EXTENDED means: "< 1 2 ... [5] ... 10 11 >" ([@FrankHarland](https://github.com/FrankHarland))
|
|
1288
311
|
|
|
1289
|
-
|
|
312
|
+
## 8.1.0-canary.40
|
|
1290
313
|
|
|
1291
|
-
|
|
314
|
+
### Minor Changes
|
|
1292
315
|
|
|
1293
|
-
|
|
316
|
+
- [#2306](https://github.com/graphcommerce-org/graphcommerce/pull/2306) [`5e188e8`](https://github.com/graphcommerce-org/graphcommerce/commit/5e188e830dca4730c73830858f59a94e9d41ed12) - Add delete account functionality to the account section. Disabled by default and can be enabled through the config. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
1294
317
|
|
|
1295
|
-
##
|
|
318
|
+
## 8.1.0-canary.31
|
|
1296
319
|
|
|
1297
320
|
### Patch Changes
|
|
1298
321
|
|
|
1299
|
-
- [#
|
|
1300
|
-
|
|
1301
|
-
## 6.0.0-canary.51
|
|
322
|
+
- [#2297](https://github.com/graphcommerce-org/graphcommerce/pull/2297) [`e41cb6f`](https://github.com/graphcommerce-org/graphcommerce/commit/e41cb6fcdde95629d29c03b1a700c6097f00c901) - Prevent gallery thunbnails from scrolling when opening or closing a layout overlay ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
1302
323
|
|
|
1303
|
-
##
|
|
324
|
+
## 8.1.0-canary.27
|
|
1304
325
|
|
|
1305
|
-
|
|
326
|
+
### Minor Changes
|
|
1306
327
|
|
|
1307
|
-
|
|
328
|
+
- [#2273](https://github.com/graphcommerce-org/graphcommerce/pull/2273) [`77955c5`](https://github.com/graphcommerce-org/graphcommerce/commit/77955c56ac8633ab1c5e0f3ddb25e3a87236e2bb) - Improve Breadcrumbs on Category and Product pages ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1308
329
|
|
|
1309
|
-
##
|
|
330
|
+
## 8.1.0-canary.26
|
|
1310
331
|
|
|
1311
332
|
### Minor Changes
|
|
1312
333
|
|
|
1313
|
-
- [#
|
|
1314
|
-
|
|
1315
|
-
|
|
334
|
+
- [#2274](https://github.com/graphcommerce-org/graphcommerce/pull/2274) [`4a24813`](https://github.com/graphcommerce-org/graphcommerce/commit/4a248130041484833768fe6018f91d05a59522de) - Add props to DarkLightModeThemeProvider to disable dark/light mode or to change the default ssr mode. Save user chosen mode in localStorage ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
335
|
+
|
|
336
|
+
### Patch Changes
|
|
1316
337
|
|
|
1317
|
-
|
|
338
|
+
- [#2274](https://github.com/graphcommerce-org/graphcommerce/pull/2274) [`57131cf`](https://github.com/graphcommerce-org/graphcommerce/commit/57131cfcc43695cc3e22f28912feb2a8439620a7) - Created a cssFlags functionality to allow for conditional rendering based on stored flags in the localStorage ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
1318
339
|
|
|
1319
|
-
##
|
|
340
|
+
## 8.1.0-canary.17
|
|
1320
341
|
|
|
1321
|
-
###
|
|
342
|
+
### Minor Changes
|
|
1322
343
|
|
|
1323
|
-
- [#
|
|
344
|
+
- [#2209](https://github.com/graphcommerce-org/graphcommerce/pull/2209) [`2872cab`](https://github.com/graphcommerce-org/graphcommerce/commit/2872cabdca9ee4f0378fd411c6a633f71bb92f1f) - Removed useMediaQuery from the wishlist and cart ItemActionCard and replaced it with a new responsive size prop. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1324
345
|
|
|
1325
|
-
##
|
|
346
|
+
## 8.1.0-canary.9
|
|
1326
347
|
|
|
1327
348
|
### Patch Changes
|
|
1328
349
|
|
|
1329
|
-
- [#
|
|
1330
|
-
|
|
1331
|
-
## 6.0.0-canary.43
|
|
350
|
+
- [#2223](https://github.com/graphcommerce-org/graphcommerce/pull/2223) [`d7459fe`](https://github.com/graphcommerce-org/graphcommerce/commit/d7459feb6e6902af09ab9ff766c0b3b1a74fb723) - Updated canonicalize helper for better multi domain support ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1332
351
|
|
|
1333
|
-
##
|
|
352
|
+
## 8.1.0-canary.8
|
|
1334
353
|
|
|
1335
|
-
|
|
354
|
+
### Patch Changes
|
|
1336
355
|
|
|
1337
|
-
|
|
356
|
+
- [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`444e446`](https://github.com/graphcommerce-org/graphcommerce/commit/444e446a218cc9da3defb940a6d5cce0229ff845) - Added clear upgrade instructions for linguiLocale ([@paales](https://github.com/paales))
|
|
1338
357
|
|
|
1339
|
-
##
|
|
358
|
+
## 8.0.6-canary.2
|
|
1340
359
|
|
|
1341
360
|
### Patch Changes
|
|
1342
361
|
|
|
1343
|
-
- [`
|
|
362
|
+
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`43bd04a`](https://github.com/graphcommerce-org/graphcommerce/commit/43bd04a777c5800cc7e01bee1e123a5aad82f194) - Added useIsSSR hook that will properly resolve when the page is rendered on the server and on first render, but will return false when a component is rendered on the client directly. ([@FrankHarland](https://github.com/FrankHarland))
|
|
1344
363
|
|
|
1345
|
-
|
|
364
|
+
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores ([@FrankHarland](https://github.com/FrankHarland))
|
|
1346
365
|
|
|
1347
|
-
##
|
|
366
|
+
## 8.0.6-canary.0
|
|
1348
367
|
|
|
1349
368
|
### Patch Changes
|
|
1350
369
|
|
|
1351
|
-
- [#
|
|
370
|
+
- [#2196](https://github.com/graphcommerce-org/graphcommerce/pull/2196) [`84c50e4`](https://github.com/graphcommerce-org/graphcommerce/commit/84c50e49a1a7f154d4a8f4045c37e773e20283ad) - Allow Lingui to use linguiLocale with country identifiers like `en-us`, it would always load `en` in this case. Introced a new `useLocale` hook to use the correct locale string to use in Intl methods. ([@paales](https://github.com/paales))
|
|
1352
371
|
|
|
1353
|
-
##
|
|
372
|
+
## 8.0.5
|
|
1354
373
|
|
|
1355
|
-
|
|
374
|
+
### Patch Changes
|
|
1356
375
|
|
|
1357
|
-
|
|
376
|
+
- [#2236](https://github.com/graphcommerce-org/graphcommerce/pull/2236) [`85fb916`](https://github.com/graphcommerce-org/graphcommerce/commit/85fb916e5ec2a1456a93a59bf92a5f414fee8595) - Solve issue where the inert prop wouldnt be properly forwarded ([@paales](https://github.com/paales))
|
|
1358
377
|
|
|
1359
|
-
- [#
|
|
378
|
+
- [#2235](https://github.com/graphcommerce-org/graphcommerce/pull/2235) [`de99691`](https://github.com/graphcommerce-org/graphcommerce/commit/de9969155e271cc2535147479b80b602a1b9c335) - The Lazyhydrate component to accepts any BoxProps. Replaced `<section>` with a `<Box>` so it doesn't hold symantic meaning.
|
|
1360
379
|
|
|
1361
|
-
|
|
380
|
+
Please note: If you've used child selectors to style the section, please make sure you update your styles. ([@carlocarels90](https://github.com/carlocarels90))
|
|
1362
381
|
|
|
1363
|
-
|
|
382
|
+
- [#2241](https://github.com/graphcommerce-org/graphcommerce/pull/2241) [`6f3fe60`](https://github.com/graphcommerce-org/graphcommerce/commit/6f3fe60441762d55cb46d587279121e8fe469cdd) - Decreased layout shift on product pages by reserving space for sidebar ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1364
383
|
|
|
1365
|
-
- [#
|
|
384
|
+
- [#2241](https://github.com/graphcommerce-org/graphcommerce/pull/2241) [`cde3c31`](https://github.com/graphcommerce-org/graphcommerce/commit/cde3c310abf2ac3c82d1062d5fb0a4c00ba50cff) - Removed unnecessary vendor prefixes ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1366
385
|
|
|
1367
|
-
- [#
|
|
386
|
+
- [#2241](https://github.com/graphcommerce-org/graphcommerce/pull/2241) [`4c83636`](https://github.com/graphcommerce-org/graphcommerce/commit/4c836366c324881ee5121c645c5f94fc60e3ebb3) - Prevent horizontal scrollbar on small screens when using SidebarGallery ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1368
387
|
|
|
1369
|
-
|
|
1370
|
-
- Scrolling will not snap to bottom / top when the content is barely scrollable
|
|
1371
|
-
- Dragging will only open or close the drawer, not something inbetween
|
|
1372
|
-
- Swiping up on mobile will not close the overlay, first you need to scroll to the top of the overlay.
|
|
1373
|
-
- Floating overlays will now scroll inside the floating overlay. ([@paales](https://github.com/paales))
|
|
388
|
+
- [#2230](https://github.com/graphcommerce-org/graphcommerce/pull/2230) [`1da6b82`](https://github.com/graphcommerce-org/graphcommerce/commit/1da6b82dbb7e1543542d809ea625a8867643ea68) - Fix menu item visibility in accessability tree ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
1374
389
|
|
|
1375
|
-
|
|
390
|
+
## 8.0.4
|
|
1376
391
|
|
|
1377
|
-
|
|
392
|
+
### Patch Changes
|
|
1378
393
|
|
|
1379
|
-
- [#
|
|
394
|
+
- [#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 ([@carlocarels90](https://github.com/carlocarels90))
|
|
1380
395
|
|
|
1381
|
-
##
|
|
396
|
+
## 8.0.1
|
|
1382
397
|
|
|
1383
398
|
### Patch Changes
|
|
1384
399
|
|
|
1385
|
-
- [#
|
|
400
|
+
- [#2191](https://github.com/graphcommerce-org/graphcommerce/pull/2191) [`13ffa6b`](https://github.com/graphcommerce-org/graphcommerce/commit/13ffa6b945f1c72bf1fdc9298e4ce5dd76b48d73) - When a user was logging in from the checkout react would be caught in an infinite loop and thus the page would hang ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
1386
401
|
|
|
1387
|
-
##
|
|
402
|
+
## 8.0.0
|
|
1388
403
|
|
|
1389
404
|
### Minor Changes
|
|
1390
405
|
|
|
1391
|
-
- [#
|
|
1392
|
-
- Actioncard default styling
|
|
1393
|
-
- Active filter styling ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1394
|
-
|
|
1395
|
-
## 6.0.0-canary.31
|
|
1396
|
-
|
|
1397
|
-
### Patch Changes
|
|
406
|
+
- [#2133](https://github.com/graphcommerce-org/graphcommerce/pull/2133) [`133f908`](https://github.com/graphcommerce-org/graphcommerce/commit/133f908200a79589036420f2925835724522cab8) - Added new `<LazyHydrate/>` component to improve the Total Blocking Time and implemented them in, `<RowRenderer/>`, `<ProductListItemBase/>`, `<Footer/>` and for the `<NavigationProvider/>`. Reduced the TBT by 50% on the homepage and other pages. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1398
407
|
|
|
1399
|
-
- [#
|
|
408
|
+
- [#2073](https://github.com/graphcommerce-org/graphcommerce/pull/2073) [`05ce566`](https://github.com/graphcommerce-org/graphcommerce/commit/05ce5665b3c63b0620266c8ac35e8b555e2029e8) - It is now allowed to use children inside the footer component ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1400
409
|
|
|
1401
|
-
|
|
410
|
+
- [#2018](https://github.com/graphcommerce-org/graphcommerce/pull/2018) [`750aa6a`](https://github.com/graphcommerce-org/graphcommerce/commit/750aa6a72710869d54244467253212e551d335e0) - Changed the layout of the succes page. We are using ActionCards right now to match the design of the cart. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1402
411
|
|
|
1403
412
|
### Patch Changes
|
|
1404
413
|
|
|
1405
|
-
- [#
|
|
414
|
+
- [#2161](https://github.com/graphcommerce-org/graphcommerce/pull/2161) [`cc5c636`](https://github.com/graphcommerce-org/graphcommerce/commit/cc5c636f9f2b3d9fa33384b9a02d6ad3631aa414) - On certain breakpoints the Product page gallery had additional padding applied. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
415
|
+
|
|
416
|
+
- [#2138](https://github.com/graphcommerce-org/graphcommerce/pull/2138) [`a057d62`](https://github.com/graphcommerce-org/graphcommerce/commit/a057d6274e1d427e631ab3fad7a16078315103b8) - When viewing the homepage the logo will not have a `<a/>` tag wrapped anymore. ([@carlocarels90](https://github.com/carlocarels90))
|
|
1406
417
|
|
|
1407
|
-
- [#
|
|
418
|
+
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`da21357`](https://github.com/graphcommerce-org/graphcommerce/commit/da2135744dddfa0d211c59589090ebb1977c38c9) - The `<Snackbar/>` component now accepts an icon when severity is set to info ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1408
419
|
|
|
1409
|
-
|
|
420
|
+
- [#2135](https://github.com/graphcommerce-org/graphcommerce/pull/2135) [`7b017f5`](https://github.com/graphcommerce-org/graphcommerce/commit/7b017f58ba3be587d20a7f52c84b2907d52fe201) - Fix incorrect canonical URLs when i18n domain routing is used ([@hnsr](https://github.com/hnsr))
|
|
1410
421
|
|
|
1411
|
-
|
|
422
|
+
- [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`727d100`](https://github.com/graphcommerce-org/graphcommerce/commit/727d1004dfcb7dddf6e35b6b157a34491bb05cc6) - Fixed ItemScroller component className. Changed from SidebarSlider to ItemScroller ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1412
423
|
|
|
1413
|
-
|
|
424
|
+
- [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed ([@FrankHarland](https://github.com/FrankHarland))
|
|
1414
425
|
|
|
1415
|
-
|
|
426
|
+
- [#2108](https://github.com/graphcommerce-org/graphcommerce/pull/2108) [`7fc4bb9`](https://github.com/graphcommerce-org/graphcommerce/commit/7fc4bb925c59da46961c9656a2a67b37a9c2d652) - Removed the 'NoSSR' functionality from `<WaitForQueries/>` component as it slows down rendering. The 'feature' was necessary for the following use case: When hydrating a component that was server rendered and was living inside a `<Suspense />` component. It would cause an hydration error and this was the workaround. With useSuspenseQuery and React 18, this problem will not occur. ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
1416
427
|
|
|
1417
|
-
|
|
428
|
+
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`d608830`](https://github.com/graphcommerce-org/graphcommerce/commit/d608830ce77f85ff725cc106b9fc55a22012c74c) - Added `disableBackdropClick` prop to MessageSnackbar to allow page interaction without closing the snackbar ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1418
429
|
|
|
1419
|
-
|
|
430
|
+
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`695f40c`](https://github.com/graphcommerce-org/graphcommerce/commit/695f40cf220636d17f04bc9b0ce86c549c740386) - The `filterNonNullable` method would collapse TypeScript unions because of the `Simplify<>` helper, this is now omitted retulting in working unions. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1420
431
|
|
|
1421
|
-
|
|
432
|
+
- [#2066](https://github.com/graphcommerce-org/graphcommerce/pull/2066) [`3b1f585`](https://github.com/graphcommerce-org/graphcommerce/commit/3b1f585153672a644a613411134e5ad36aa4c266) - Add `showButtons` prop to `<ScrollerButton/>` ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
1422
433
|
|
|
1423
|
-
|
|
434
|
+
- [#2045](https://github.com/graphcommerce-org/graphcommerce/pull/2045) [`1ac1e09`](https://github.com/graphcommerce-org/graphcommerce/commit/1ac1e09897daadd646200cb3ddc2aa75a51e182e) - Make sure the product image gallery traps focus and scrollbar doesn't disappear suddenly ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
1424
435
|
|
|
1425
|
-
|
|
436
|
+
- [#2105](https://github.com/graphcommerce-org/graphcommerce/pull/2105) [`185f9dd`](https://github.com/graphcommerce-org/graphcommerce/commit/185f9ddebff0eaf1f388faebe88a5d400294512a) - Fixed bug in Chrome where the mobile menu wouldn't open after the first selected level ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
1426
437
|
|
|
1427
|
-
|
|
438
|
+
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`94e1ae8`](https://github.com/graphcommerce-org/graphcommerce/commit/94e1ae811fe9eb0051863e8be91c6399ddcdf22f) - Added `<DismissibleSnackbar/>` component to allow messages to be shown only once ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1428
439
|
|
|
1429
|
-
- [#
|
|
1430
|
-
- Fix issue where Navigation can't be reopened after closing, dragging or navigating
|
|
1431
|
-
- Fix overlay visibility when browser is resized, or exactly 864px width ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
440
|
+
- [#2137](https://github.com/graphcommerce-org/graphcommerce/pull/2137) [`df507b1`](https://github.com/graphcommerce-org/graphcommerce/commit/df507b194c67eef7b02df858c07938bb308b5397) - Don't render pseudo-locale in HTML lang attribute ([@hnsr](https://github.com/hnsr))
|
|
1432
441
|
|
|
1433
|
-
|
|
442
|
+
- [#2125](https://github.com/graphcommerce-org/graphcommerce/pull/2125) [`5224ee5`](https://github.com/graphcommerce-org/graphcommerce/commit/5224ee5001c94a19f226fa36106e76739319297c) - If there is an open menu in an overlay, pressing the escape button now closes the menu instead of the overlay. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1434
443
|
|
|
1435
|
-
|
|
444
|
+
- [#2004](https://github.com/graphcommerce-org/graphcommerce/pull/2004) [`53947d3`](https://github.com/graphcommerce-org/graphcommerce/commit/53947d39f2f3ee578c14903c96a2b356d99d9475) - Implemented 'Message' variant for `<RowColumnOne/>` to show an important message which, after dismissing, will not show again ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1436
445
|
|
|
1437
|
-
|
|
446
|
+
- [#2121](https://github.com/graphcommerce-org/graphcommerce/pull/2121) [`a5da6ff`](https://github.com/graphcommerce-org/graphcommerce/commit/a5da6ffc8be359e93c7bde986134f7162aae13b9) - Change the critical css injection location to be in the head instead of `<style>` tags in the body. It had a number of negative consequences, such as the famous "flash of unstyled content" (FOUC) and the re-paint and re-layout required. ([@paales](https://github.com/paales))
|
|
1438
447
|
|
|
1439
|
-
##
|
|
448
|
+
## 7.0.1
|
|
1440
449
|
|
|
1441
|
-
|
|
450
|
+
### Patch Changes
|
|
1442
451
|
|
|
1443
|
-
|
|
452
|
+
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`136580b39`](https://github.com/graphcommerce-org/graphcommerce/commit/136580b39e3cffdd07e3fa087e049bd532c3e8f1) - Updated all dependencies to the latest version where possible. ([@paales](https://github.com/paales))
|
|
1444
453
|
|
|
1445
|
-
|
|
454
|
+
- [#2064](https://github.com/graphcommerce-org/graphcommerce/pull/2064) [`a550fa039`](https://github.com/graphcommerce-org/graphcommerce/commit/a550fa039a104b661ffd3fd3e32d99eaf782bc88) - Allow setting all RowLinks props on its variants, instead of a limited predefined set ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1446
455
|
|
|
1447
|
-
|
|
456
|
+
## 7.0.0
|
|
1448
457
|
|
|
1449
|
-
|
|
458
|
+
### Major Changes
|
|
1450
459
|
|
|
1451
|
-
|
|
460
|
+
- [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
|
|
1452
461
|
|
|
1453
462
|
### Minor Changes
|
|
1454
463
|
|
|
1455
|
-
- [#
|
|
464
|
+
- [#1961](https://github.com/graphcommerce-org/graphcommerce/pull/1961) [`4a759c662`](https://github.com/graphcommerce-org/graphcommerce/commit/4a759c66215eaa69edc342b898e05e8f92c3ba9a) - Add Open Graph meta tags to all pages ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
1456
465
|
|
|
1457
|
-
|
|
466
|
+
- [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`609b384de`](https://github.com/graphcommerce-org/graphcommerce/commit/609b384de8cded7a9dd2f29bd516ded810ab970a) - Created a new version of the cart using ActionCards for each CartItem. Different types of CartItems can have different ActionCards. These ActionCards will be overridden with the use of Plugins. An example can be found in the @graphcommerce/magento-product-configurable package. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1458
467
|
|
|
1459
|
-
|
|
468
|
+
- [#2023](https://github.com/graphcommerce-org/graphcommerce/pull/2023) [`7cd53fb2a`](https://github.com/graphcommerce-org/graphcommerce/commit/7cd53fb2aca18ae4a56025b2a015fecbda2e47b7) - Added links to test components on the test page. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1460
469
|
|
|
1461
470
|
### Patch Changes
|
|
1462
471
|
|
|
1463
|
-
- [#
|
|
472
|
+
- [#1934](https://github.com/graphcommerce-org/graphcommerce/pull/1934) [`96ac0320a`](https://github.com/graphcommerce-org/graphcommerce/commit/96ac0320a30bc55a6db5d46663d28b552fda4db6) - Overlays with a floating layout can now be closed by clicking beside the overlay. ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1464
473
|
|
|
1465
|
-
|
|
474
|
+
- [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`e9041802b`](https://github.com/graphcommerce-org/graphcommerce/commit/e9041802b27d6610cc93715ca61acff7f59792e6) - When the switchPoint of LayoutHeader is zero, make sure the header doesn’t flash when scrolling up on iOS ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
1466
475
|
|
|
1467
|
-
|
|
476
|
+
- [#1998](https://github.com/graphcommerce-org/graphcommerce/pull/1998) [`fdbdcb76f`](https://github.com/graphcommerce-org/graphcommerce/commit/fdbdcb76f918cf74b22253bd641a04c490ceb140) - Users are now not able to scroll an overlay during the open animation. ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1468
477
|
|
|
1469
|
-
- [#
|
|
478
|
+
- [#1960](https://github.com/graphcommerce-org/graphcommerce/pull/1960) [`f78caf5a8`](https://github.com/graphcommerce-org/graphcommerce/commit/f78caf5a83683f1ae4b901fb94bd22d50943fa2f) - Updated packages: `next`, `@apollo/client`, `react-hook-form`, `@emotion/*`, `@lingui/*`, `@mui/*` and various others. ([@paales](https://github.com/paales))
|
|
479
|
+
|
|
480
|
+
- [#1965](https://github.com/graphcommerce-org/graphcommerce/pull/1965) [`44b2911d7`](https://github.com/graphcommerce-org/graphcommerce/commit/44b2911d73fb6c6c7188f16d5890ca93877e9aa7) - Added prop to LayoutHeader to be able to hide the back button ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1470
481
|
|
|
1471
|
-
|
|
482
|
+
- [#1946](https://github.com/graphcommerce-org/graphcommerce/pull/1946) [`87260618b`](https://github.com/graphcommerce-org/graphcommerce/commit/87260618b8abaebd727ff4435abb1aea6ed33730) - Firefox: scroll snap overlays would snap to 0 when the scroll snap targets wouldn’t exactly match the possible targets. ([@paales](https://github.com/paales))
|
|
1472
483
|
|
|
1473
|
-
|
|
484
|
+
- [#1913](https://github.com/graphcommerce-org/graphcommerce/pull/1913) [`17eac116d`](https://github.com/graphcommerce-org/graphcommerce/commit/17eac116dbf2b811a67bfefd735d5a5a3e2b20dc) - Fixed zIndex issue with CartFab and ScrollerButton ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1474
485
|
|
|
1475
|
-
- [`
|
|
486
|
+
- [#1913](https://github.com/graphcommerce-org/graphcommerce/pull/1913) [`61b1987eb`](https://github.com/graphcommerce-org/graphcommerce/commit/61b1987eb8d37566cb4675f0ae962925aef2fc6d) - Fixed RowLinks ScrollerButton alignment when content is shown beside the Scroller ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1476
487
|
|
|
1477
|
-
|
|
488
|
+
- [#1930](https://github.com/graphcommerce-org/graphcommerce/pull/1930) [`c8d023e9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c8d023e9e874131cd9f8fe192b1fca5fe1a26ee3) - Fix the 'close menu' on search and add the option to secondary menu items ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
1478
489
|
|
|
1479
|
-
|
|
490
|
+
- [#2042](https://github.com/graphcommerce-org/graphcommerce/pull/2042) [`587fd2fe5`](https://github.com/graphcommerce-org/graphcommerce/commit/587fd2fe50c843acd9ffae869372df1df57e0a4b) - Updated german translations ([@action-simon](https://github.com/action-simon))
|
|
1480
491
|
|
|
1481
|
-
|
|
492
|
+
- [#1897](https://github.com/graphcommerce-org/graphcommerce/pull/1897) [`f44d7cec6`](https://github.com/graphcommerce-org/graphcommerce/commit/f44d7cec61766f4768c30d29b211a12f2846e9f6) - Overlays can now be configured to get a bgColor ([@FrankHarland](https://github.com/FrankHarland))
|
|
1482
493
|
|
|
1483
|
-
- [#
|
|
494
|
+
- [#1980](https://github.com/graphcommerce-org/graphcommerce/pull/1980) [`275aaaba3`](https://github.com/graphcommerce-org/graphcommerce/commit/275aaaba34c9db1705183393c4327e8f16b09386) - Fixed overlays closing while still dragging - overlays should only close after releasing pointer ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1484
495
|
|
|
1485
|
-
|
|
496
|
+
- [#1939](https://github.com/graphcommerce-org/graphcommerce/pull/1939) [`0cdccf681`](https://github.com/graphcommerce-org/graphcommerce/commit/0cdccf6817d6a769f59cccb68b1b1b8b4405cbd0) - Make blogListItem date prop optional ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
1486
497
|
|
|
1487
|
-
- [#
|
|
498
|
+
- [#1958](https://github.com/graphcommerce-org/graphcommerce/pull/1958) [`0a311b6eb`](https://github.com/graphcommerce-org/graphcommerce/commit/0a311b6ebb5a52e2a7f1d2e6a0fe113904fa2d34) - Left overlays wouldn't properly snap when the overlay gets wider than the viewport ([@paales](https://github.com/paales))
|
|
1488
499
|
|
|
1489
|
-
|
|
500
|
+
- [#2005](https://github.com/graphcommerce-org/graphcommerce/pull/2005) [`950521b4d`](https://github.com/graphcommerce-org/graphcommerce/commit/950521b4d46a1b980636c05d68a8f6aba289e85c) - Footer's grid-area's will only be rendered when the props are passed. ([@LeanderMatse](https://github.com/LeanderMatse))
|
|
1490
501
|
|
|
1491
|
-
##
|
|
502
|
+
## 6.1.0
|
|
1492
503
|
|
|
1493
504
|
### Patch Changes
|
|
1494
505
|
|
|
1495
|
-
- [#
|
|
506
|
+
- [#1867](https://github.com/graphcommerce-org/graphcommerce/pull/1867) [`8e4bf4ca7`](https://github.com/graphcommerce-org/graphcommerce/commit/8e4bf4ca7d0c32525df50df4a350ab19a2fbf620) - Overlay would show an incorrect box-shadow for the variant=bottom ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1496
507
|
|
|
1497
|
-
|
|
508
|
+
- [#1895](https://github.com/graphcommerce-org/graphcommerce/pull/1895) [`49d34bda4`](https://github.com/graphcommerce-org/graphcommerce/commit/49d34bda4b4426ad97272ce0a28e17f52e9f4e06) - When opening the overlay while darkmode was enabled, it would close immediately ([@paales](https://github.com/paales))
|
|
1498
509
|
|
|
1499
|
-
|
|
510
|
+
- [#1867](https://github.com/graphcommerce-org/graphcommerce/pull/1867) [`9b7e4414c`](https://github.com/graphcommerce-org/graphcommerce/commit/9b7e4414c537e775c1f2d5de65ffde6fc39b7f3b) - Disallow overscrolling on overlays on mobile ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1500
511
|
|
|
1501
|
-
##
|
|
512
|
+
## 6.0.1
|
|
1502
513
|
|
|
1503
514
|
### Patch Changes
|
|
1504
515
|
|
|
1505
|
-
- [#
|
|
1506
|
-
|
|
1507
|
-
- [#1771](https://github.com/graphcommerce-org/graphcommerce/pull/1771) [`55d267ba0`](https://github.com/graphcommerce-org/graphcommerce/commit/55d267ba039f64af2b0248c68a1e1478970c9b31) - Solve issue where overlays would close durting opening when they got rerendered. ([@paales](https://github.com/paales))
|
|
516
|
+
- [#1854](https://github.com/graphcommerce-org/graphcommerce/pull/1854) [`f4df162c5`](https://github.com/graphcommerce-org/graphcommerce/commit/f4df162c59d90298f305f51d409974592ab8e680) - Overlay desktop bottom didn't have a box-shadow ([@paales](https://github.com/paales))
|
|
1508
517
|
|
|
1509
|
-
|
|
518
|
+
- [#1854](https://github.com/graphcommerce-org/graphcommerce/pull/1854) [`ba92b3ebe`](https://github.com/graphcommerce-org/graphcommerce/commit/ba92b3ebe9dae16f156f6c0d62bdf25a7df1a2a7) - Allow bottom overlays to resize and animate in position ([@paales](https://github.com/paales))
|
|
1510
519
|
|
|
1511
|
-
##
|
|
520
|
+
## 6.0.0
|
|
1512
521
|
|
|
1513
|
-
|
|
522
|
+
### Major Changes
|
|
1514
523
|
|
|
1515
|
-
|
|
524
|
+
- [#1832](https://github.com/graphcommerce-org/graphcommerce/pull/1832) [`26d4243d5`](https://github.com/graphcommerce-org/graphcommerce/commit/26d4243d5b63d604e5a36386d9b01914db5f2918) - Added a new RowLink component with variants: Inline, ImageLabelSwiper, LogoSwiper and Usps. Updated the demo to show off these new components. ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1516
525
|
|
|
1517
|
-
|
|
526
|
+
- [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`0cc472915`](https://github.com/graphcommerce-org/graphcommerce/commit/0cc4729154d316227a41712b5f0adf514768e91f) - Introducing the new ProductFiltersPro component set with completely new filter and UI behavior. Filters will appear as a popper on the md and up breakpoints and as an overlay on sm and below breakpoints. Filters now have an Apply button instead of applying directly. ([@paales](https://github.com/paales))
|
|
1518
527
|
|
|
1519
|
-
|
|
528
|
+
### Minor Changes
|
|
1520
529
|
|
|
1521
|
-
|
|
530
|
+
- [#1822](https://github.com/graphcommerce-org/graphcommerce/pull/1822) [`cc02c46e3`](https://github.com/graphcommerce-org/graphcommerce/commit/cc02c46e32c9a44a90789591f43d91ae234dac84) - Added Facebook Open Graph tags to product pages:
|
|
1522
531
|
|
|
1523
|
-
-
|
|
532
|
+
- og:title
|
|
533
|
+
- og:image
|
|
534
|
+
- og:url
|
|
535
|
+
- type
|
|
536
|
+
- product:retailer_part_no
|
|
537
|
+
- product:price:amount
|
|
538
|
+
- product:sale_price:amount
|
|
539
|
+
- product:price:currency
|
|
540
|
+
- product:category ([@KMalkowski](https://github.com/KMalkowski))
|
|
1524
541
|
|
|
1525
|
-
- [#
|
|
542
|
+
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`fafa76ba9`](https://github.com/graphcommerce-org/graphcommerce/commit/fafa76ba9e655739171abc553d309795c9d8e5c2) - Overlays now use an additional scroll container to handle vertical scroll, fixing:
|
|
1526
543
|
|
|
1527
|
-
-
|
|
544
|
+
- Scrolling on desktop will not close the overlay when there is content to be scrolled
|
|
545
|
+
- Scrolling will not snap to bottom / top when the content is barely scrollable
|
|
546
|
+
- Dragging will only open or close the drawer, not something inbetween
|
|
547
|
+
- Swiping up on mobile will not close the overlay, first you need to scroll to the top of the overlay.
|
|
548
|
+
- Floating overlays will now scroll inside the floating overlay. ([@paales](https://github.com/paales))
|
|
1528
549
|
|
|
1529
|
-
- [#
|
|
550
|
+
- [#1798](https://github.com/graphcommerce-org/graphcommerce/pull/1798) [`3cee17a51`](https://github.com/graphcommerce-org/graphcommerce/commit/3cee17a51ff961f4363d95c9decb8c7d1f9ca319) - Added utility function `filterByTypename` function to filter types based on `__typename` ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
1530
551
|
|
|
1531
|
-
|
|
552
|
+
- [#1814](https://github.com/graphcommerce-org/graphcommerce/pull/1814) [`15aa59049`](https://github.com/graphcommerce-org/graphcommerce/commit/15aa590493bf7639231f3bb3dd623c234ebad7cf) - ActionCard default styling introduced for a more inline and changed the look of selected filters. ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1532
553
|
|
|
1533
|
-
- [#
|
|
554
|
+
- [#1793](https://github.com/graphcommerce-org/graphcommerce/pull/1793) [`5562fa69b`](https://github.com/graphcommerce-org/graphcommerce/commit/5562fa69b1bc260f68555dcfaf30153eda489bed) - Add newsletter subscribe form ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1534
555
|
|
|
1535
|
-
|
|
556
|
+
### Patch Changes
|
|
1536
557
|
|
|
1537
|
-
|
|
1538
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
1539
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1540
|
-
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
558
|
+
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`dbc2ae0d3`](https://github.com/graphcommerce-org/graphcommerce/commit/dbc2ae0d360f645c3eab2a8f38b3d1431eab7d80) - Overlays will only hide the body scrollbar for right overlays so the page doesnt jump when opening. ([@paales](https://github.com/paales))
|
|
1541
559
|
|
|
1542
|
-
- [#
|
|
560
|
+
- [#1836](https://github.com/graphcommerce-org/graphcommerce/pull/1836) [`2857229c4`](https://github.com/graphcommerce-org/graphcommerce/commit/2857229c4d1c776540218f5e4cab3be524161502) - Overlays can not be closed as easily by swiping up, it will now always stop at the top over the overlay. ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1543
561
|
|
|
1544
|
-
- [#
|
|
562
|
+
- [#1771](https://github.com/graphcommerce-org/graphcommerce/pull/1771) [`aec07f567`](https://github.com/graphcommerce-org/graphcommerce/commit/aec07f5679472281b8eb71cf6967a1ff775d2a7f) - Navigation became visible when resizing the viewport. ([@paales](https://github.com/paales))
|
|
1545
563
|
|
|
1546
|
-
- [#
|
|
564
|
+
- [#1809](https://github.com/graphcommerce-org/graphcommerce/pull/1809) [`2da3c9214`](https://github.com/graphcommerce-org/graphcommerce/commit/2da3c92148aef08813b95e404a25796acf0eefd2) - Google Analytics now supports view_item, view_cart and remove_from_cart ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
1547
565
|
|
|
1548
|
-
- [#
|
|
566
|
+
- [#1792](https://github.com/graphcommerce-org/graphcommerce/pull/1792) [`b0b8348b0`](https://github.com/graphcommerce-org/graphcommerce/commit/b0b8348b0d294f98140c2605691d47011add5b01) - Overlay headers with long titles now render correctly ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1549
567
|
|
|
1550
|
-
|
|
568
|
+
- [#1829](https://github.com/graphcommerce-org/graphcommerce/pull/1829) [`5f5f0dd1e`](https://github.com/graphcommerce-org/graphcommerce/commit/5f5f0dd1e0960b4cad694c5aaddffc7ccfc2bb1a) - Overlay right variant doesn't close automatically in firefox anymore ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1551
569
|
|
|
1552
|
-
|
|
570
|
+
- [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`16e91da42`](https://github.com/graphcommerce-org/graphcommerce/commit/16e91da42dcb454ea4761d1780b9338c88ef1463) - Corrected spelling mistake: incomming to incoming ([@paales](https://github.com/paales))
|
|
1553
571
|
|
|
1554
|
-
|
|
572
|
+
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`0bac3bdd8`](https://github.com/graphcommerce-org/graphcommerce/commit/0bac3bdd8505ccad8036d13e19559f2b3523fd92) - Navigation layout-animations will now only trigger when the active menu item changes ([@paales](https://github.com/paales))
|
|
1555
573
|
|
|
1556
|
-
- [#
|
|
574
|
+
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`6bffd680b`](https://github.com/graphcommerce-org/graphcommerce/commit/6bffd680b9d6a370048d06842cd3ce73130471dd) - Overlays now can't be closed when dragging beyong the pane (and actually opening them). ([@paales](https://github.com/paales))
|
|
1557
575
|
|
|
1558
|
-
- [#
|
|
576
|
+
- [#1834](https://github.com/graphcommerce-org/graphcommerce/pull/1834) [`58f7a63a4`](https://github.com/graphcommerce-org/graphcommerce/commit/58f7a63a4a4ef3bfcaeea75e393902b97138ba54) - Overlays may now be larger than 100% of the viewport without breaking. ([@paales](https://github.com/paales))
|
|
1559
577
|
|
|
1560
|
-
|
|
578
|
+
- [#1831](https://github.com/graphcommerce-org/graphcommerce/pull/1831) [`f4008bae3`](https://github.com/graphcommerce-org/graphcommerce/commit/f4008bae3e3ac8288c731b1dd87e6c6aef8e81fc) - Added a linting rule that disallows `import { Theme } from '@emotion/react'` because that causes huge performance issues. Also added `tsc:trace` to the root project to debug typescript performance issues. ([@paales](https://github.com/paales))
|
|
1561
579
|
|
|
1562
|
-
|
|
580
|
+
- [`bcaf428a3`](https://github.com/graphcommerce-org/graphcommerce/commit/bcaf428a31f2b480d442d347d09c0131a8569155) - Overlay timing issues resolved which would cause overlays to close or flicker. ([@paales](https://github.com/paales))
|
|
1563
581
|
|
|
1564
|
-
|
|
582
|
+
- [#1794](https://github.com/graphcommerce-org/graphcommerce/pull/1794) [`29e15cf63`](https://github.com/graphcommerce-org/graphcommerce/commit/29e15cf63251cf98cf42325322fcf09fb7a6c0b7) - Overlays variant=bottom will now work without jank on Android ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1565
583
|
|
|
1566
|
-
|
|
584
|
+
- [#1771](https://github.com/graphcommerce-org/graphcommerce/pull/1771) [`55d267ba0`](https://github.com/graphcommerce-org/graphcommerce/commit/55d267ba039f64af2b0248c68a1e1478970c9b31) - Solve issue where overlays would close diring opening when a rerender occured. ([@paales](https://github.com/paales))
|
|
1567
585
|
|
|
1568
|
-
|
|
586
|
+
- [#1829](https://github.com/graphcommerce-org/graphcommerce/pull/1829) [`52ecfc2ad`](https://github.com/graphcommerce-org/graphcommerce/commit/52ecfc2ad25fc6ef92465862fb94c1829bdd7c52) - CSS dvh property is now used when supported by browsers, causing less rerenders with overlays. ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1569
587
|
|
|
1570
|
-
|
|
588
|
+
- [#1806](https://github.com/graphcommerce-org/graphcommerce/pull/1806) [`597396766`](https://github.com/graphcommerce-org/graphcommerce/commit/597396766940de8c4ab5d8c84a0c6637ed72dba2) - Navigation visibility fixes when browser is resized, or exactly 864px width, and when Navigation is reopened after closing, dragging or navigating. Navigation HTML is now permanently in the DOM. ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1571
589
|
|
|
1572
|
-
- [`
|
|
590
|
+
- [#1825](https://github.com/graphcommerce-org/graphcommerce/pull/1825) [`27302739e`](https://github.com/graphcommerce-org/graphcommerce/commit/27302739e5dcd8791e7a3df06855f6450b0a6d10) - Show mobile footer on tablet to prevent cart fab overlapping footer content ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
1573
591
|
|
|
1574
|
-
- [`
|
|
592
|
+
- [#1830](https://github.com/graphcommerce-org/graphcommerce/pull/1830) [`ff0c70e31`](https://github.com/graphcommerce-org/graphcommerce/commit/ff0c70e3165c64ea4f236a15a5820428dbf36e6a) - Overlays now have vertical visible scrollbars when the content is higher than the viewport. ([@paales](https://github.com/paales))
|
|
1575
593
|
|
|
1576
|
-
## 5.1.0
|
|
594
|
+
## 5.1.0
|
|
1577
595
|
|
|
1578
596
|
### Patch Changes
|
|
1579
597
|
|
|
1580
598
|
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`0025ad80f`](https://github.com/graphcommerce-org/graphcommerce/commit/0025ad80fb82d5d1e6c786bb8b5f39b2456c0932) - Renamed clientSizeCssVar.y/x to dvh(100) and dvw(100) ([@paales](https://github.com/paales))
|
|
1581
599
|
|
|
1582
|
-
- [#
|
|
1583
|
-
|
|
1584
|
-
Defaults to `widthSm = 'max(300px, 80vw)', widthMd = 'max(800px, 50vw)'` ([@paales](https://github.com/paales))
|
|
600
|
+
- [#1760](https://github.com/graphcommerce-org/graphcommerce/pull/1760) [`06a81e661`](https://github.com/graphcommerce-org/graphcommerce/commit/06a81e66144b4d94a1e318c2e26cac8d13aa0eb7) - When you navigate back to an overlay (cart, etc.), it can no longer be closed by dragging or clicking on the backdrop. ([@paales](https://github.com/paales))
|
|
1585
601
|
|
|
1586
|
-
- [#
|
|
602
|
+
- [#1750](https://github.com/graphcommerce-org/graphcommerce/pull/1750) [`3479bc1e2`](https://github.com/graphcommerce-org/graphcommerce/commit/3479bc1e24da0e8a751ee301c59fa5f9755c8559) - Show globe icon instead of shopping bag icon for store/language-switcher ([@FrankHarland](https://github.com/FrankHarland))
|
|
1587
603
|
|
|
1588
|
-
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`
|
|
604
|
+
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`3fcb03b79`](https://github.com/graphcommerce-org/graphcommerce/commit/3fcb03b79ce634650fd982dc36a112dccd37282f) - New props added to LayoutOverlay and Overlay components: `widthSm` and `widthMd` to control the width of the overlay.
|
|
1589
605
|
|
|
1590
|
-
|
|
606
|
+
Defaults to `widthSm = 'max(300px, 80vw)', widthMd = 'max(800px, 50vw)'` ([@paales](https://github.com/paales))
|
|
1591
607
|
|
|
1592
|
-
|
|
608
|
+
- [#1745](https://github.com/graphcommerce-org/graphcommerce/pull/1745) [`b1444b933`](https://github.com/graphcommerce-org/graphcommerce/commit/b1444b9336107d3ac111563f9b62a884f1b26a8d) - Bring password reset page more in line with standard forms, add missing translations. ([@github-actions](https://github.com/apps/github-actions))
|
|
1593
609
|
|
|
1594
610
|
- [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
|
|
1595
611
|
|
|
@@ -1598,15 +614,13 @@
|
|
|
1598
614
|
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1599
615
|
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
1600
616
|
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
### Patch Changes
|
|
617
|
+
- [#1760](https://github.com/graphcommerce-org/graphcommerce/pull/1760) [`f1ebaa2ae`](https://github.com/graphcommerce-org/graphcommerce/commit/f1ebaa2aea68fe395fddb1b7dd91624251b1d501) - Navigation received focus making the menu visible while it shouldn't ([@paales](https://github.com/paales))
|
|
1604
618
|
|
|
1605
|
-
- [#
|
|
619
|
+
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`f44a05a6c`](https://github.com/graphcommerce-org/graphcommerce/commit/f44a05a6cedadc17e44c87f53cad5f462bc52aba) - Use a singlular useElementScroll and provide ther scroll from the useScrollerContext ([@paales](https://github.com/paales))
|
|
1606
620
|
|
|
1607
|
-
|
|
621
|
+
- [#1745](https://github.com/graphcommerce-org/graphcommerce/pull/1745) [`c7dc855af`](https://github.com/graphcommerce-org/graphcommerce/commit/c7dc855af5e096a53e17f3b2980b210642270fd5) - Added a spreadVal utility to replace responsiveVal and breakpointVal ([@github-actions](https://github.com/apps/github-actions))
|
|
1608
622
|
|
|
1609
|
-
|
|
623
|
+
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`9de7c6960`](https://github.com/graphcommerce-org/graphcommerce/commit/9de7c6960c7ec7d6d28a670f71ac678c5d3c838f) - The scrollbar was hidden for bottom sheets, while that wasn't necessary ([@paales](https://github.com/paales))
|
|
1610
624
|
|
|
1611
625
|
## 5.0.0
|
|
1612
626
|
|
|
@@ -1630,72 +644,12 @@
|
|
|
1630
644
|
|
|
1631
645
|
- [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`0623f8ce7`](https://github.com/graphcommerce-org/graphcommerce/commit/0623f8ce738ace69aa44e55cf6a6ddb33cf0617a) - When clicking on a navigationlink it would animate on mobile ([@github-actions](https://github.com/apps/github-actions))
|
|
1632
646
|
|
|
1633
|
-
## 5.0.0-canary.14
|
|
1634
|
-
|
|
1635
|
-
## 5.0.0-canary.9
|
|
1636
|
-
|
|
1637
|
-
### Major Changes
|
|
1638
|
-
|
|
1639
|
-
- [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
|
|
1640
|
-
|
|
1641
|
-
## 4.31.0-canary.8
|
|
1642
|
-
|
|
1643
|
-
## 4.31.0-canary.7
|
|
1644
|
-
|
|
1645
|
-
### Patch Changes
|
|
1646
|
-
|
|
1647
|
-
- [`d1c2f9901`](https://github.com/graphcommerce-org/graphcommerce/commit/d1c2f9901dbe76d4ca23c48614b05990aeb59161) - useTheme() was imported from the wrong file ([@paales](https://github.com/paales))
|
|
1648
|
-
|
|
1649
|
-
## 4.31.0-canary.6
|
|
1650
|
-
|
|
1651
|
-
### Patch Changes
|
|
1652
|
-
|
|
1653
|
-
- [`243d0dad2`](https://github.com/graphcommerce-org/graphcommerce/commit/243d0dad263f7b886a3d68e82729818c7df265bc) - Solve issue where the gallery of the product page would scroll obsessively ([@paales](https://github.com/paales))
|
|
1654
|
-
|
|
1655
|
-
- [`0623f8ce7`](https://github.com/graphcommerce-org/graphcommerce/commit/0623f8ce738ace69aa44e55cf6a6ddb33cf0617a) - When clicking on a navigationlink it would animate on mobile ([@paales](https://github.com/paales))
|
|
1656
|
-
|
|
1657
|
-
## 4.31.0-canary.5
|
|
1658
|
-
|
|
1659
|
-
## 4.31.0-canary.4
|
|
1660
|
-
|
|
1661
|
-
### Minor Changes
|
|
1662
|
-
|
|
1663
|
-
- [#1732](https://github.com/graphcommerce-org/graphcommerce/pull/1732) [`4bf1f606f`](https://github.com/graphcommerce-org/graphcommerce/commit/4bf1f606f3281a2664d6e2a70202a22af4d2c849) - fix customer service scrollSnapAlign ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
1664
|
-
|
|
1665
|
-
## 4.31.0-canary.3
|
|
1666
|
-
|
|
1667
|
-
### Patch Changes
|
|
1668
|
-
|
|
1669
|
-
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`a0eefa762`](https://github.com/graphcommerce-org/graphcommerce/commit/a0eefa762f93f817f506b87753dfe0b92e3318f8) - Added better disabled state for an ActionCard ([@paales](https://github.com/paales))
|
|
1670
|
-
|
|
1671
|
-
## 4.31.0-canary.2
|
|
1672
|
-
|
|
1673
|
-
## 4.31.0-canary.1
|
|
1674
|
-
|
|
1675
|
-
### Patch Changes
|
|
1676
|
-
|
|
1677
|
-
- [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`37e86cdc8`](https://github.com/graphcommerce-org/graphcommerce/commit/37e86cdc86ccca3db77d6c59b1e14c8112bb7893) - Remove usage of PropsWithChildren ([@paales](https://github.com/paales))
|
|
1678
|
-
|
|
1679
|
-
## 4.31.0-canary.0
|
|
1680
|
-
|
|
1681
|
-
## 4.30.2
|
|
1682
|
-
|
|
1683
|
-
## 4.30.1
|
|
1684
|
-
|
|
1685
647
|
## 4.30.0
|
|
1686
648
|
|
|
1687
649
|
### Patch Changes
|
|
1688
650
|
|
|
1689
651
|
- [#1702](https://github.com/graphcommerce-org/graphcommerce/pull/1702) [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
1690
652
|
|
|
1691
|
-
## 4.30.0-canary.1
|
|
1692
|
-
|
|
1693
|
-
### Patch Changes
|
|
1694
|
-
|
|
1695
|
-
- [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
1696
|
-
|
|
1697
|
-
## 4.30.0-canary.0
|
|
1698
|
-
|
|
1699
653
|
## 4.29.3
|
|
1700
654
|
|
|
1701
655
|
### Patch Changes
|
|
@@ -2158,7 +1112,7 @@
|
|
|
2158
1112
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
2159
1113
|
|
|
2160
1114
|
```tsx
|
|
2161
|
-
import {
|
|
1115
|
+
import { t, Trans } from '@lingui/macro'
|
|
2162
1116
|
|
|
2163
1117
|
function MyComponent() {
|
|
2164
1118
|
const foo = 'bar'
|
|
@@ -2173,8 +1127,8 @@
|
|
|
2173
1127
|
Needs to be replaced with:
|
|
2174
1128
|
|
|
2175
1129
|
```tsx
|
|
2176
|
-
import { Trans } from '@lingui/react'
|
|
2177
1130
|
import { i18n } from '@lingui/core'
|
|
1131
|
+
import { Trans } from '@lingui/react'
|
|
2178
1132
|
|
|
2179
1133
|
function MyComponent() {
|
|
2180
1134
|
const foo = 'bar'
|
|
@@ -3554,8 +2508,6 @@ All notable changes to this project will be documented in this file. See [Conven
|
|
|
3554
2508
|
|
|
3555
2509
|
## [2.112.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.112.2...@graphcommerce/next-ui@2.112.3) (2021-09-23)
|
|
3556
2510
|
|
|
3557
|
-
## [2.112.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.112.2...@graphcommerce/next-ui@2.112.3) (2021-09-23)
|
|
3558
|
-
|
|
3559
2511
|
### Bug Fixes
|
|
3560
2512
|
|
|
3561
2513
|
- do not use ToggleButtonGroup, only use the ToggleButton ([5172f70](https://github.com/ho-nl/m2-pwa/commit/5172f709ee26122b0a8700afb4325f23cb9ba9b9))
|