@graphcommerce/next-ui 9.0.0-canary.99 → 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 -1344
- 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,74 +1,56 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.0
|
|
3
|
+
## 9.0.0
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
### Patch Changes
|
|
8
|
-
|
|
9
|
-
- [#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))
|
|
10
|
-
|
|
11
|
-
- [#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))
|
|
12
|
-
|
|
13
|
-
## 9.0.0-canary.97
|
|
14
|
-
|
|
15
|
-
## 9.0.0-canary.96
|
|
16
|
-
|
|
17
|
-
## 9.0.0-canary.95
|
|
18
|
-
|
|
19
|
-
### Patch Changes
|
|
20
|
-
|
|
21
|
-
- [#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))
|
|
22
|
-
|
|
23
|
-
## 9.0.0-canary.94
|
|
24
|
-
|
|
25
|
-
## 9.0.0-canary.93
|
|
26
|
-
|
|
27
|
-
### Patch Changes
|
|
28
|
-
|
|
29
|
-
- [#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))
|
|
30
|
-
|
|
31
|
-
## 9.0.0-canary.92
|
|
32
|
-
|
|
33
|
-
## 9.0.0-canary.91
|
|
34
|
-
|
|
35
|
-
## 9.0.0-canary.90
|
|
36
|
-
|
|
37
|
-
## 9.0.0-canary.89
|
|
38
|
-
|
|
39
|
-
### Patch Changes
|
|
5
|
+
### Minor Changes
|
|
40
6
|
|
|
41
|
-
- [#
|
|
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:
|
|
42
8
|
|
|
43
|
-
|
|
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))
|
|
44
18
|
|
|
45
|
-
|
|
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.
|
|
46
20
|
|
|
47
|
-
|
|
21
|
+
```tsx
|
|
22
|
+
<MediaQuery query={(theme) => theme.breakpoints.up('md')}>
|
|
23
|
+
<MyExpensiveDesktopComponent>
|
|
24
|
+
Only visisble on desktop
|
|
25
|
+
</MyExpensiveDesktopComponent>
|
|
26
|
+
</MediaQuery>
|
|
27
|
+
```
|
|
48
28
|
|
|
49
|
-
|
|
29
|
+
When to use, replacement for:
|
|
50
30
|
|
|
51
|
-
|
|
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)
|
|
52
33
|
|
|
53
|
-
|
|
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))
|
|
54
35
|
|
|
55
|
-
|
|
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))
|
|
56
37
|
|
|
57
|
-
|
|
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))
|
|
58
39
|
|
|
59
|
-
|
|
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))
|
|
60
41
|
|
|
61
|
-
|
|
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))
|
|
62
43
|
|
|
63
|
-
- [#
|
|
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`.
|
|
64
45
|
|
|
65
|
-
|
|
46
|
+
- `COMPACT` means: `< Page X of Y >`
|
|
47
|
+
- `EXTENDED` means: `< 1 2 ... [5] ... 10 11 >` ([@FrankHarland](https://github.com/FrankHarland))
|
|
66
48
|
|
|
67
|
-
|
|
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))
|
|
68
50
|
|
|
69
|
-
- [#
|
|
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))
|
|
70
52
|
|
|
71
|
-
|
|
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))
|
|
72
54
|
|
|
73
55
|
### Patch Changes
|
|
74
56
|
|
|
@@ -76,1522 +58,554 @@
|
|
|
76
58
|
|
|
77
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))
|
|
78
60
|
|
|
79
|
-
- [#
|
|
80
|
-
|
|
81
|
-
## 9.0.0-canary.77
|
|
82
|
-
|
|
83
|
-
## 9.0.0-canary.76
|
|
84
|
-
|
|
85
|
-
## 9.0.0-canary.75
|
|
86
|
-
|
|
87
|
-
### Patch Changes
|
|
88
|
-
|
|
89
|
-
- [#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))
|
|
90
|
-
|
|
91
|
-
## 9.0.0-canary.74
|
|
92
|
-
|
|
93
|
-
## 9.0.0-canary.73
|
|
94
|
-
|
|
95
|
-
### Patch Changes
|
|
96
|
-
|
|
97
|
-
- [`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))
|
|
98
62
|
|
|
99
|
-
|
|
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))
|
|
100
64
|
|
|
101
|
-
|
|
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))
|
|
102
66
|
|
|
103
|
-
|
|
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))
|
|
104
68
|
|
|
105
|
-
|
|
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))
|
|
106
70
|
|
|
107
|
-
|
|
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))
|
|
108
72
|
|
|
109
|
-
|
|
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))
|
|
110
74
|
|
|
111
|
-
|
|
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))
|
|
112
76
|
|
|
113
|
-
|
|
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))
|
|
114
78
|
|
|
115
|
-
|
|
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))
|
|
116
80
|
|
|
117
|
-
|
|
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))
|
|
118
82
|
|
|
119
|
-
|
|
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))
|
|
120
84
|
|
|
121
|
-
|
|
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))
|
|
122
86
|
|
|
123
|
-
|
|
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))
|
|
124
88
|
|
|
125
|
-
|
|
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))
|
|
126
90
|
|
|
127
|
-
|
|
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))
|
|
128
92
|
|
|
129
|
-
|
|
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))
|
|
130
94
|
|
|
131
|
-
|
|
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))
|
|
132
96
|
|
|
133
|
-
- [#
|
|
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))
|
|
134
98
|
|
|
135
|
-
|
|
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))
|
|
136
100
|
|
|
137
|
-
|
|
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))
|
|
138
102
|
|
|
139
|
-
|
|
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))
|
|
140
104
|
|
|
141
|
-
|
|
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))
|
|
142
106
|
|
|
143
|
-
|
|
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))
|
|
144
108
|
|
|
145
|
-
|
|
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))
|
|
146
110
|
|
|
147
|
-
|
|
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))
|
|
148
112
|
|
|
149
|
-
|
|
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))
|
|
150
114
|
|
|
151
|
-
- [#
|
|
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))
|
|
152
116
|
|
|
153
|
-
|
|
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))
|
|
154
118
|
|
|
155
|
-
|
|
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))
|
|
156
120
|
|
|
157
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))
|
|
158
122
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
## 8.1.0-canary.47
|
|
162
|
-
|
|
163
|
-
### Minor Changes
|
|
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))
|
|
164
124
|
|
|
165
|
-
|
|
125
|
+
## 9.0.0-canary.118
|
|
166
126
|
|
|
167
|
-
##
|
|
127
|
+
## 9.0.0-canary.117
|
|
168
128
|
|
|
169
129
|
### Patch Changes
|
|
170
130
|
|
|
171
|
-
- [#
|
|
172
|
-
|
|
173
|
-
## 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))
|
|
174
132
|
|
|
175
|
-
|
|
133
|
+
## 9.0.0-canary.116
|
|
176
134
|
|
|
177
|
-
|
|
135
|
+
## 9.0.0-canary.115
|
|
178
136
|
|
|
179
|
-
|
|
137
|
+
## 9.0.0-canary.114
|
|
180
138
|
|
|
181
|
-
|
|
139
|
+
## 9.0.0-canary.113
|
|
182
140
|
|
|
183
|
-
|
|
141
|
+
## 9.0.0-canary.112
|
|
184
142
|
|
|
185
|
-
##
|
|
143
|
+
## 9.0.0-canary.111
|
|
186
144
|
|
|
187
|
-
##
|
|
145
|
+
## 9.0.0-canary.110
|
|
188
146
|
|
|
189
|
-
##
|
|
147
|
+
## 9.0.0-canary.109
|
|
190
148
|
|
|
191
|
-
##
|
|
149
|
+
## 9.0.0-canary.108
|
|
192
150
|
|
|
193
151
|
### Patch Changes
|
|
194
152
|
|
|
195
|
-
- [#
|
|
196
|
-
|
|
197
|
-
## 8.1.0-canary.40
|
|
198
|
-
|
|
199
|
-
### Minor Changes
|
|
200
|
-
|
|
201
|
-
- [#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))
|
|
202
|
-
|
|
203
|
-
## 8.1.0-canary.39
|
|
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.32
|
|
218
|
-
|
|
219
|
-
## 8.1.0-canary.31
|
|
165
|
+
## 9.0.0-canary.103
|
|
220
166
|
|
|
221
167
|
### Patch Changes
|
|
222
168
|
|
|
223
|
-
- [#
|
|
224
|
-
|
|
225
|
-
## 8.1.0-canary.30
|
|
226
|
-
|
|
227
|
-
## 8.1.0-canary.29
|
|
228
|
-
|
|
229
|
-
## 8.1.0-canary.28
|
|
230
|
-
|
|
231
|
-
## 8.1.0-canary.27
|
|
232
|
-
|
|
233
|
-
### Minor Changes
|
|
234
|
-
|
|
235
|
-
- [#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))
|
|
236
|
-
|
|
237
|
-
## 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))
|
|
238
170
|
|
|
239
|
-
|
|
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))
|
|
240
172
|
|
|
241
|
-
|
|
173
|
+
## 9.0.0-canary.102
|
|
242
174
|
|
|
243
175
|
### Patch Changes
|
|
244
176
|
|
|
245
|
-
- [#
|
|
246
|
-
|
|
247
|
-
## 8.1.0-canary.25
|
|
248
|
-
|
|
249
|
-
## 8.1.0-canary.24
|
|
250
|
-
|
|
251
|
-
## 8.1.0-canary.23
|
|
252
|
-
|
|
253
|
-
## 8.1.0-canary.22
|
|
254
|
-
|
|
255
|
-
## 8.1.0-canary.21
|
|
256
|
-
|
|
257
|
-
## 8.1.0-canary.20
|
|
258
|
-
|
|
259
|
-
## 8.1.0-canary.19
|
|
260
|
-
|
|
261
|
-
## 8.1.0-canary.18
|
|
262
|
-
|
|
263
|
-
## 8.1.0-canary.17
|
|
264
|
-
|
|
265
|
-
### Minor Changes
|
|
266
|
-
|
|
267
|
-
- [#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))
|
|
268
|
-
|
|
269
|
-
## 8.1.0-canary.16
|
|
270
|
-
|
|
271
|
-
## 8.1.0-canary.15
|
|
272
|
-
|
|
273
|
-
## 8.1.0-canary.14
|
|
274
|
-
|
|
275
|
-
## 8.1.0-canary.13
|
|
276
|
-
|
|
277
|
-
## 8.1.0-canary.12
|
|
278
|
-
|
|
279
|
-
## 8.1.0-canary.11
|
|
280
|
-
|
|
281
|
-
## 8.1.0-canary.10
|
|
282
|
-
|
|
283
|
-
## 8.1.0-canary.9
|
|
284
|
-
|
|
285
|
-
### Patch Changes
|
|
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))
|
|
286
178
|
|
|
287
|
-
- [#
|
|
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))
|
|
288
180
|
|
|
289
|
-
##
|
|
181
|
+
## 9.0.0-canary.101
|
|
290
182
|
|
|
291
183
|
### Patch Changes
|
|
292
184
|
|
|
293
|
-
- [#
|
|
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.
|
|
294
186
|
|
|
295
|
-
|
|
187
|
+
```tsx
|
|
188
|
+
<MediaQuery query={(theme) => theme.breakpoints.up('md')}>
|
|
189
|
+
<MyExpensiveDesktopComponent>
|
|
190
|
+
Only visisble on desktop
|
|
191
|
+
</MyExpensiveDesktopComponent>
|
|
192
|
+
</MediaQuery>
|
|
193
|
+
```
|
|
296
194
|
|
|
297
|
-
|
|
195
|
+
When to use, replacement for:
|
|
298
196
|
|
|
299
|
-
|
|
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)
|
|
300
199
|
|
|
301
|
-
|
|
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))
|
|
302
201
|
|
|
303
|
-
|
|
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))
|
|
304
203
|
|
|
305
|
-
##
|
|
204
|
+
## 9.0.0-canary.98
|
|
306
205
|
|
|
307
206
|
### Patch Changes
|
|
308
207
|
|
|
309
|
-
- [#
|
|
310
|
-
|
|
311
|
-
- [#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))
|
|
312
209
|
|
|
313
|
-
|
|
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))
|
|
314
211
|
|
|
315
|
-
##
|
|
212
|
+
## 9.0.0-canary.95
|
|
316
213
|
|
|
317
214
|
### Patch Changes
|
|
318
215
|
|
|
319
|
-
- [#
|
|
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))
|
|
320
217
|
|
|
321
|
-
##
|
|
218
|
+
## 9.0.0-canary.93
|
|
322
219
|
|
|
323
220
|
### Patch Changes
|
|
324
221
|
|
|
325
|
-
- [#
|
|
326
|
-
|
|
327
|
-
- [#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.
|
|
328
|
-
|
|
329
|
-
Please note: If you've used child selectors to style the section, please make sure you update your styles. ([@carlocarels90](https://github.com/carlocarels90))
|
|
330
|
-
|
|
331
|
-
- [#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))
|
|
332
|
-
|
|
333
|
-
- [#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))
|
|
334
|
-
|
|
335
|
-
- [#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))
|
|
336
|
-
|
|
337
|
-
- [#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))
|
|
338
|
-
|
|
339
|
-
## 8.0.5-canary.10
|
|
340
|
-
|
|
341
|
-
## 8.0.5-canary.9
|
|
342
|
-
|
|
343
|
-
## 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))
|
|
344
223
|
|
|
345
|
-
##
|
|
224
|
+
## 9.0.0-canary.89
|
|
346
225
|
|
|
347
226
|
### Patch Changes
|
|
348
227
|
|
|
349
|
-
- [#
|
|
350
|
-
|
|
351
|
-
- [#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))
|
|
352
|
-
|
|
353
|
-
- [#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))
|
|
354
229
|
|
|
355
|
-
##
|
|
230
|
+
## 9.0.0-canary.80
|
|
356
231
|
|
|
357
|
-
|
|
232
|
+
### Patch Changes
|
|
358
233
|
|
|
359
|
-
|
|
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))
|
|
360
235
|
|
|
361
|
-
##
|
|
236
|
+
## 9.0.0-canary.79
|
|
362
237
|
|
|
363
238
|
### Patch Changes
|
|
364
239
|
|
|
365
|
-
- [#
|
|
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))
|
|
366
241
|
|
|
367
|
-
##
|
|
242
|
+
## 9.0.0-canary.78
|
|
368
243
|
|
|
369
244
|
### Patch Changes
|
|
370
245
|
|
|
371
|
-
- [#
|
|
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))
|
|
372
247
|
|
|
373
|
-
|
|
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))
|
|
374
249
|
|
|
375
|
-
|
|
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))
|
|
376
251
|
|
|
377
|
-
##
|
|
252
|
+
## 9.0.0-canary.75
|
|
378
253
|
|
|
379
254
|
### Patch Changes
|
|
380
255
|
|
|
381
|
-
- [#
|
|
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))
|
|
382
257
|
|
|
383
|
-
##
|
|
258
|
+
## 9.0.0-canary.73
|
|
384
259
|
|
|
385
260
|
### Patch Changes
|
|
386
261
|
|
|
387
|
-
- [
|
|
388
|
-
|
|
389
|
-
## 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))
|
|
390
263
|
|
|
391
|
-
##
|
|
264
|
+
## 9.0.0-canary.57
|
|
392
265
|
|
|
393
266
|
### Patch Changes
|
|
394
267
|
|
|
395
|
-
- [#
|
|
396
|
-
|
|
397
|
-
## 8.0.3
|
|
398
|
-
|
|
399
|
-
## 8.0.3-canary.6
|
|
400
|
-
|
|
401
|
-
## 8.0.3-canary.5
|
|
402
|
-
|
|
403
|
-
## 8.0.3-canary.4
|
|
404
|
-
|
|
405
|
-
## 8.0.3-canary.3
|
|
406
|
-
|
|
407
|
-
## 8.0.3-canary.2
|
|
408
|
-
|
|
409
|
-
## 8.0.3-canary.1
|
|
410
|
-
|
|
411
|
-
## 8.0.3-canary.0
|
|
412
|
-
|
|
413
|
-
## 8.0.2
|
|
414
|
-
|
|
415
|
-
## 8.0.2-canary.3
|
|
416
|
-
|
|
417
|
-
## 8.0.2-canary.2
|
|
418
|
-
|
|
419
|
-
## 8.0.2-canary.1
|
|
420
|
-
|
|
421
|
-
## 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))
|
|
422
269
|
|
|
423
|
-
## 8.0.
|
|
270
|
+
## 8.1.0-canary.50
|
|
424
271
|
|
|
425
272
|
### Patch Changes
|
|
426
273
|
|
|
427
|
-
- [#
|
|
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))
|
|
428
275
|
|
|
429
|
-
## 8.0
|
|
276
|
+
## 8.1.0-canary.49
|
|
430
277
|
|
|
431
278
|
### Patch Changes
|
|
432
279
|
|
|
433
|
-
- [#
|
|
434
|
-
|
|
435
|
-
## 8.0.1-canary.3
|
|
436
|
-
|
|
437
|
-
## 8.0.1-canary.2
|
|
438
|
-
|
|
439
|
-
## 8.0.1-canary.1
|
|
440
|
-
|
|
441
|
-
## 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))
|
|
442
281
|
|
|
443
|
-
## 8.0.
|
|
282
|
+
## 8.1.0-canary.47
|
|
444
283
|
|
|
445
284
|
### Minor Changes
|
|
446
285
|
|
|
447
|
-
- [#
|
|
448
|
-
|
|
449
|
-
- [#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))
|
|
450
287
|
|
|
451
|
-
|
|
288
|
+
## 8.1.0-canary.46
|
|
452
289
|
|
|
453
290
|
### Patch Changes
|
|
454
291
|
|
|
455
|
-
- [#
|
|
456
|
-
|
|
457
|
-
- [#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))
|
|
458
|
-
|
|
459
|
-
- [#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))
|
|
460
|
-
|
|
461
|
-
- [#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))
|
|
462
|
-
|
|
463
|
-
- [#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))
|
|
464
|
-
|
|
465
|
-
- [`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))
|
|
466
|
-
|
|
467
|
-
- [#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))
|
|
468
293
|
|
|
469
|
-
|
|
294
|
+
## 8.1.0-canary.45
|
|
470
295
|
|
|
471
|
-
|
|
296
|
+
### Patch Changes
|
|
472
297
|
|
|
473
|
-
- [#
|
|
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))
|
|
474
299
|
|
|
475
|
-
- [#
|
|
476
|
-
|
|
477
|
-
- [#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))
|
|
478
|
-
|
|
479
|
-
- [#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))
|
|
480
|
-
|
|
481
|
-
- [#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))
|
|
482
|
-
|
|
483
|
-
- [#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))
|
|
484
|
-
|
|
485
|
-
- [#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))
|
|
486
|
-
|
|
487
|
-
- [#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))
|
|
488
|
-
|
|
489
|
-
## 8.0.0-canary.100
|
|
490
|
-
|
|
491
|
-
## 8.0.0-canary.99
|
|
492
|
-
|
|
493
|
-
## 8.0.0-canary.98
|
|
494
|
-
|
|
495
|
-
## 8.0.0-canary.97
|
|
496
|
-
|
|
497
|
-
## 8.0.0-canary.96
|
|
498
|
-
|
|
499
|
-
## 8.0.0-canary.95
|
|
500
|
-
|
|
501
|
-
## 8.0.0-canary.94
|
|
502
|
-
|
|
503
|
-
## 8.0.0-canary.93
|
|
504
|
-
|
|
505
|
-
## 8.0.0-canary.92
|
|
506
|
-
|
|
507
|
-
## 8.0.0-canary.91
|
|
508
|
-
|
|
509
|
-
## 8.0.0-canary.90
|
|
510
|
-
|
|
511
|
-
## 8.0.0-canary.89
|
|
512
|
-
|
|
513
|
-
## 8.0.0-canary.88
|
|
514
|
-
|
|
515
|
-
## 8.0.0-canary.87
|
|
516
|
-
|
|
517
|
-
## 8.0.0-canary.86
|
|
518
|
-
|
|
519
|
-
## 8.0.0-canary.85
|
|
520
|
-
|
|
521
|
-
## 8.0.0-canary.84
|
|
522
|
-
|
|
523
|
-
### Patch Changes
|
|
524
|
-
|
|
525
|
-
- [#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))
|
|
526
|
-
|
|
527
|
-
## 8.0.0-canary.83
|
|
528
|
-
|
|
529
|
-
## 8.0.0-canary.82
|
|
530
|
-
|
|
531
|
-
## 8.0.0-canary.81
|
|
532
|
-
|
|
533
|
-
## 8.0.0-canary.80
|
|
534
|
-
|
|
535
|
-
### Patch Changes
|
|
536
|
-
|
|
537
|
-
- [#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))
|
|
538
|
-
|
|
539
|
-
## 8.0.0-canary.79
|
|
540
|
-
|
|
541
|
-
### Patch Changes
|
|
542
|
-
|
|
543
|
-
- [#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))
|
|
544
|
-
|
|
545
|
-
## 8.0.0-canary.78
|
|
546
|
-
|
|
547
|
-
### Patch Changes
|
|
548
|
-
|
|
549
|
-
- [#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))
|
|
550
|
-
|
|
551
|
-
## 8.0.0-canary.77
|
|
552
|
-
|
|
553
|
-
### Patch Changes
|
|
554
|
-
|
|
555
|
-
- [`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))
|
|
556
|
-
|
|
557
|
-
## 8.0.0-canary.76
|
|
558
|
-
|
|
559
|
-
## 8.0.0-canary.75
|
|
560
|
-
|
|
561
|
-
## 8.0.0-canary.74
|
|
562
|
-
|
|
563
|
-
### Minor Changes
|
|
564
|
-
|
|
565
|
-
- [#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))
|
|
566
|
-
|
|
567
|
-
## 8.0.0-canary.73
|
|
568
|
-
|
|
569
|
-
## 8.0.0-canary.72
|
|
570
|
-
|
|
571
|
-
## 8.0.0-canary.71
|
|
572
|
-
|
|
573
|
-
## 8.0.0-canary.70
|
|
574
|
-
|
|
575
|
-
## 8.0.0-canary.69
|
|
576
|
-
|
|
577
|
-
## 7.1.0-canary.68
|
|
578
|
-
|
|
579
|
-
## 7.1.0-canary.67
|
|
580
|
-
|
|
581
|
-
### Patch Changes
|
|
582
|
-
|
|
583
|
-
- [#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))
|
|
584
|
-
|
|
585
|
-
## 7.1.0-canary.66
|
|
586
|
-
|
|
587
|
-
## 7.1.0-canary.65
|
|
588
|
-
|
|
589
|
-
## 7.1.0-canary.64
|
|
590
|
-
|
|
591
|
-
## 7.1.0-canary.63
|
|
592
|
-
|
|
593
|
-
## 7.1.0-canary.62
|
|
594
|
-
|
|
595
|
-
## 7.1.0-canary.61
|
|
596
|
-
|
|
597
|
-
### Patch Changes
|
|
598
|
-
|
|
599
|
-
- [#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))
|
|
600
|
-
|
|
601
|
-
## 7.1.0-canary.60
|
|
602
|
-
|
|
603
|
-
## 7.1.0-canary.59
|
|
604
|
-
|
|
605
|
-
## 7.1.0-canary.58
|
|
606
|
-
|
|
607
|
-
### Patch Changes
|
|
608
|
-
|
|
609
|
-
- [#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))
|
|
610
|
-
|
|
611
|
-
## 7.1.0-canary.57
|
|
612
|
-
|
|
613
|
-
## 7.1.0-canary.56
|
|
614
|
-
|
|
615
|
-
### Patch Changes
|
|
616
|
-
|
|
617
|
-
- [#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))
|
|
618
|
-
|
|
619
|
-
## 7.1.0-canary.55
|
|
620
|
-
|
|
621
|
-
### Patch Changes
|
|
622
|
-
|
|
623
|
-
- [#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))
|
|
624
|
-
|
|
625
|
-
- [#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))
|
|
626
|
-
|
|
627
|
-
- [#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))
|
|
628
|
-
|
|
629
|
-
- [#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))
|
|
630
|
-
|
|
631
|
-
## 7.1.0-canary.54
|
|
632
|
-
|
|
633
|
-
## 7.1.0-canary.53
|
|
634
|
-
|
|
635
|
-
## 7.1.0-canary.52
|
|
636
|
-
|
|
637
|
-
## 7.1.0-canary.51
|
|
638
|
-
|
|
639
|
-
## 7.1.0-canary.50
|
|
640
|
-
|
|
641
|
-
## 7.1.0-canary.49
|
|
642
|
-
|
|
643
|
-
## 7.1.0-canary.48
|
|
644
|
-
|
|
645
|
-
## 7.1.0-canary.47
|
|
646
|
-
|
|
647
|
-
## 7.1.0-canary.46
|
|
648
|
-
|
|
649
|
-
## 7.1.0-canary.45
|
|
650
|
-
|
|
651
|
-
### Patch Changes
|
|
652
|
-
|
|
653
|
-
- [#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))
|
|
654
|
-
|
|
655
|
-
## 7.1.0-canary.38
|
|
656
|
-
|
|
657
|
-
### Patch Changes
|
|
658
|
-
|
|
659
|
-
- [#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))
|
|
660
|
-
|
|
661
|
-
## 7.1.0-canary.37
|
|
662
|
-
|
|
663
|
-
## 7.1.0-canary.36
|
|
664
|
-
|
|
665
|
-
## 7.1.0-canary.35
|
|
666
|
-
|
|
667
|
-
## 7.1.0-canary.34
|
|
668
|
-
|
|
669
|
-
## 7.1.0-canary.33
|
|
670
|
-
|
|
671
|
-
## 7.1.0-canary.32
|
|
672
|
-
|
|
673
|
-
## 7.1.0-canary.31
|
|
674
|
-
|
|
675
|
-
## 7.1.0-canary.30
|
|
676
|
-
|
|
677
|
-
### Patch Changes
|
|
678
|
-
|
|
679
|
-
- [#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))
|
|
680
|
-
|
|
681
|
-
## 7.1.0-canary.29
|
|
682
|
-
|
|
683
|
-
## 7.1.0-canary.28
|
|
684
|
-
|
|
685
|
-
### Minor Changes
|
|
686
|
-
|
|
687
|
-
- [#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))
|
|
688
|
-
|
|
689
|
-
## 7.1.0-canary.27
|
|
690
|
-
|
|
691
|
-
## 7.1.0-canary.26
|
|
692
|
-
|
|
693
|
-
## 7.1.0-canary.25
|
|
694
|
-
|
|
695
|
-
## 7.1.0-canary.24
|
|
696
|
-
|
|
697
|
-
## 7.1.0-canary.23
|
|
698
|
-
|
|
699
|
-
## 7.1.0-canary.22
|
|
700
|
-
|
|
701
|
-
## 7.1.0-canary.21
|
|
702
|
-
|
|
703
|
-
## 7.1.0-canary.20
|
|
704
|
-
|
|
705
|
-
## 7.1.0-canary.19
|
|
706
|
-
|
|
707
|
-
## 7.1.0-canary.18
|
|
708
|
-
|
|
709
|
-
## 7.1.0-canary.17
|
|
710
|
-
|
|
711
|
-
## 7.1.0-canary.16
|
|
712
|
-
|
|
713
|
-
## 7.1.0-canary.15
|
|
714
|
-
|
|
715
|
-
## 7.1.0-canary.14
|
|
716
|
-
|
|
717
|
-
### Patch Changes
|
|
718
|
-
|
|
719
|
-
- [#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))
|
|
720
|
-
|
|
721
|
-
## 7.1.0-canary.13
|
|
722
|
-
|
|
723
|
-
## 7.1.0-canary.12
|
|
724
|
-
|
|
725
|
-
## 7.1.0-canary.11
|
|
726
|
-
|
|
727
|
-
## 7.1.0-canary.10
|
|
728
|
-
|
|
729
|
-
## 7.1.0-canary.9
|
|
730
|
-
|
|
731
|
-
## 7.1.0-canary.8
|
|
732
|
-
|
|
733
|
-
### Minor Changes
|
|
734
|
-
|
|
735
|
-
- [#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))
|
|
736
|
-
|
|
737
|
-
## 7.0.2-canary.7
|
|
738
|
-
|
|
739
|
-
## 7.0.2-canary.6
|
|
740
|
-
|
|
741
|
-
### Patch Changes
|
|
742
|
-
|
|
743
|
-
- [#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))
|
|
744
|
-
|
|
745
|
-
## 7.0.2-canary.5
|
|
746
|
-
|
|
747
|
-
## 7.0.1
|
|
748
|
-
|
|
749
|
-
### Patch Changes
|
|
750
|
-
|
|
751
|
-
- [#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))
|
|
752
|
-
|
|
753
|
-
- [#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))
|
|
754
|
-
|
|
755
|
-
## 7.0.1-canary.15
|
|
756
|
-
|
|
757
|
-
### Patch Changes
|
|
758
|
-
|
|
759
|
-
- [#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))
|
|
760
|
-
|
|
761
|
-
## 7.0.1-canary.14
|
|
762
|
-
|
|
763
|
-
## 7.0.1-canary.13
|
|
764
|
-
|
|
765
|
-
## 7.0.1-canary.12
|
|
766
|
-
|
|
767
|
-
## 7.0.1-canary.11
|
|
768
|
-
|
|
769
|
-
## 7.0.1-canary.10
|
|
770
|
-
|
|
771
|
-
## 7.0.1-canary.9
|
|
772
|
-
|
|
773
|
-
## 7.0.1-canary.8
|
|
774
|
-
|
|
775
|
-
## 7.0.1-canary.7
|
|
776
|
-
|
|
777
|
-
## 7.0.1-canary.6
|
|
778
|
-
|
|
779
|
-
## 7.0.1-canary.5
|
|
780
|
-
|
|
781
|
-
## 7.0.1-canary.4
|
|
782
|
-
|
|
783
|
-
## 7.0.1-canary.3
|
|
784
|
-
|
|
785
|
-
## 7.0.1-canary.2
|
|
786
|
-
|
|
787
|
-
## 7.0.1-canary.1
|
|
788
|
-
|
|
789
|
-
## 7.0.1-canary.0
|
|
790
|
-
|
|
791
|
-
### Patch Changes
|
|
792
|
-
|
|
793
|
-
- [#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))
|
|
794
|
-
|
|
795
|
-
## 7.0.0
|
|
796
|
-
|
|
797
|
-
### Major Changes
|
|
798
|
-
|
|
799
|
-
- [`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))
|
|
800
|
-
|
|
801
|
-
### Minor Changes
|
|
802
|
-
|
|
803
|
-
- [#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))
|
|
804
|
-
|
|
805
|
-
- [#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))
|
|
806
|
-
|
|
807
|
-
- [#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))
|
|
808
|
-
|
|
809
|
-
### Patch Changes
|
|
810
|
-
|
|
811
|
-
- [#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))
|
|
812
|
-
|
|
813
|
-
- [#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))
|
|
814
|
-
|
|
815
|
-
- [#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))
|
|
816
|
-
|
|
817
|
-
- [#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))
|
|
818
|
-
|
|
819
|
-
- [#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))
|
|
820
|
-
|
|
821
|
-
- [#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))
|
|
822
|
-
|
|
823
|
-
- [#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))
|
|
824
|
-
|
|
825
|
-
- [#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))
|
|
826
|
-
|
|
827
|
-
- [#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))
|
|
828
|
-
|
|
829
|
-
- [#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))
|
|
830
|
-
|
|
831
|
-
- [#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))
|
|
832
|
-
|
|
833
|
-
- [#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))
|
|
834
|
-
|
|
835
|
-
- [#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))
|
|
836
|
-
|
|
837
|
-
- [#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))
|
|
838
|
-
|
|
839
|
-
- [#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))
|
|
840
|
-
|
|
841
|
-
## 6.2.0-canary.98
|
|
842
|
-
|
|
843
|
-
## 6.2.0-canary.97
|
|
844
|
-
|
|
845
|
-
### Patch Changes
|
|
846
|
-
|
|
847
|
-
- [#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))
|
|
848
|
-
|
|
849
|
-
## 6.2.0-canary.96
|
|
850
|
-
|
|
851
|
-
## 6.2.0-canary.95
|
|
852
|
-
|
|
853
|
-
## 6.2.0-canary.94
|
|
854
|
-
|
|
855
|
-
## 6.2.0-canary.93
|
|
856
|
-
|
|
857
|
-
## 6.2.0-canary.92
|
|
858
|
-
|
|
859
|
-
## 6.2.0-canary.91
|
|
860
|
-
|
|
861
|
-
## 6.2.0-canary.90
|
|
862
|
-
|
|
863
|
-
## 6.2.0-canary.89
|
|
864
|
-
|
|
865
|
-
## 6.2.0-canary.88
|
|
866
|
-
|
|
867
|
-
## 6.2.0-canary.87
|
|
868
|
-
|
|
869
|
-
## 6.2.0-canary.86
|
|
870
|
-
|
|
871
|
-
### Minor Changes
|
|
872
|
-
|
|
873
|
-
- [#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))
|
|
874
|
-
|
|
875
|
-
## 6.2.0-canary.85
|
|
876
|
-
|
|
877
|
-
## 6.2.0-canary.84
|
|
878
|
-
|
|
879
|
-
## 6.2.0-canary.83
|
|
880
|
-
|
|
881
|
-
## 6.2.0-canary.82
|
|
882
|
-
|
|
883
|
-
## 6.2.0-canary.81
|
|
884
|
-
|
|
885
|
-
### Minor Changes
|
|
886
|
-
|
|
887
|
-
- [#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))
|
|
888
|
-
|
|
889
|
-
### Patch Changes
|
|
890
|
-
|
|
891
|
-
- [#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))
|
|
892
|
-
|
|
893
|
-
- [#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))
|
|
894
|
-
|
|
895
|
-
## 6.2.0-canary.80
|
|
896
|
-
|
|
897
|
-
## 6.2.0-canary.79
|
|
898
|
-
|
|
899
|
-
### Patch Changes
|
|
900
|
-
|
|
901
|
-
- [#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))
|
|
902
|
-
|
|
903
|
-
## 6.2.0-canary.78
|
|
904
|
-
|
|
905
|
-
## 6.2.0-canary.77
|
|
906
|
-
|
|
907
|
-
## 6.2.0-canary.76
|
|
908
|
-
|
|
909
|
-
### Patch Changes
|
|
910
|
-
|
|
911
|
-
- [#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))
|
|
912
|
-
|
|
913
|
-
## 6.2.0-canary.75
|
|
914
|
-
|
|
915
|
-
## 6.2.0-canary.74
|
|
916
|
-
|
|
917
|
-
## 6.2.0-canary.73
|
|
918
|
-
|
|
919
|
-
## 6.2.0-canary.72
|
|
920
|
-
|
|
921
|
-
## 6.2.0-canary.71
|
|
922
|
-
|
|
923
|
-
### Patch Changes
|
|
924
|
-
|
|
925
|
-
- [#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))
|
|
926
|
-
|
|
927
|
-
## 6.2.0-canary.70
|
|
928
|
-
|
|
929
|
-
## 6.2.0-canary.69
|
|
930
|
-
|
|
931
|
-
## 6.2.0-canary.68
|
|
932
|
-
|
|
933
|
-
## 6.2.0-canary.67
|
|
934
|
-
|
|
935
|
-
## 6.2.0-canary.66
|
|
936
|
-
|
|
937
|
-
## 6.2.0-canary.65
|
|
938
|
-
|
|
939
|
-
## 6.2.0-canary.64
|
|
940
|
-
|
|
941
|
-
### Patch Changes
|
|
942
|
-
|
|
943
|
-
- [#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))
|
|
944
|
-
|
|
945
|
-
## 6.2.0-canary.63
|
|
946
|
-
|
|
947
|
-
## 6.2.0-canary.62
|
|
948
|
-
|
|
949
|
-
## 6.2.0-canary.61
|
|
950
|
-
|
|
951
|
-
## 6.2.0-canary.60
|
|
952
|
-
|
|
953
|
-
## 6.2.0-canary.59
|
|
954
|
-
|
|
955
|
-
## 6.2.0-canary.58
|
|
956
|
-
|
|
957
|
-
## 6.2.0-canary.57
|
|
958
|
-
|
|
959
|
-
## 6.2.0-canary.56
|
|
960
|
-
|
|
961
|
-
## 6.2.0-canary.55
|
|
962
|
-
|
|
963
|
-
## 6.2.0-canary.54
|
|
964
|
-
|
|
965
|
-
## 6.2.0-canary.53
|
|
966
|
-
|
|
967
|
-
## 6.2.0-canary.52
|
|
968
|
-
|
|
969
|
-
## 6.2.0-canary.51
|
|
970
|
-
|
|
971
|
-
## 6.2.0-canary.50
|
|
972
|
-
|
|
973
|
-
### Minor Changes
|
|
974
|
-
|
|
975
|
-
- [`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))
|
|
976
|
-
|
|
977
|
-
## 6.2.0-canary.49
|
|
978
|
-
|
|
979
|
-
## 6.2.0-canary.48
|
|
980
|
-
|
|
981
|
-
### Minor Changes
|
|
982
|
-
|
|
983
|
-
- [#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))
|
|
984
|
-
|
|
985
|
-
## 6.2.0-canary.47
|
|
986
|
-
|
|
987
|
-
## 6.2.0-canary.46
|
|
988
|
-
|
|
989
|
-
## 6.2.0-canary.45
|
|
990
|
-
|
|
991
|
-
## 6.2.0-canary.44
|
|
992
|
-
|
|
993
|
-
## 6.2.0-canary.43
|
|
994
|
-
|
|
995
|
-
### Patch Changes
|
|
996
|
-
|
|
997
|
-
- [#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))
|
|
998
|
-
|
|
999
|
-
## 6.2.0-canary.42
|
|
1000
|
-
|
|
1001
|
-
## 6.2.0-canary.41
|
|
1002
|
-
|
|
1003
|
-
### Patch Changes
|
|
1004
|
-
|
|
1005
|
-
- [#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))
|
|
1006
|
-
|
|
1007
|
-
## 6.2.0-canary.40
|
|
1008
|
-
|
|
1009
|
-
## 6.2.0-canary.39
|
|
1010
|
-
|
|
1011
|
-
## 6.2.0-canary.38
|
|
1012
|
-
|
|
1013
|
-
### Patch Changes
|
|
1014
|
-
|
|
1015
|
-
- [#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))
|
|
1016
|
-
|
|
1017
|
-
## 6.2.0-canary.37
|
|
1018
|
-
|
|
1019
|
-
## 6.2.0-canary.36
|
|
1020
|
-
|
|
1021
|
-
## 6.2.0-canary.35
|
|
1022
|
-
|
|
1023
|
-
## 6.2.0-canary.34
|
|
1024
|
-
|
|
1025
|
-
## 6.2.0-canary.33
|
|
1026
|
-
|
|
1027
|
-
## 6.2.0-canary.32
|
|
1028
|
-
|
|
1029
|
-
## 6.2.0-canary.31
|
|
1030
|
-
|
|
1031
|
-
## 6.2.0-canary.30
|
|
1032
|
-
|
|
1033
|
-
## 6.2.0-canary.29
|
|
1034
|
-
|
|
1035
|
-
### Patch Changes
|
|
1036
|
-
|
|
1037
|
-
- [#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))
|
|
1038
|
-
|
|
1039
|
-
## 6.2.0-canary.28
|
|
1040
|
-
|
|
1041
|
-
## 6.2.0-canary.27
|
|
1042
|
-
|
|
1043
|
-
## 6.2.0-canary.26
|
|
1044
|
-
|
|
1045
|
-
## 6.2.0-canary.25
|
|
1046
|
-
|
|
1047
|
-
## 6.2.0-canary.24
|
|
1048
|
-
|
|
1049
|
-
## 6.2.0-canary.23
|
|
1050
|
-
|
|
1051
|
-
## 6.2.0-canary.22
|
|
1052
|
-
|
|
1053
|
-
### Patch Changes
|
|
1054
|
-
|
|
1055
|
-
- [#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))
|
|
1056
|
-
|
|
1057
|
-
## 6.2.0-canary.21
|
|
1058
|
-
|
|
1059
|
-
## 6.2.0-canary.20
|
|
1060
|
-
|
|
1061
|
-
## 6.2.0-canary.19
|
|
1062
|
-
|
|
1063
|
-
## 6.2.0-canary.18
|
|
1064
|
-
|
|
1065
|
-
## 6.2.0-canary.17
|
|
1066
|
-
|
|
1067
|
-
### Patch Changes
|
|
1068
|
-
|
|
1069
|
-
- [#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))
|
|
1070
|
-
|
|
1071
|
-
## 6.2.0-canary.16
|
|
1072
|
-
|
|
1073
|
-
### Patch Changes
|
|
1074
|
-
|
|
1075
|
-
- [#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))
|
|
1076
|
-
|
|
1077
|
-
## 6.2.0-canary.15
|
|
1078
|
-
|
|
1079
|
-
## 6.2.0-canary.14
|
|
1080
|
-
|
|
1081
|
-
## 6.2.0-canary.13
|
|
1082
|
-
|
|
1083
|
-
## 6.2.0-canary.12
|
|
1084
|
-
|
|
1085
|
-
## 6.2.0-canary.11
|
|
1086
|
-
|
|
1087
|
-
## 6.2.0-canary.10
|
|
1088
|
-
|
|
1089
|
-
## 6.2.0-canary.9
|
|
1090
|
-
|
|
1091
|
-
### Patch Changes
|
|
1092
|
-
|
|
1093
|
-
- [#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))
|
|
1094
|
-
|
|
1095
|
-
## 6.2.0-canary.8
|
|
1096
|
-
|
|
1097
|
-
## 6.2.0-canary.7
|
|
1098
|
-
|
|
1099
|
-
## 6.2.0-canary.6
|
|
1100
|
-
|
|
1101
|
-
## 6.1.1-canary.5
|
|
1102
|
-
|
|
1103
|
-
### Patch Changes
|
|
1104
|
-
|
|
1105
|
-
- [#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))
|
|
1106
|
-
|
|
1107
|
-
- [#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))
|
|
1108
|
-
|
|
1109
|
-
## 6.1.1-canary.4
|
|
1110
|
-
|
|
1111
|
-
## 6.1.1-canary.3
|
|
1112
|
-
|
|
1113
|
-
## 6.1.1-canary.2
|
|
1114
|
-
|
|
1115
|
-
## 6.1.1-canary.1
|
|
1116
|
-
|
|
1117
|
-
## 6.1.1-canary.0
|
|
1118
|
-
|
|
1119
|
-
## 6.1.0
|
|
1120
|
-
|
|
1121
|
-
### Patch Changes
|
|
1122
|
-
|
|
1123
|
-
- [#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))
|
|
1124
|
-
|
|
1125
|
-
- [#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))
|
|
1126
|
-
|
|
1127
|
-
- [#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))
|
|
1128
|
-
|
|
1129
|
-
## 6.0.2-canary.22
|
|
1130
|
-
|
|
1131
|
-
## 6.0.2-canary.21
|
|
1132
|
-
|
|
1133
|
-
## 6.0.2-canary.20
|
|
1134
|
-
|
|
1135
|
-
## 6.0.2-canary.19
|
|
1136
|
-
|
|
1137
|
-
## 6.0.2-canary.18
|
|
1138
|
-
|
|
1139
|
-
## 6.0.2-canary.17
|
|
1140
|
-
|
|
1141
|
-
### Patch Changes
|
|
1142
|
-
|
|
1143
|
-
- [#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))
|
|
1144
|
-
|
|
1145
|
-
## 6.0.2-canary.16
|
|
1146
|
-
|
|
1147
|
-
## 6.0.2-canary.15
|
|
1148
|
-
|
|
1149
|
-
## 6.0.2-canary.14
|
|
1150
|
-
|
|
1151
|
-
## 6.0.2-canary.13
|
|
1152
|
-
|
|
1153
|
-
## 6.0.2-canary.12
|
|
1154
|
-
|
|
1155
|
-
## 6.0.2-canary.11
|
|
1156
|
-
|
|
1157
|
-
## 6.0.2-canary.10
|
|
1158
|
-
|
|
1159
|
-
## 6.0.2-canary.9
|
|
1160
|
-
|
|
1161
|
-
## 6.0.2-canary.8
|
|
1162
|
-
|
|
1163
|
-
## 6.0.2-canary.7
|
|
1164
|
-
|
|
1165
|
-
## 6.0.2-canary.6
|
|
1166
|
-
|
|
1167
|
-
## 6.0.2-canary.5
|
|
1168
|
-
|
|
1169
|
-
## 6.0.2-canary.4
|
|
1170
|
-
|
|
1171
|
-
## 6.0.2-canary.3
|
|
1172
|
-
|
|
1173
|
-
## 6.0.2-canary.2
|
|
1174
|
-
|
|
1175
|
-
### Patch Changes
|
|
1176
|
-
|
|
1177
|
-
- [#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))
|
|
1178
|
-
|
|
1179
|
-
- [#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))
|
|
1180
|
-
|
|
1181
|
-
- [#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))
|
|
1182
|
-
|
|
1183
|
-
- [#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))
|
|
1184
|
-
|
|
1185
|
-
## 6.0.2-canary.1
|
|
1186
|
-
|
|
1187
|
-
## 6.0.2-canary.0
|
|
1188
|
-
|
|
1189
|
-
## 6.0.1
|
|
1190
|
-
|
|
1191
|
-
### Patch Changes
|
|
1192
|
-
|
|
1193
|
-
- [#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))
|
|
1194
|
-
|
|
1195
|
-
- [#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))
|
|
1196
|
-
|
|
1197
|
-
## 6.0.1-canary.7
|
|
1198
|
-
|
|
1199
|
-
## 6.0.1-canary.6
|
|
1200
|
-
|
|
1201
|
-
## 6.0.1-canary.5
|
|
1202
|
-
|
|
1203
|
-
## 6.0.1-canary.4
|
|
1204
|
-
|
|
1205
|
-
## 6.0.1-canary.3
|
|
1206
|
-
|
|
1207
|
-
## 6.0.1-canary.2
|
|
1208
|
-
|
|
1209
|
-
## 6.0.1-canary.1
|
|
1210
|
-
|
|
1211
|
-
## 6.0.1-canary.0
|
|
1212
|
-
|
|
1213
|
-
### Patch Changes
|
|
1214
|
-
|
|
1215
|
-
- [#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))
|
|
1216
|
-
|
|
1217
|
-
- [#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))
|
|
1218
|
-
|
|
1219
|
-
## 6.0.0
|
|
1220
|
-
|
|
1221
|
-
### Major Changes
|
|
1222
|
-
|
|
1223
|
-
- [#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))
|
|
1224
|
-
|
|
1225
|
-
- [#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))
|
|
1226
|
-
|
|
1227
|
-
### Minor Changes
|
|
1228
|
-
|
|
1229
|
-
- [#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:
|
|
1230
|
-
|
|
1231
|
-
- og:title
|
|
1232
|
-
- og:image
|
|
1233
|
-
- og:url
|
|
1234
|
-
- type
|
|
1235
|
-
- product:retailer_part_no
|
|
1236
|
-
- product:price:amount
|
|
1237
|
-
- product:sale_price:amount
|
|
1238
|
-
- product:price:currency
|
|
1239
|
-
- product:category ([@KMalkowski](https://github.com/KMalkowski))
|
|
1240
|
-
|
|
1241
|
-
- [#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:
|
|
1242
|
-
|
|
1243
|
-
- Scrolling on desktop will not close the overlay when there is content to be scrolled
|
|
1244
|
-
- Scrolling will not snap to bottom / top when the content is barely scrollable
|
|
1245
|
-
- Dragging will only open or close the drawer, not something inbetween
|
|
1246
|
-
- Swiping up on mobile will not close the overlay, first you need to scroll to the top of the overlay.
|
|
1247
|
-
- Floating overlays will now scroll inside the floating overlay. ([@paales](https://github.com/paales))
|
|
1248
|
-
|
|
1249
|
-
- [#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))
|
|
1250
|
-
|
|
1251
|
-
- [#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))
|
|
1252
|
-
|
|
1253
|
-
- [#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))
|
|
1254
|
-
|
|
1255
|
-
### Patch Changes
|
|
1256
|
-
|
|
1257
|
-
- [#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))
|
|
1258
|
-
|
|
1259
|
-
- [#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))
|
|
1260
|
-
|
|
1261
|
-
- [#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))
|
|
1262
|
-
|
|
1263
|
-
- [#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))
|
|
1264
|
-
|
|
1265
|
-
- [#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))
|
|
1266
|
-
|
|
1267
|
-
- [#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))
|
|
1268
|
-
|
|
1269
|
-
- [#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))
|
|
1270
|
-
|
|
1271
|
-
- [#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))
|
|
1272
|
-
|
|
1273
|
-
- [#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))
|
|
1274
|
-
|
|
1275
|
-
- [#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))
|
|
1276
|
-
|
|
1277
|
-
- [#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))
|
|
1278
|
-
|
|
1279
|
-
- [`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))
|
|
1280
301
|
|
|
1281
|
-
- [#
|
|
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))
|
|
1282
303
|
|
|
1283
|
-
- [#
|
|
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))
|
|
1284
305
|
|
|
1285
|
-
|
|
306
|
+
## 8.1.0-canary.41
|
|
1286
307
|
|
|
1287
|
-
|
|
308
|
+
### Patch Changes
|
|
1288
309
|
|
|
1289
|
-
- [#
|
|
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))
|
|
1290
311
|
|
|
1291
|
-
|
|
312
|
+
## 8.1.0-canary.40
|
|
1292
313
|
|
|
1293
|
-
|
|
314
|
+
### Minor Changes
|
|
1294
315
|
|
|
1295
|
-
|
|
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))
|
|
1296
317
|
|
|
1297
|
-
##
|
|
318
|
+
## 8.1.0-canary.31
|
|
1298
319
|
|
|
1299
320
|
### Patch Changes
|
|
1300
321
|
|
|
1301
|
-
- [#
|
|
1302
|
-
|
|
1303
|
-
## 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))
|
|
1304
323
|
|
|
1305
|
-
##
|
|
324
|
+
## 8.1.0-canary.27
|
|
1306
325
|
|
|
1307
|
-
|
|
326
|
+
### Minor Changes
|
|
1308
327
|
|
|
1309
|
-
|
|
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))
|
|
1310
329
|
|
|
1311
|
-
##
|
|
330
|
+
## 8.1.0-canary.26
|
|
1312
331
|
|
|
1313
332
|
### Minor Changes
|
|
1314
333
|
|
|
1315
|
-
- [#
|
|
1316
|
-
|
|
1317
|
-
|
|
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
|
|
1318
337
|
|
|
1319
|
-
|
|
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))
|
|
1320
339
|
|
|
1321
|
-
##
|
|
340
|
+
## 8.1.0-canary.17
|
|
1322
341
|
|
|
1323
|
-
###
|
|
342
|
+
### Minor Changes
|
|
1324
343
|
|
|
1325
|
-
- [#
|
|
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))
|
|
1326
345
|
|
|
1327
|
-
##
|
|
346
|
+
## 8.1.0-canary.9
|
|
1328
347
|
|
|
1329
348
|
### Patch Changes
|
|
1330
349
|
|
|
1331
|
-
- [#
|
|
1332
|
-
|
|
1333
|
-
## 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))
|
|
1334
351
|
|
|
1335
|
-
##
|
|
352
|
+
## 8.1.0-canary.8
|
|
1336
353
|
|
|
1337
|
-
|
|
354
|
+
### Patch Changes
|
|
1338
355
|
|
|
1339
|
-
|
|
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))
|
|
1340
357
|
|
|
1341
|
-
##
|
|
358
|
+
## 8.0.6-canary.2
|
|
1342
359
|
|
|
1343
360
|
### Patch Changes
|
|
1344
361
|
|
|
1345
|
-
- [`
|
|
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))
|
|
1346
363
|
|
|
1347
|
-
|
|
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))
|
|
1348
365
|
|
|
1349
|
-
##
|
|
366
|
+
## 8.0.6-canary.0
|
|
1350
367
|
|
|
1351
368
|
### Patch Changes
|
|
1352
369
|
|
|
1353
|
-
- [#
|
|
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))
|
|
1354
371
|
|
|
1355
|
-
##
|
|
372
|
+
## 8.0.5
|
|
1356
373
|
|
|
1357
|
-
|
|
374
|
+
### Patch Changes
|
|
1358
375
|
|
|
1359
|
-
|
|
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))
|
|
1360
377
|
|
|
1361
|
-
- [#
|
|
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.
|
|
1362
379
|
|
|
1363
|
-
|
|
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))
|
|
1364
381
|
|
|
1365
|
-
|
|
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))
|
|
1366
383
|
|
|
1367
|
-
- [#
|
|
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))
|
|
1368
385
|
|
|
1369
|
-
- [#
|
|
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))
|
|
1370
387
|
|
|
1371
|
-
|
|
1372
|
-
- Scrolling will not snap to bottom / top when the content is barely scrollable
|
|
1373
|
-
- Dragging will only open or close the drawer, not something inbetween
|
|
1374
|
-
- Swiping up on mobile will not close the overlay, first you need to scroll to the top of the overlay.
|
|
1375
|
-
- 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))
|
|
1376
389
|
|
|
1377
|
-
|
|
390
|
+
## 8.0.4
|
|
1378
391
|
|
|
1379
|
-
|
|
392
|
+
### Patch Changes
|
|
1380
393
|
|
|
1381
|
-
- [#
|
|
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))
|
|
1382
395
|
|
|
1383
|
-
##
|
|
396
|
+
## 8.0.1
|
|
1384
397
|
|
|
1385
398
|
### Patch Changes
|
|
1386
399
|
|
|
1387
|
-
- [#
|
|
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))
|
|
1388
401
|
|
|
1389
|
-
##
|
|
402
|
+
## 8.0.0
|
|
1390
403
|
|
|
1391
404
|
### Minor Changes
|
|
1392
405
|
|
|
1393
|
-
- [#
|
|
1394
|
-
- Actioncard default styling
|
|
1395
|
-
- Active filter styling ([@ErwinOtten](https://github.com/ErwinOtten))
|
|
1396
|
-
|
|
1397
|
-
## 6.0.0-canary.31
|
|
1398
|
-
|
|
1399
|
-
### 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))
|
|
1400
407
|
|
|
1401
|
-
- [#
|
|
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))
|
|
1402
409
|
|
|
1403
|
-
|
|
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))
|
|
1404
411
|
|
|
1405
412
|
### Patch Changes
|
|
1406
413
|
|
|
1407
|
-
- [#
|
|
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))
|
|
1408
417
|
|
|
1409
|
-
- [#
|
|
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))
|
|
1410
419
|
|
|
1411
|
-
|
|
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))
|
|
1412
421
|
|
|
1413
|
-
|
|
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))
|
|
1414
423
|
|
|
1415
|
-
|
|
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))
|
|
1416
425
|
|
|
1417
|
-
|
|
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))
|
|
1418
427
|
|
|
1419
|
-
|
|
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))
|
|
1420
429
|
|
|
1421
|
-
|
|
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))
|
|
1422
431
|
|
|
1423
|
-
|
|
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))
|
|
1424
433
|
|
|
1425
|
-
|
|
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))
|
|
1426
435
|
|
|
1427
|
-
|
|
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))
|
|
1428
437
|
|
|
1429
|
-
|
|
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))
|
|
1430
439
|
|
|
1431
|
-
- [#
|
|
1432
|
-
- Fix issue where Navigation can't be reopened after closing, dragging or navigating
|
|
1433
|
-
- 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))
|
|
1434
441
|
|
|
1435
|
-
|
|
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))
|
|
1436
443
|
|
|
1437
|
-
|
|
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))
|
|
1438
445
|
|
|
1439
|
-
|
|
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))
|
|
1440
447
|
|
|
1441
|
-
##
|
|
448
|
+
## 7.0.1
|
|
1442
449
|
|
|
1443
|
-
|
|
450
|
+
### Patch Changes
|
|
1444
451
|
|
|
1445
|
-
|
|
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))
|
|
1446
453
|
|
|
1447
|
-
|
|
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))
|
|
1448
455
|
|
|
1449
|
-
|
|
456
|
+
## 7.0.0
|
|
1450
457
|
|
|
1451
|
-
|
|
458
|
+
### Major Changes
|
|
1452
459
|
|
|
1453
|
-
|
|
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))
|
|
1454
461
|
|
|
1455
462
|
### Minor Changes
|
|
1456
463
|
|
|
1457
|
-
- [#
|
|
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))
|
|
1458
465
|
|
|
1459
|
-
|
|
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))
|
|
1460
467
|
|
|
1461
|
-
|
|
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))
|
|
1462
469
|
|
|
1463
470
|
### Patch Changes
|
|
1464
471
|
|
|
1465
|
-
- [#
|
|
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))
|
|
1466
473
|
|
|
1467
|
-
|
|
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))
|
|
1468
475
|
|
|
1469
|
-
|
|
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))
|
|
1470
477
|
|
|
1471
|
-
- [#
|
|
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))
|
|
1472
481
|
|
|
1473
|
-
|
|
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))
|
|
1474
483
|
|
|
1475
|
-
|
|
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))
|
|
1476
485
|
|
|
1477
|
-
- [`
|
|
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))
|
|
1478
487
|
|
|
1479
|
-
|
|
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))
|
|
1480
489
|
|
|
1481
|
-
|
|
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))
|
|
1482
491
|
|
|
1483
|
-
|
|
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))
|
|
1484
493
|
|
|
1485
|
-
- [#
|
|
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))
|
|
1486
495
|
|
|
1487
|
-
|
|
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))
|
|
1488
497
|
|
|
1489
|
-
- [#
|
|
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))
|
|
1490
499
|
|
|
1491
|
-
|
|
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))
|
|
1492
501
|
|
|
1493
|
-
##
|
|
502
|
+
## 6.1.0
|
|
1494
503
|
|
|
1495
504
|
### Patch Changes
|
|
1496
505
|
|
|
1497
|
-
- [#
|
|
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))
|
|
1498
507
|
|
|
1499
|
-
|
|
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))
|
|
1500
509
|
|
|
1501
|
-
|
|
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))
|
|
1502
511
|
|
|
1503
|
-
##
|
|
512
|
+
## 6.0.1
|
|
1504
513
|
|
|
1505
514
|
### Patch Changes
|
|
1506
515
|
|
|
1507
|
-
- [#
|
|
1508
|
-
|
|
1509
|
-
- [#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))
|
|
1510
517
|
|
|
1511
|
-
|
|
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))
|
|
1512
519
|
|
|
1513
|
-
##
|
|
520
|
+
## 6.0.0
|
|
1514
521
|
|
|
1515
|
-
|
|
522
|
+
### Major Changes
|
|
1516
523
|
|
|
1517
|
-
|
|
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))
|
|
1518
525
|
|
|
1519
|
-
|
|
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))
|
|
1520
527
|
|
|
1521
|
-
|
|
528
|
+
### Minor Changes
|
|
1522
529
|
|
|
1523
|
-
|
|
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:
|
|
1524
531
|
|
|
1525
|
-
-
|
|
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))
|
|
1526
541
|
|
|
1527
|
-
- [#
|
|
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:
|
|
1528
543
|
|
|
1529
|
-
-
|
|
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))
|
|
1530
549
|
|
|
1531
|
-
- [#
|
|
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))
|
|
1532
551
|
|
|
1533
|
-
|
|
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))
|
|
1534
553
|
|
|
1535
|
-
- [#
|
|
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))
|
|
1536
555
|
|
|
1537
|
-
|
|
556
|
+
### Patch Changes
|
|
1538
557
|
|
|
1539
|
-
|
|
1540
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
1541
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1542
|
-
- 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))
|
|
1543
559
|
|
|
1544
|
-
- [#
|
|
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))
|
|
1545
561
|
|
|
1546
|
-
- [#
|
|
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))
|
|
1547
563
|
|
|
1548
|
-
- [#
|
|
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))
|
|
1549
565
|
|
|
1550
|
-
- [#
|
|
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))
|
|
1551
567
|
|
|
1552
|
-
|
|
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))
|
|
1553
569
|
|
|
1554
|
-
|
|
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))
|
|
1555
571
|
|
|
1556
|
-
|
|
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))
|
|
1557
573
|
|
|
1558
|
-
- [#
|
|
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))
|
|
1559
575
|
|
|
1560
|
-
- [#
|
|
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))
|
|
1561
577
|
|
|
1562
|
-
|
|
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))
|
|
1563
579
|
|
|
1564
|
-
|
|
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))
|
|
1565
581
|
|
|
1566
|
-
|
|
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))
|
|
1567
583
|
|
|
1568
|
-
|
|
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))
|
|
1569
585
|
|
|
1570
|
-
|
|
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))
|
|
1571
587
|
|
|
1572
|
-
|
|
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))
|
|
1573
589
|
|
|
1574
|
-
- [`
|
|
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))
|
|
1575
591
|
|
|
1576
|
-
- [`
|
|
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))
|
|
1577
593
|
|
|
1578
|
-
## 5.1.0
|
|
594
|
+
## 5.1.0
|
|
1579
595
|
|
|
1580
596
|
### Patch Changes
|
|
1581
597
|
|
|
1582
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))
|
|
1583
599
|
|
|
1584
|
-
- [#
|
|
1585
|
-
|
|
1586
|
-
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))
|
|
1587
601
|
|
|
1588
|
-
- [#
|
|
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))
|
|
1589
603
|
|
|
1590
|
-
- [#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.
|
|
1591
605
|
|
|
1592
|
-
|
|
606
|
+
Defaults to `widthSm = 'max(300px, 80vw)', widthMd = 'max(800px, 50vw)'` ([@paales](https://github.com/paales))
|
|
1593
607
|
|
|
1594
|
-
|
|
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))
|
|
1595
609
|
|
|
1596
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.
|
|
1597
611
|
|
|
@@ -1600,15 +614,13 @@
|
|
|
1600
614
|
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1601
615
|
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
1602
616
|
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
### 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))
|
|
1606
618
|
|
|
1607
|
-
- [#
|
|
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))
|
|
1608
620
|
|
|
1609
|
-
|
|
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))
|
|
1610
622
|
|
|
1611
|
-
|
|
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))
|
|
1612
624
|
|
|
1613
625
|
## 5.0.0
|
|
1614
626
|
|
|
@@ -1632,72 +644,12 @@
|
|
|
1632
644
|
|
|
1633
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))
|
|
1634
646
|
|
|
1635
|
-
## 5.0.0-canary.14
|
|
1636
|
-
|
|
1637
|
-
## 5.0.0-canary.9
|
|
1638
|
-
|
|
1639
|
-
### Major Changes
|
|
1640
|
-
|
|
1641
|
-
- [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
|
|
1642
|
-
|
|
1643
|
-
## 4.31.0-canary.8
|
|
1644
|
-
|
|
1645
|
-
## 4.31.0-canary.7
|
|
1646
|
-
|
|
1647
|
-
### Patch Changes
|
|
1648
|
-
|
|
1649
|
-
- [`d1c2f9901`](https://github.com/graphcommerce-org/graphcommerce/commit/d1c2f9901dbe76d4ca23c48614b05990aeb59161) - useTheme() was imported from the wrong file ([@paales](https://github.com/paales))
|
|
1650
|
-
|
|
1651
|
-
## 4.31.0-canary.6
|
|
1652
|
-
|
|
1653
|
-
### Patch Changes
|
|
1654
|
-
|
|
1655
|
-
- [`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))
|
|
1656
|
-
|
|
1657
|
-
- [`0623f8ce7`](https://github.com/graphcommerce-org/graphcommerce/commit/0623f8ce738ace69aa44e55cf6a6ddb33cf0617a) - When clicking on a navigationlink it would animate on mobile ([@paales](https://github.com/paales))
|
|
1658
|
-
|
|
1659
|
-
## 4.31.0-canary.5
|
|
1660
|
-
|
|
1661
|
-
## 4.31.0-canary.4
|
|
1662
|
-
|
|
1663
|
-
### Minor Changes
|
|
1664
|
-
|
|
1665
|
-
- [#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))
|
|
1666
|
-
|
|
1667
|
-
## 4.31.0-canary.3
|
|
1668
|
-
|
|
1669
|
-
### Patch Changes
|
|
1670
|
-
|
|
1671
|
-
- [#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))
|
|
1672
|
-
|
|
1673
|
-
## 4.31.0-canary.2
|
|
1674
|
-
|
|
1675
|
-
## 4.31.0-canary.1
|
|
1676
|
-
|
|
1677
|
-
### Patch Changes
|
|
1678
|
-
|
|
1679
|
-
- [#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))
|
|
1680
|
-
|
|
1681
|
-
## 4.31.0-canary.0
|
|
1682
|
-
|
|
1683
|
-
## 4.30.2
|
|
1684
|
-
|
|
1685
|
-
## 4.30.1
|
|
1686
|
-
|
|
1687
647
|
## 4.30.0
|
|
1688
648
|
|
|
1689
649
|
### Patch Changes
|
|
1690
650
|
|
|
1691
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
|
|
1692
652
|
|
|
1693
|
-
## 4.30.0-canary.1
|
|
1694
|
-
|
|
1695
|
-
### Patch Changes
|
|
1696
|
-
|
|
1697
|
-
- [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
1698
|
-
|
|
1699
|
-
## 4.30.0-canary.0
|
|
1700
|
-
|
|
1701
653
|
## 4.29.3
|
|
1702
654
|
|
|
1703
655
|
### Patch Changes
|
|
@@ -2160,7 +1112,7 @@
|
|
|
2160
1112
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
2161
1113
|
|
|
2162
1114
|
```tsx
|
|
2163
|
-
import {
|
|
1115
|
+
import { t, Trans } from '@lingui/macro'
|
|
2164
1116
|
|
|
2165
1117
|
function MyComponent() {
|
|
2166
1118
|
const foo = 'bar'
|
|
@@ -2175,8 +1127,8 @@
|
|
|
2175
1127
|
Needs to be replaced with:
|
|
2176
1128
|
|
|
2177
1129
|
```tsx
|
|
2178
|
-
import { Trans } from '@lingui/react'
|
|
2179
1130
|
import { i18n } from '@lingui/core'
|
|
1131
|
+
import { Trans } from '@lingui/react'
|
|
2180
1132
|
|
|
2181
1133
|
function MyComponent() {
|
|
2182
1134
|
const foo = 'bar'
|
|
@@ -3556,8 +2508,6 @@ All notable changes to this project will be documented in this file. See [Conven
|
|
|
3556
2508
|
|
|
3557
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)
|
|
3558
2510
|
|
|
3559
|
-
## [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)
|
|
3560
|
-
|
|
3561
2511
|
### Bug Fixes
|
|
3562
2512
|
|
|
3563
2513
|
- do not use ToggleButtonGroup, only use the ToggleButton ([5172f70](https://github.com/ho-nl/m2-pwa/commit/5172f709ee26122b0a8700afb4325f23cb9ba9b9))
|