@graphcommerce/next-ui 3.25.2 → 4.0.1
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/AnimatedRow/index.tsx +6 -3
- package/ApolloError/ApolloErrorAlert.tsx +20 -21
- package/ApolloError/ApolloErrorFullPage.tsx +3 -4
- package/ApolloError/ApolloErrorSnackbar.tsx +3 -3
- package/Blog/BlogAuthor/index.tsx +42 -48
- package/Blog/BlogContent/index.tsx +6 -23
- package/Blog/BlogHeader/index.tsx +26 -23
- package/Blog/BlogList/index.tsx +7 -25
- package/Blog/BlogListItem/index.tsx +63 -52
- package/Blog/BlogTags/BlogTag.tsx +27 -0
- package/Blog/BlogTags/index.tsx +7 -32
- package/Blog/BlogTitle/index.tsx +7 -21
- package/Button/Button.tsx +5 -0
- package/Button/LinkOrButton.tsx +80 -0
- package/Button/index.tsx +2 -177
- package/CHANGELOG.md +507 -642
- package/ChipMenu/index.tsx +71 -77
- package/ContainerWithHeader/index.tsx +33 -30
- package/FlagAvatar/index.tsx +2 -12
- package/Footer/Footer.tsx +105 -88
- package/Footer/index.ts +0 -1
- package/Form/Form.tsx +35 -0
- package/Form/FormActions.tsx +9 -14
- package/Form/FormDivider.tsx +8 -13
- package/Form/FormHeader.tsx +5 -26
- package/Form/FormRow.tsx +8 -13
- package/Form/InputCheckmark.tsx +9 -22
- package/FramerScroller/SidebarGallery.tsx +340 -0
- package/FramerScroller/SidebarSlider.tsx +107 -0
- package/FramerScroller/index.ts +2 -0
- package/FullPageMessage/index.tsx +52 -48
- package/Highlight/index.tsx +1 -1
- package/IconHeader/index.tsx +63 -58
- package/JsonLd/index.tsx +3 -2
- package/Layout/components/LayoutHeader.tsx +75 -82
- package/Layout/components/LayoutHeaderBack.tsx +21 -12
- package/Layout/components/LayoutHeaderClose.tsx +9 -22
- package/Layout/components/LayoutHeaderContent.tsx +190 -154
- package/Layout/components/LayoutHeadertypes.ts +1 -1
- package/Layout/components/LayoutTitle.tsx +60 -55
- package/LayoutDefault/components/LayoutDefault.tsx +96 -85
- package/LayoutOverlay/components/LayoutOverlay.tsx +2 -8
- package/LayoutOverlay/components/LayoutOverlayBase.tsx +233 -239
- package/LayoutOverlay/test/LayoutOverlayDemo.tsx +1 -1
- package/LayoutParts/DesktopHeaderBadge.tsx +28 -0
- package/LayoutParts/DesktopNavActions.tsx +15 -0
- package/LayoutParts/DesktopNavBar.tsx +113 -0
- package/LayoutParts/DesktopNavBarItem.tsx +44 -0
- package/{AppShell → LayoutParts}/GlobalHead.tsx +1 -2
- package/LayoutParts/Logo.tsx +77 -0
- package/LayoutParts/MenuFab.tsx +131 -0
- package/LayoutParts/MenuFabItem.tsx +25 -0
- package/LayoutParts/MenuFabSecondaryItem.tsx +37 -0
- package/{AppShell/PlaceholderFab/index.tsx → LayoutParts/PlaceholderFab.tsx} +1 -1
- package/LayoutParts/StickyBelowHeader.tsx +25 -0
- package/LayoutParts/index.ts +12 -0
- package/{AppShell → LayoutParts}/useFabAnimation.ts +0 -0
- package/Page/CssAndFramerMotionProvider.tsx +21 -0
- package/Page/index.ts +2 -0
- package/Page/types.ts +2 -8
- package/PageLoadIndicator/index.tsx +25 -30
- package/PageMeta/index.tsx +1 -1
- package/Pagination/index.tsx +37 -54
- package/RenderType/index.tsx +1 -1
- package/Row/ButtonLinkList/ButtonLinkList.tsx +35 -37
- package/Row/ButtonLinkList/ButtonLinkListItem.tsx +16 -33
- package/Row/ColumnOne/index.tsx +5 -10
- package/Row/ColumnOneBoxed/index.tsx +18 -19
- package/Row/ColumnOneCentered/index.tsx +3 -4
- package/Row/ColumnThree/index.tsx +62 -57
- package/Row/ColumnTwo/index.tsx +37 -35
- package/Row/ColumnTwoSpread/index.tsx +28 -37
- package/Row/ColumnTwoWithTop/index.tsx +37 -43
- package/Row/ContentLinks/index.tsx +24 -25
- package/Row/HeroBanner/index.tsx +98 -82
- package/Row/IconBlocks/IconBlock/index.tsx +45 -37
- package/Row/IconBlocks/index.tsx +29 -44
- package/Row/ImageText/index.tsx +71 -67
- package/Row/ImageTextBoxed/index.tsx +66 -65
- package/Row/ParagraphWithSidebarSlide/index.tsx +80 -76
- package/Row/Quote/index.tsx +3 -3
- package/Row/SpecialBanner/index.tsx +97 -97
- package/Row/index.tsx +4 -9
- package/SectionContainer/index.tsx +32 -31
- package/SectionHeader/index.tsx +41 -43
- package/Separator/index.tsx +19 -18
- package/Snackbar/MessageSnackbar.tsx +1 -2
- package/Snackbar/MessageSnackbarImpl.tsx +68 -115
- package/StarRatingField/index.tsx +24 -25
- package/Stepper/Stepper.tsx +34 -32
- package/Styles/EmotionProvider.tsx +14 -0
- package/Styles/breakpointVal.tsx +16 -10
- package/Styles/extendableComponent.ts +70 -0
- package/Styles/index.tsx +9 -2
- package/Styles/withEmotionCache.tsx +36 -0
- package/Styles/withTheme.tsx +15 -24
- package/SvgIcon/SvgIcon.tsx +60 -0
- package/TextInputNumber/index.tsx +49 -50
- package/Theme/MuiButton.ts +128 -0
- package/Theme/MuiSlider.ts +28 -0
- package/Theme/MuiSnackbar.ts +31 -0
- package/Theme/{types.ts → createTheme.ts} +8 -2
- package/Theme/index.ts +4 -0
- package/Theme/themeDefaults.ts +51 -0
- package/TimeAgo/index.tsx +1 -1
- package/ToggleButton/index.tsx +43 -49
- package/ToggleButtonGroup/index.tsx +39 -39
- package/UspList/UspListItem.tsx +56 -46
- package/UspList/index.tsx +29 -26
- package/docs/building-components.mdx +3 -0
- package/docs/components/ComponentBasic.tsx +26 -0
- package/docs/components/ComponentChild.tsx +48 -0
- package/docs/components/ComponentChildVariant.tsx +54 -0
- package/docs/components/ComponentChildVariantExtendable.tsx +62 -0
- package/docs/components/ComponentStylable.tsx +32 -0
- package/docs/pages/building-components.tsx +62 -0
- package/index.ts +27 -81
- package/package.json +27 -27
- package/types.d.ts +1 -1
- package/AppShell/AppShellSticky/index.tsx +0 -38
- package/AppShell/DesktopNavActions.tsx +0 -32
- package/AppShell/DesktopNavBar.tsx +0 -158
- package/AppShell/Logo.tsx +0 -46
- package/AppShell/Menu.tsx +0 -7
- package/AppShell/MenuFab.tsx +0 -162
- package/AppShell/MenuFabSecondaryItem.tsx +0 -32
- package/AppShell/index.ts +0 -15
- package/AspectRatioContainer/index.tsx +0 -27
- package/Footer/SocialIcon.tsx +0 -23
- package/Form/index.tsx +0 -67
- package/FramerScroller/components/SidebarGallery.tsx +0 -317
- package/FramerScroller/components/SidebarSlider.tsx +0 -97
- package/Page/App.tsx +0 -17
- package/Page/Document.tsx +0 -24
- package/StyledBadge/index.tsx +0 -20
- package/Styles/classesPicker.ts +0 -41
- package/SvgImage/SvgImageSimple.tsx +0 -100
- package/SvgImage/index.tsx +0 -74
package/CHANGELOG.md
CHANGED
|
@@ -1,1061 +1,932 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [3.25.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.25.1...@graphcommerce/next-ui@3.25.2) (2022-02-09)
|
|
3
|
+
## 4.0.1
|
|
7
4
|
|
|
5
|
+
### Patch Changes
|
|
8
6
|
|
|
9
|
-
|
|
7
|
+
- [`0cbaa878b`](https://github.com/ho-nl/m2-pwa/commit/0cbaa878b8a844d5abbeb1797b625a33130e6514)
|
|
8
|
+
Thanks [@paales](https://github.com/paales)! - Added homepage and repository package.json files,
|
|
9
|
+
so that the packages link to back to the website and repository
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
[[`0cbaa878b`](https://github.com/ho-nl/m2-pwa/commit/0cbaa878b8a844d5abbeb1797b625a33130e6514)]:
|
|
12
|
+
- @graphcommerce/framer-next-pages@3.0.1
|
|
13
|
+
- @graphcommerce/framer-scroller@2.0.1
|
|
14
|
+
- @graphcommerce/framer-utils@3.0.1
|
|
15
|
+
- @graphcommerce/graphql@3.0.1
|
|
16
|
+
- @graphcommerce/image@3.0.1
|
|
10
17
|
|
|
11
|
-
|
|
18
|
+
## 4.0.0
|
|
12
19
|
|
|
20
|
+
### Major Changes
|
|
13
21
|
|
|
22
|
+
- [#1258](https://github.com/ho-nl/m2-pwa/pull/1258)
|
|
23
|
+
[`ad36382a4`](https://github.com/ho-nl/m2-pwa/commit/ad36382a4d55d83d9e47b7eb6a02671a2a631a05)
|
|
24
|
+
Thanks [@paales](https://github.com/paales)! - Upgraded to Material UI 5
|
|
14
25
|
|
|
26
|
+
### Patch Changes
|
|
15
27
|
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
[[`ad36382a4`](https://github.com/ho-nl/m2-pwa/commit/ad36382a4d55d83d9e47b7eb6a02671a2a631a05)]:
|
|
30
|
+
- @graphcommerce/framer-next-pages@3.0.0
|
|
31
|
+
- @graphcommerce/framer-scroller@2.0.0
|
|
32
|
+
- @graphcommerce/framer-utils@3.0.0
|
|
33
|
+
- @graphcommerce/graphql@3.0.0
|
|
34
|
+
- @graphcommerce/image@3.0.0
|
|
16
35
|
|
|
17
|
-
|
|
36
|
+
All notable changes to this project will be documented in this file. See
|
|
37
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
38
|
|
|
39
|
+
## [3.25.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.25.2...@graphcommerce/next-ui@3.25.3) (2022-02-11)
|
|
19
40
|
|
|
20
41
|
### Bug Fixes
|
|
21
42
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
43
|
+
- Removal of default style where H2 and H3 get converted to H4, style wise.
|
|
44
|
+
([68772ec](https://github.com/ho-nl/m2-pwa/commit/68772eccbb3d8c1f1ecd59cf0e47f3435a9f1d55))
|
|
26
45
|
|
|
46
|
+
## [3.25.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.25.1...@graphcommerce/next-ui@3.25.2) (2022-02-09)
|
|
27
47
|
|
|
28
|
-
|
|
48
|
+
### Bug Fixes
|
|
29
49
|
|
|
50
|
+
- change breakpoints down in footer component
|
|
51
|
+
([9ec181c](https://github.com/ho-nl/m2-pwa/commit/9ec181cc44f6b73450645b3b8a3ab57fd1a68d2e))
|
|
30
52
|
|
|
31
|
-
|
|
53
|
+
## [3.25.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.25.0...@graphcommerce/next-ui@3.25.1) (2022-02-01)
|
|
32
54
|
|
|
33
|
-
|
|
34
|
-
* remove fixed fap and position cart with parent sticky ([bfd8adf](https://github.com/ho-nl/m2-pwa/commit/bfd8adf1372f77e6b27f6e0482ec03762d9148e4))
|
|
55
|
+
### Bug Fixes
|
|
35
56
|
|
|
57
|
+
- make DesktopNavActions stylable
|
|
58
|
+
([db31369](https://github.com/ho-nl/m2-pwa/commit/db3136931d2ace1bfb6e7fecad0e01758aa2b397))
|
|
36
59
|
|
|
60
|
+
# [3.25.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.24.3...@graphcommerce/next-ui@3.25.0) (2022-01-25)
|
|
37
61
|
|
|
62
|
+
### Features
|
|
38
63
|
|
|
64
|
+
- add beforeHeader prop
|
|
65
|
+
([00501ef](https://github.com/ho-nl/m2-pwa/commit/00501efab97fae2469f783751702db95e4e2c93e))
|
|
66
|
+
- remove fixed fap and position cart with parent sticky
|
|
67
|
+
([bfd8adf](https://github.com/ho-nl/m2-pwa/commit/bfd8adf1372f77e6b27f6e0482ec03762d9148e4))
|
|
39
68
|
|
|
40
69
|
## [3.24.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.24.2...@graphcommerce/next-ui@3.24.3) (2022-01-21)
|
|
41
70
|
|
|
42
|
-
|
|
43
71
|
### Bug Fixes
|
|
44
72
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
73
|
+
- prevent layout from breaking when url has params
|
|
74
|
+
([9197bf7](https://github.com/ho-nl/m2-pwa/commit/9197bf72c5c3e422d70741cadbc40b19a1ae4936))
|
|
50
75
|
|
|
51
76
|
## [3.24.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.24.1...@graphcommerce/next-ui@3.24.2) (2022-01-21)
|
|
52
77
|
|
|
53
|
-
|
|
54
78
|
### Bug Fixes
|
|
55
79
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
80
|
+
- favicon.svg path
|
|
81
|
+
([fefe20b](https://github.com/ho-nl/m2-pwa/commit/fefe20bd1d8392b9d39632c6335395dd4931af2f))
|
|
61
82
|
|
|
62
83
|
## [3.24.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.24.0...@graphcommerce/next-ui@3.24.1) (2022-01-18)
|
|
63
84
|
|
|
64
|
-
|
|
65
85
|
### Bug Fixes
|
|
66
86
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
87
|
+
- favicon and manifest
|
|
88
|
+
([304d6dd](https://github.com/ho-nl/m2-pwa/commit/304d6dd7769d349b02b06dfdfdc3f9d22a4af081))
|
|
72
89
|
|
|
73
90
|
# [3.24.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.23.1...@graphcommerce/next-ui@3.24.0) (2022-01-17)
|
|
74
91
|
|
|
75
|
-
|
|
76
92
|
### Features
|
|
77
93
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
94
|
+
- manifest and favicon
|
|
95
|
+
([a82202c](https://github.com/ho-nl/m2-pwa/commit/a82202c0e572f005cbcfca815936af9356eb2767))
|
|
83
96
|
|
|
84
97
|
## [3.23.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.23.0...@graphcommerce/next-ui@3.23.1) (2022-01-04)
|
|
85
98
|
|
|
86
|
-
|
|
87
99
|
### Bug Fixes
|
|
88
100
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
101
|
+
- close button on mobile
|
|
102
|
+
([a0c6c07](https://github.com/ho-nl/m2-pwa/commit/a0c6c075a1ee2541c864a561cd5318ed5fb5760c))
|
|
94
103
|
|
|
95
104
|
# [3.23.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.22.2...@graphcommerce/next-ui@3.23.0) (2022-01-04)
|
|
96
105
|
|
|
97
|
-
|
|
98
106
|
### Bug Fixes
|
|
99
107
|
|
|
100
|
-
|
|
101
|
-
|
|
108
|
+
- backbutton wasn't translated
|
|
109
|
+
([5f841c0](https://github.com/ho-nl/m2-pwa/commit/5f841c052b454c0d565a68829f78492c5a3b6dab))
|
|
102
110
|
|
|
103
111
|
### Features
|
|
104
112
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
113
|
+
- introduced a withTheme hoc to allow theming per route
|
|
114
|
+
([55e3fc1](https://github.com/ho-nl/m2-pwa/commit/55e3fc178b385d0ccdc19a5c09a7887be5db14dc))
|
|
110
115
|
|
|
111
116
|
## [3.22.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.22.1...@graphcommerce/next-ui@3.22.2) (2022-01-04)
|
|
112
117
|
|
|
113
|
-
|
|
114
118
|
### Bug Fixes
|
|
115
119
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
120
|
+
- broder radius of drawer was too small on desktop
|
|
121
|
+
([f8b3962](https://github.com/ho-nl/m2-pwa/commit/f8b3962825972e6bc232387e0a2e801289fcc492))
|
|
122
|
+
- close button of bottom sheet spacing
|
|
123
|
+
([be33c20](https://github.com/ho-nl/m2-pwa/commit/be33c20fc8f41ad85d90bff15842738bc370b81e))
|
|
124
|
+
- regression where primary action wasn't visible
|
|
125
|
+
([66f8ed2](https://github.com/ho-nl/m2-pwa/commit/66f8ed20ea0728881be81994d49bd6c399f2e914))
|
|
123
126
|
|
|
124
127
|
## [3.22.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.22.0...@graphcommerce/next-ui@3.22.1) (2022-01-04)
|
|
125
128
|
|
|
126
|
-
|
|
127
129
|
### Bug Fixes
|
|
128
130
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
131
|
+
- overlay would have a height instead of minHeight
|
|
132
|
+
([07dba4b](https://github.com/ho-nl/m2-pwa/commit/07dba4b875a37beac2ab6a8afe50e6b7a7ba1bf9))
|
|
134
133
|
|
|
135
134
|
# [3.22.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.15...@graphcommerce/next-ui@3.22.0) (2022-01-03)
|
|
136
135
|
|
|
137
|
-
|
|
138
136
|
### Bug Fixes
|
|
139
137
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
138
|
+
- backbutton had wrong label
|
|
139
|
+
([c6d0b27](https://github.com/ho-nl/m2-pwa/commit/c6d0b2738e5de734af40bc632177dcc867e8e556))
|
|
140
|
+
- make sure we're able to close the overlay
|
|
141
|
+
([8d19fde](https://github.com/ho-nl/m2-pwa/commit/8d19fde07d51493acfdfaa97a19f61246d04d42a))
|
|
143
142
|
|
|
144
143
|
### Features
|
|
145
144
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
145
|
+
- add support for minimal overlay size
|
|
146
|
+
([96e508a](https://github.com/ho-nl/m2-pwa/commit/96e508a94e23fe5b3ec523cddeb19b7b70f50034))
|
|
147
|
+
- added support for more positioning options for the overlay
|
|
148
|
+
([79eae9e](https://github.com/ho-nl/m2-pwa/commit/79eae9eb39513f5611103c4c745c3db99b11f15a))
|
|
149
|
+
- **framer-next-pages:** reduce rerenders when navigating to a new page
|
|
150
|
+
([5cf3301](https://github.com/ho-nl/m2-pwa/commit/5cf330130bb3527057da015e3c4a6fa295d7262e))
|
|
153
151
|
|
|
154
152
|
## [3.21.15](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.14...@graphcommerce/next-ui@3.21.15) (2021-12-24)
|
|
155
153
|
|
|
156
|
-
|
|
157
154
|
### Bug Fixes
|
|
158
155
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
156
|
+
- make sure the filters are aligned properly on mobile
|
|
157
|
+
([4bfe978](https://github.com/ho-nl/m2-pwa/commit/4bfe978f095c1b9867608c138eccf3227b18d4e9))
|
|
164
158
|
|
|
165
159
|
## [3.21.13](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.12...@graphcommerce/next-ui@3.21.13) (2021-12-23)
|
|
166
160
|
|
|
167
|
-
|
|
168
161
|
### Bug Fixes
|
|
169
162
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
163
|
+
- **framer-next-pages:** make sure we dont have a double scroll while a bottomsheet is opened
|
|
164
|
+
([2887aba](https://github.com/ho-nl/m2-pwa/commit/2887abae0c0c553bdc6343fd2f431e4daeabefb5))
|
|
175
165
|
|
|
176
166
|
## [3.21.11](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.10...@graphcommerce/next-ui@3.21.11) (2021-12-22)
|
|
177
167
|
|
|
178
|
-
|
|
179
168
|
### Bug Fixes
|
|
180
169
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
170
|
+
- cart fab wouldnt properly switch to darkmode
|
|
171
|
+
([2f4fe1e](https://github.com/ho-nl/m2-pwa/commit/2f4fe1ed28ab3b63440f40d1455f06bc02e44ce7))
|
|
186
172
|
|
|
187
173
|
## [3.21.10](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.9...@graphcommerce/next-ui@3.21.10) (2021-12-22)
|
|
188
174
|
|
|
189
|
-
|
|
190
175
|
### Bug Fixes
|
|
191
176
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
177
|
+
- **framer-scroller:** gallery didn't align images in the center
|
|
178
|
+
([0cf6066](https://github.com/ho-nl/m2-pwa/commit/0cf60669b2547d2c421eb07c1ba23d7718df74aa))
|
|
179
|
+
- safari hero banner didn't animate border radius
|
|
180
|
+
([7301bec](https://github.com/ho-nl/m2-pwa/commit/7301becf33a60f977546be1bcabc68e018f6c5cd))
|
|
198
181
|
|
|
199
182
|
## [3.21.9](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.8...@graphcommerce/next-ui@3.21.9) (2021-12-21)
|
|
200
183
|
|
|
201
|
-
|
|
202
184
|
### Bug Fixes
|
|
203
185
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
186
|
+
- layout overlay sometimes have a horizontal scrollbar
|
|
187
|
+
([a1cfe72](https://github.com/ho-nl/m2-pwa/commit/a1cfe72d207dcdf07948080b605b64e7f73939bf))
|
|
188
|
+
- make sure the bottomsheet has enough space on android
|
|
189
|
+
([02d3e63](https://github.com/ho-nl/m2-pwa/commit/02d3e639388446423149461ae52d0ed12a962f5e))
|
|
210
190
|
|
|
211
191
|
## [3.21.8](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.7...@graphcommerce/next-ui@3.21.8) (2021-12-21)
|
|
212
192
|
|
|
213
|
-
|
|
214
193
|
### Bug Fixes
|
|
215
194
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
195
|
+
- logo invert darkmode and consistent logo spacing
|
|
196
|
+
([2a80603](https://github.com/ho-nl/m2-pwa/commit/2a80603fd3255544f78d9da28aad17fb3fca0c9c))
|
|
197
|
+
- menuFab, cartFab shadows, darkTheme color and opacity bug
|
|
198
|
+
([6c7afa7](https://github.com/ho-nl/m2-pwa/commit/6c7afa7d3b584b455476aa26d95041c4cf6c1d0c))
|
|
222
199
|
|
|
223
200
|
## [3.21.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.4...@graphcommerce/next-ui@3.21.5) (2021-12-20)
|
|
224
201
|
|
|
225
|
-
|
|
226
202
|
### Bug Fixes
|
|
227
203
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
204
|
+
- animations would run on background page, make sure animations are not running when page is not
|
|
205
|
+
active
|
|
206
|
+
([2fcf4b8](https://github.com/ho-nl/m2-pwa/commit/2fcf4b8a853108147477e3a67c7ea202abb2842f))
|
|
233
207
|
|
|
234
208
|
## [3.21.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.3...@graphcommerce/next-ui@3.21.4) (2021-12-20)
|
|
235
209
|
|
|
236
|
-
|
|
237
210
|
### Bug Fixes
|
|
238
211
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
212
|
+
- **framer-scroller:** remove jank from scroller when opening
|
|
213
|
+
([c618bf2](https://github.com/ho-nl/m2-pwa/commit/c618bf290bd580fe5eb45663c44843dd751e00ed))
|
|
244
214
|
|
|
245
215
|
## [3.21.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.21.0...@graphcommerce/next-ui@3.21.1) (2021-12-17)
|
|
246
216
|
|
|
247
|
-
|
|
248
217
|
### Bug Fixes
|
|
249
218
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
219
|
+
- darkMode fixes
|
|
220
|
+
([7d33d45](https://github.com/ho-nl/m2-pwa/commit/7d33d452ec801632565839b2fdfef0bc4959c14a))
|
|
255
221
|
|
|
256
222
|
# [3.21.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.9...@graphcommerce/next-ui@3.21.0) (2021-12-17)
|
|
257
223
|
|
|
258
|
-
|
|
259
224
|
### Bug Fixes
|
|
260
225
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
226
|
+
- Form contained should be less spacious
|
|
227
|
+
([7d9557e](https://github.com/ho-nl/m2-pwa/commit/7d9557e9a75622a3dc40a3c7aab86da152d2e399))
|
|
228
|
+
- make sure the snackbar message is formatted correctly
|
|
229
|
+
([b9e1e26](https://github.com/ho-nl/m2-pwa/commit/b9e1e2623ec2aff6b623603aa38fe8d71ff59e1c))
|
|
264
230
|
|
|
265
231
|
### Features
|
|
266
232
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
233
|
+
- added ApolloErrorSnackbar
|
|
234
|
+
([96bc92e](https://github.com/ho-nl/m2-pwa/commit/96bc92e24bac735b28f5f32e1154f715ddf8cd6c))
|
|
272
235
|
|
|
273
236
|
## [3.20.9](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.8...@graphcommerce/next-ui@3.20.9) (2021-12-16)
|
|
274
237
|
|
|
275
|
-
|
|
276
238
|
### Bug Fixes
|
|
277
239
|
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
240
|
+
- simplify ButtonLinkList and made more flexible
|
|
241
|
+
([e01cc82](https://github.com/ho-nl/m2-pwa/commit/e01cc825b87abf81d1cb8f9dc976f674b9e8e6d3))
|
|
283
242
|
|
|
284
243
|
## [3.20.8](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.7...@graphcommerce/next-ui@3.20.8) (2021-12-15)
|
|
285
244
|
|
|
286
|
-
|
|
287
245
|
### Bug Fixes
|
|
288
246
|
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
247
|
+
- could not scroll to the bottom of a left/right sheet
|
|
248
|
+
([b84c86e](https://github.com/ho-nl/m2-pwa/commit/b84c86efa090657fc4cd480547f576bf6d9e0709))
|
|
249
|
+
- scroller should not snap to off-axis while dragging and direction isn't set to both
|
|
250
|
+
([9118bfc](https://github.com/ho-nl/m2-pwa/commit/9118bfcb1eb9ade5f144167e47e0c26724ce832f))
|
|
295
251
|
|
|
296
252
|
## [3.20.7](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.6...@graphcommerce/next-ui@3.20.7) (2021-12-13)
|
|
297
253
|
|
|
298
|
-
|
|
299
254
|
### Bug Fixes
|
|
300
255
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
256
|
+
- header style color
|
|
257
|
+
([ea373be](https://github.com/ho-nl/m2-pwa/commit/ea373be9dbf609e0a719b000d27ad79d2be45f65))
|
|
258
|
+
- make sure we're allowed to scroll all the way down
|
|
259
|
+
([16ee45d](https://github.com/ho-nl/m2-pwa/commit/16ee45d8bea8072388dc1508e48704be5a84c4ec))
|
|
260
|
+
- overlay didn't handle portals correctly and closed the overlay
|
|
261
|
+
([3cef4e7](https://github.com/ho-nl/m2-pwa/commit/3cef4e73042fd836fc776dad17abcc39d7403eee))
|
|
308
262
|
|
|
309
263
|
## [3.20.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.4...@graphcommerce/next-ui@3.20.5) (2021-12-06)
|
|
310
264
|
|
|
311
|
-
|
|
312
265
|
### Bug Fixes
|
|
313
266
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
267
|
+
- Accessibility, SEO
|
|
268
|
+
([a258837](https://github.com/ho-nl/m2-pwa/commit/a258837476d94d20d33e13a4c4f950fff57f7dca))
|
|
319
269
|
|
|
320
270
|
## [3.20.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.3...@graphcommerce/next-ui@3.20.4) (2021-12-06)
|
|
321
271
|
|
|
322
|
-
|
|
323
272
|
### Bug Fixes
|
|
324
273
|
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
274
|
+
- use Locale to set storeSwitcher icons
|
|
275
|
+
([65ea397](https://github.com/ho-nl/m2-pwa/commit/65ea397ec53aa27f545b43feda8e35227e119ebe))
|
|
330
276
|
|
|
331
277
|
## [3.20.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.1...@graphcommerce/next-ui@3.20.2) (2021-12-03)
|
|
332
278
|
|
|
333
|
-
|
|
334
279
|
### Bug Fixes
|
|
335
280
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
281
|
+
- aria-labels missing
|
|
282
|
+
([16570d1](https://github.com/ho-nl/m2-pwa/commit/16570d11efcb264eba6c620c5508c9616c2d0a2a))
|
|
283
|
+
- make sure the overlay can be clicked away
|
|
284
|
+
([5b43e2f](https://github.com/ho-nl/m2-pwa/commit/5b43e2f0568c2587be63b74271409123fc0a44e2))
|
|
342
285
|
|
|
343
286
|
## [3.20.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.0...@graphcommerce/next-ui@3.20.1) (2021-12-03)
|
|
344
287
|
|
|
345
|
-
|
|
346
288
|
### Bug Fixes
|
|
347
289
|
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
290
|
+
- overlay didn't initialize
|
|
291
|
+
([f3b4ad9](https://github.com/ho-nl/m2-pwa/commit/f3b4ad9d96656b965865008f315ffcbdd24842de))
|
|
292
|
+
- search page
|
|
293
|
+
([85cf721](https://github.com/ho-nl/m2-pwa/commit/85cf72130bce4c3d2c392a3745adf05bca8618b1))
|
|
294
|
+
- sidebar gallery hideScrollbar
|
|
295
|
+
([da68544](https://github.com/ho-nl/m2-pwa/commit/da68544c7d99b23db8cb0b96c8ae96ede32abc62))
|
|
296
|
+
- use standard shadows in overlay
|
|
297
|
+
([5383aa2](https://github.com/ho-nl/m2-pwa/commit/5383aa2ae69363ebcff1ebec7c120137a83653d0))
|
|
356
298
|
|
|
357
299
|
# [3.20.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.19.1...@graphcommerce/next-ui@3.20.0) (2021-12-03)
|
|
358
300
|
|
|
359
|
-
|
|
360
301
|
### Bug Fixes
|
|
361
302
|
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
303
|
+
- classesPicker would sometimes return 'undefined' as a class
|
|
304
|
+
([baa51f1](https://github.com/ho-nl/m2-pwa/commit/baa51f1ac6d47460bfc713bd2c10ae14f1f6ecbf))
|
|
305
|
+
- close button should always be present
|
|
306
|
+
([32d4173](https://github.com/ho-nl/m2-pwa/commit/32d4173e44c6e77815cf483590c1f703d48a386b))
|
|
307
|
+
- horizontal scroll on page
|
|
308
|
+
([d025a16](https://github.com/ho-nl/m2-pwa/commit/d025a16a02b43756fc58b0b764faa404eb06da6c))
|
|
309
|
+
- make sure elements that use scroll positioning are using the right hook
|
|
310
|
+
([80ee33f](https://github.com/ho-nl/m2-pwa/commit/80ee33f68ecc223147d63fc37e5b9ba94df4564e))
|
|
311
|
+
- make sure galleries are scrollable properly
|
|
312
|
+
([8653316](https://github.com/ho-nl/m2-pwa/commit/86533167891f0ae197fdf096b84fdda8e89a0f6e))
|
|
313
|
+
- make sure it doesn't error when trying to override root
|
|
314
|
+
([99a69a3](https://github.com/ho-nl/m2-pwa/commit/99a69a36579b4c934f3b1be187130983bdf133bf))
|
|
315
|
+
- make sure that pill link buttons get the right background color etc.
|
|
316
|
+
([c142b31](https://github.com/ho-nl/m2-pwa/commit/c142b31552417d2296341785994e2f7b35462793))
|
|
317
|
+
- make sure the overlay becomes visible, even if the overlay is scrolled
|
|
318
|
+
([1738c98](https://github.com/ho-nl/m2-pwa/commit/1738c982ea84ec2b93daa824c4b8c86ab2a3f5ed))
|
|
319
|
+
- make the headerHeight properly configurable
|
|
320
|
+
([c39c942](https://github.com/ho-nl/m2-pwa/commit/c39c942a62a9bb9687ea553be28e37fb49a6b065))
|
|
321
|
+
- minHeight of page on iOS is sometimes less high than expected
|
|
322
|
+
([8a0bc23](https://github.com/ho-nl/m2-pwa/commit/8a0bc234d153d974ac415369483ddabfb5e7fb0c))
|
|
323
|
+
- missing CssBaseline
|
|
324
|
+
([d2a7126](https://github.com/ho-nl/m2-pwa/commit/d2a7126295b99b0446dc31b0cf7c60671a18f976))
|
|
325
|
+
- only apply page meta when the current page is active
|
|
326
|
+
([f099a51](https://github.com/ho-nl/m2-pwa/commit/f099a519d169dcc9e2653db8353ce93d7b0a138e))
|
|
327
|
+
- spacing of LayoutTItle
|
|
328
|
+
([7afcd31](https://github.com/ho-nl/m2-pwa/commit/7afcd3163d16e902cf2ff7917f56ee6a8798f55b))
|
|
376
329
|
|
|
377
330
|
### Features
|
|
378
331
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
332
|
+
- **framer-scroller-sheet:** created package replacing the framer-sheet package
|
|
333
|
+
([f9f2e91](https://github.com/ho-nl/m2-pwa/commit/f9f2e9101191f5cb5c4514ceb9534ddeb2476763))
|
|
334
|
+
- **framer-scroller:** split the grid functionality from the scroller
|
|
335
|
+
([81307ea](https://github.com/ho-nl/m2-pwa/commit/81307ea2652bf31a1f94e8db72af4ee161bdca2e))
|
|
336
|
+
- refactor page shell
|
|
337
|
+
([594bdb3](https://github.com/ho-nl/m2-pwa/commit/594bdb32927b797208b2a295bc0db9f9ceb94676))
|
|
386
338
|
|
|
387
339
|
# [3.19.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.18.2...@graphcommerce/next-ui@3.19.0) (2021-12-01)
|
|
388
340
|
|
|
389
|
-
|
|
390
341
|
### Bug Fixes
|
|
391
342
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
343
|
+
- borderRadius
|
|
344
|
+
([0999901](https://github.com/ho-nl/m2-pwa/commit/0999901f6a3265f40fef18e72702d80158d8c4a9))
|
|
345
|
+
- borderRadius
|
|
346
|
+
([b9cffcc](https://github.com/ho-nl/m2-pwa/commit/b9cffccf444cb2ff8d6257ef3a64c0ea18e30477))
|
|
347
|
+
- borderRadius toggleButton
|
|
348
|
+
([4a97800](https://github.com/ho-nl/m2-pwa/commit/4a97800150bbfe03692a66d7fbde5705a32b9cd7))
|
|
349
|
+
- build ([ba97378](https://github.com/ho-nl/m2-pwa/commit/ba97378d40d70b3f47c4c252600c669a53568c27))
|
|
350
|
+
- build ([b6cb704](https://github.com/ho-nl/m2-pwa/commit/b6cb7048c1208648687621000ab0d6789032d480))
|
|
351
|
+
- finetune svg stroke width
|
|
352
|
+
([d788d72](https://github.com/ho-nl/m2-pwa/commit/d788d72c88d5b924a14e9fdde1a52f62be7c274c))
|
|
353
|
+
- flicker on menu icon
|
|
354
|
+
([04d9633](https://github.com/ho-nl/m2-pwa/commit/04d96331cfdd4678a56a4eb9170141800c03a6a1))
|
|
355
|
+
- hero text spacing
|
|
356
|
+
([79dd6aa](https://github.com/ho-nl/m2-pwa/commit/79dd6aa2fe576104ebbbdd092f6b415d319dec48))
|
|
357
|
+
- icon OrderBefore
|
|
358
|
+
([25a2390](https://github.com/ho-nl/m2-pwa/commit/25a2390321c7047c5191a15a9352020b8161ff7a))
|
|
359
|
+
- icons ([c561e20](https://github.com/ho-nl/m2-pwa/commit/c561e20a247fef5ea33ac10dbecf55d1e5500dec))
|
|
360
|
+
- prevent scaling of video on mobile
|
|
361
|
+
([168b5b9](https://github.com/ho-nl/m2-pwa/commit/168b5b9451dbe373703ebc76c44516d1c0eb316f))
|
|
362
|
+
- Tap targets are not sized appropriately
|
|
363
|
+
([b3b3339](https://github.com/ho-nl/m2-pwa/commit/b3b33398c26cfe775f2e9fc4dacd8eaad2e02725))
|
|
405
364
|
|
|
406
365
|
### Features
|
|
407
366
|
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
367
|
+
- borderRadius based on theme.shape.borderRadius
|
|
368
|
+
([7c34937](https://github.com/ho-nl/m2-pwa/commit/7c349376cd41a131c628324c299106fdb7e60484))
|
|
369
|
+
- breakpointVal
|
|
370
|
+
([0294503](https://github.com/ho-nl/m2-pwa/commit/029450343051cf6995babad9f9b42c7e6ad1094e))
|
|
371
|
+
- closeable menu
|
|
372
|
+
([5f94bb5](https://github.com/ho-nl/m2-pwa/commit/5f94bb5644ce1058ec705a8acced71ba2ba95e04))
|
|
373
|
+
- icon for 404
|
|
374
|
+
([ff32915](https://github.com/ho-nl/m2-pwa/commit/ff3291578719cb7105d1045d68a78952b27da7fe))
|
|
375
|
+
- introduce borderRadius
|
|
376
|
+
([183afbc](https://github.com/ho-nl/m2-pwa/commit/183afbc8ee269f6694c372b06afdf41302f86c09))
|
|
377
|
+
- responsiveTyp
|
|
378
|
+
([6108b61](https://github.com/ho-nl/m2-pwa/commit/6108b6148e76ddbbe2db1614f10aaf88423db5ca))
|
|
418
379
|
|
|
419
380
|
## [3.18.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.18.1...@graphcommerce/next-ui@3.18.2) (2021-11-27)
|
|
420
381
|
|
|
421
|
-
|
|
422
382
|
### Bug Fixes
|
|
423
383
|
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
384
|
+
- shadow snackbar with elevation
|
|
385
|
+
([8d7d011](https://github.com/ho-nl/m2-pwa/commit/8d7d0119357325f5c838def4ae8dc4ae19a43a6f))
|
|
429
386
|
|
|
430
387
|
## [3.18.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.18.0...@graphcommerce/next-ui@3.18.1) (2021-11-22)
|
|
431
388
|
|
|
432
|
-
|
|
433
389
|
### Bug Fixes
|
|
434
390
|
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
391
|
+
- green app shell header
|
|
392
|
+
([a0774e6](https://github.com/ho-nl/m2-pwa/commit/a0774e6da078ea1e96d7d93bccafae5b55a69792))
|
|
440
393
|
|
|
441
394
|
# [3.18.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.17.1...@graphcommerce/next-ui@3.18.0) (2021-11-22)
|
|
442
395
|
|
|
443
|
-
|
|
444
396
|
### Bug Fixes
|
|
445
397
|
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
398
|
+
- remove styles
|
|
399
|
+
([335c8cb](https://github.com/ho-nl/m2-pwa/commit/335c8cb663bdd4c1670cdb3ea88c8a9a42bcf745))
|
|
400
|
+
- revert to SvgImageSimple
|
|
401
|
+
([b247c6b](https://github.com/ho-nl/m2-pwa/commit/b247c6b96979bc313e597a8ffe1275b73f38bd6a))
|
|
449
402
|
|
|
450
403
|
### Features
|
|
451
404
|
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
405
|
+
- use Rating component
|
|
406
|
+
([ec54f45](https://github.com/ho-nl/m2-pwa/commit/ec54f4522adb2d330bbdecc2ce032f86f13fb7a6))
|
|
457
407
|
|
|
458
408
|
## [3.17.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.17.0...@graphcommerce/next-ui@3.17.1) (2021-11-12)
|
|
459
409
|
|
|
460
|
-
|
|
461
410
|
### Bug Fixes
|
|
462
411
|
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
412
|
+
- disable CartFab animation for mobile
|
|
413
|
+
([ea04e67](https://github.com/ho-nl/m2-pwa/commit/ea04e678b7d5ab23e903a59a7f369053d17f9e79))
|
|
468
414
|
|
|
469
415
|
# [3.17.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.16.0...@graphcommerce/next-ui@3.17.0) (2021-11-12)
|
|
470
416
|
|
|
471
|
-
|
|
472
417
|
### Features
|
|
473
418
|
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
419
|
+
- added tons of translations
|
|
420
|
+
([9bb0ac7](https://github.com/ho-nl/m2-pwa/commit/9bb0ac709b58df6ea6141e92e4923a5ca9ae2963))
|
|
479
421
|
|
|
480
422
|
# [3.16.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.15.2...@graphcommerce/next-ui@3.16.0) (2021-11-12)
|
|
481
423
|
|
|
482
|
-
|
|
483
424
|
### Bug Fixes
|
|
484
425
|
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
426
|
+
- Accessibility: Tap targets are sized appropriately
|
|
427
|
+
([55177f0](https://github.com/ho-nl/m2-pwa/commit/55177f03e79a29a879022ed34439e6c7aebbd80e))
|
|
428
|
+
- behaviour for CartFab animation including darkTheme support
|
|
429
|
+
([6152ef3](https://github.com/ho-nl/m2-pwa/commit/6152ef32d093e42c58ee79d4d713c5b8c2870746))
|
|
430
|
+
- clean up themeProvider
|
|
431
|
+
([6868e71](https://github.com/ho-nl/m2-pwa/commit/6868e71b59a637be8229a2ab49791dd324e02bb9))
|
|
432
|
+
- darkTheme
|
|
433
|
+
([b08f522](https://github.com/ho-nl/m2-pwa/commit/b08f52255c91dcba5498481ba5e9f0fa0b6c5013))
|
|
434
|
+
- darkTheme proof background color for sheet
|
|
435
|
+
([2af3b4a](https://github.com/ho-nl/m2-pwa/commit/2af3b4a6b7115400c5bbed36a21cd48852bea122))
|
|
436
|
+
- design
|
|
437
|
+
([a8e2888](https://github.com/ho-nl/m2-pwa/commit/a8e288856011ca7d8fdcb75d7c672629a8f8bcf4))
|
|
438
|
+
- design
|
|
439
|
+
([2dd5f41](https://github.com/ho-nl/m2-pwa/commit/2dd5f415010d19549158d837f0f98497d350fc2d))
|
|
440
|
+
- fab animation should be background paper
|
|
441
|
+
([b538f96](https://github.com/ho-nl/m2-pwa/commit/b538f963b6c45a3973b11abe8de7823f2864326b))
|
|
442
|
+
- hex for darktheme paper value, so calculations can be made
|
|
443
|
+
([c93bb22](https://github.com/ho-nl/m2-pwa/commit/c93bb22ba287c85ad5c27fd5f13d82dbb9a7d16f))
|
|
444
|
+
- icon style
|
|
445
|
+
([6b9fea9](https://github.com/ho-nl/m2-pwa/commit/6b9fea9112206bb38b419e8257ad1b2b3fad74b6))
|
|
446
|
+
- pagination color not primary
|
|
447
|
+
([c4e6d4f](https://github.com/ho-nl/m2-pwa/commit/c4e6d4f35d2df7a93fe045bde6c015fbcc5e5089))
|
|
448
|
+
- perfectly spaced video
|
|
449
|
+
([f1481ed](https://github.com/ho-nl/m2-pwa/commit/f1481edaf08564315a8c6f50fa1a500bbdc58fc5))
|
|
450
|
+
- prevent video casting on android
|
|
451
|
+
([a8baf94](https://github.com/ho-nl/m2-pwa/commit/a8baf949283c854283fe32befae4a60b119e02e0))
|
|
452
|
+
- remove unused wrapping div
|
|
453
|
+
([6ced7b9](https://github.com/ho-nl/m2-pwa/commit/6ced7b912229303a9d708db1d2621f50f431c73f))
|
|
454
|
+
- replace value with headerInnerHeight
|
|
455
|
+
([656fedc](https://github.com/ho-nl/m2-pwa/commit/656fedc573bbdd941c34e05e4dcd9a6af49fe987))
|
|
456
|
+
- replace value with headerInnerHeight
|
|
457
|
+
([d961720](https://github.com/ho-nl/m2-pwa/commit/d9617200d375a9db98f7f1c3b47a5927764dae71))
|
|
458
|
+
- revert background changes
|
|
459
|
+
([7661670](https://github.com/ho-nl/m2-pwa/commit/76616703968099039d79a4ca6001b942684adda5))
|
|
460
|
+
- set sheet backgroundColor to background.default
|
|
461
|
+
([5d3f971](https://github.com/ho-nl/m2-pwa/commit/5d3f9719b446ee9440ac8834679ef5ba14be53d4))
|
|
462
|
+
- text color iconBlock and styling
|
|
463
|
+
([0f2b0a8](https://github.com/ho-nl/m2-pwa/commit/0f2b0a896b11eafb79ea045c44f0115649a2040e))
|
|
464
|
+
- use alpha to set rgba value of theme variable
|
|
465
|
+
([aebee87](https://github.com/ho-nl/m2-pwa/commit/aebee87b32eb769c6454ad9ced10d5612c4d1af8))
|
|
506
466
|
|
|
507
467
|
### Features
|
|
508
468
|
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
469
|
+
- provide all (different type of) overlays with the default background color
|
|
470
|
+
([111fe71](https://github.com/ho-nl/m2-pwa/commit/111fe718fbfddbeef452829e08b574ca46d51345))
|
|
471
|
+
- remove svg stroke definitions, set all to currentColor
|
|
472
|
+
([189814f](https://github.com/ho-nl/m2-pwa/commit/189814f822d111c8adc6be1fff65c9a4a4c50c65))
|
|
515
473
|
|
|
516
474
|
## [3.15.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.15.1...@graphcommerce/next-ui@3.15.2) (2021-11-12)
|
|
517
475
|
|
|
518
|
-
|
|
519
476
|
### Bug Fixes
|
|
520
477
|
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
478
|
+
- **sheet-shell-base:** prevent sheet backdrop from navigating back multiple times
|
|
479
|
+
([5ca2f7e](https://github.com/ho-nl/m2-pwa/commit/5ca2f7e0d3404501a6b5763daf1d442c8080f8cb))
|
|
526
480
|
|
|
527
481
|
## [3.15.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.15.0...@graphcommerce/next-ui@3.15.1) (2021-11-11)
|
|
528
482
|
|
|
529
|
-
|
|
530
483
|
### Bug Fixes
|
|
531
484
|
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
485
|
+
- better handling to go back from product page
|
|
486
|
+
([ff8e72b](https://github.com/ho-nl/m2-pwa/commit/ff8e72beef81b9fb0d20cbfbd50c282f0144aed7))
|
|
537
487
|
|
|
538
488
|
# [3.15.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.8...@graphcommerce/next-ui@3.15.0) (2021-11-11)
|
|
539
489
|
|
|
540
|
-
|
|
541
490
|
### Features
|
|
542
491
|
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
492
|
+
- lingui configuration and integration greatly simplified and fixed ssr
|
|
493
|
+
([d8ec22a](https://github.com/ho-nl/m2-pwa/commit/d8ec22a80295af854a4cf6f357c4fb137c5b550d))
|
|
548
494
|
|
|
549
495
|
## [3.14.8](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.7...@graphcommerce/next-ui@3.14.8) (2021-11-09)
|
|
550
496
|
|
|
551
|
-
|
|
552
497
|
### Bug Fixes
|
|
553
498
|
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
499
|
+
- **menu-fab:** revert h3 styling for mobile menu
|
|
500
|
+
([7a45b4f](https://github.com/ho-nl/m2-pwa/commit/7a45b4fb8b0165f7a072bc0658833c819c9f8082))
|
|
501
|
+
- restyle menu to h4
|
|
502
|
+
([642e166](https://github.com/ho-nl/m2-pwa/commit/642e16635dc06f38bed91ffd1a374922ac70439b))
|
|
560
503
|
|
|
561
504
|
## [3.14.7](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.6...@graphcommerce/next-ui@3.14.7) (2021-11-09)
|
|
562
505
|
|
|
563
|
-
|
|
564
506
|
### Bug Fixes
|
|
565
507
|
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
508
|
+
- make sure the translations are ran
|
|
509
|
+
([9d77807](https://github.com/ho-nl/m2-pwa/commit/9d7780711fc1d66884a7465e18d175a6a1d40abb))
|
|
571
510
|
|
|
572
511
|
## [3.14.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.2...@graphcommerce/next-ui@3.14.3) (2021-11-06)
|
|
573
512
|
|
|
574
|
-
|
|
575
513
|
### Bug Fixes
|
|
576
514
|
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
515
|
+
- spacing DesktopNavBar items
|
|
516
|
+
([c3373b9](https://github.com/ho-nl/m2-pwa/commit/c3373b97add87864adc5809ab04cf683bc5b0498))
|
|
582
517
|
|
|
583
518
|
## [3.14.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.0...@graphcommerce/next-ui@3.14.1) (2021-11-04)
|
|
584
519
|
|
|
585
|
-
|
|
586
520
|
### Bug Fixes
|
|
587
521
|
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
522
|
+
- can't remove filters on click icon
|
|
523
|
+
([2528802](https://github.com/ho-nl/m2-pwa/commit/252880216994da7f8e65c1b565ff996bbab0472a))
|
|
524
|
+
- Checkout button margin consistency
|
|
525
|
+
([9fcf7e7](https://github.com/ho-nl/m2-pwa/commit/9fcf7e7d96172448b2d2911771d6bf70ab976594))
|
|
526
|
+
- remove hardcoded fontSize
|
|
527
|
+
([e4e09e1](https://github.com/ho-nl/m2-pwa/commit/e4e09e11baeb8edeff634550b8cdb88571d96911))
|
|
595
528
|
|
|
596
529
|
# [3.14.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.13.2...@graphcommerce/next-ui@3.14.0) (2021-11-04)
|
|
597
530
|
|
|
598
|
-
|
|
599
531
|
### Bug Fixes
|
|
600
532
|
|
|
601
|
-
|
|
602
|
-
|
|
533
|
+
- **menu-fab:** fix route change start event handling
|
|
534
|
+
([20dde65](https://github.com/ho-nl/m2-pwa/commit/20dde65f8e8ead449b21f4f5292d653d003e6ead))
|
|
603
535
|
|
|
604
536
|
### Features
|
|
605
537
|
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
538
|
+
- **sheet-shell-base:** stop animating drawer on browser back
|
|
539
|
+
([c6262f1](https://github.com/ho-nl/m2-pwa/commit/c6262f1c3a0d181e57bd5d4971efb469901503b1))
|
|
611
540
|
|
|
612
541
|
## [3.13.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.13.1...@graphcommerce/next-ui@3.13.2) (2021-11-03)
|
|
613
542
|
|
|
614
|
-
|
|
615
543
|
### Bug Fixes
|
|
616
544
|
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
545
|
+
- various accessibility improvements
|
|
546
|
+
([47481a9](https://github.com/ho-nl/m2-pwa/commit/47481a9a882ba87968de6dd797557b0b275d75fb))
|
|
622
547
|
|
|
623
548
|
## [3.13.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.13.0...@graphcommerce/next-ui@3.13.1) (2021-11-03)
|
|
624
549
|
|
|
625
|
-
|
|
626
550
|
### Bug Fixes
|
|
627
551
|
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
552
|
+
- logo shouldnt invert, because it depends on the logo if it can be inverted.
|
|
553
|
+
([8426b09](https://github.com/ho-nl/m2-pwa/commit/8426b09688c7c77f45f912c56684ad1f378fc263))
|
|
633
554
|
|
|
634
555
|
# [3.13.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.12.4...@graphcommerce/next-ui@3.13.0) (2021-11-03)
|
|
635
556
|
|
|
636
|
-
|
|
637
557
|
### Bug Fixes
|
|
638
558
|
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
559
|
+
- **full-page-shell:** show logo on mobile
|
|
560
|
+
([abe2af7](https://github.com/ho-nl/m2-pwa/commit/abe2af7001ce9a31ba67a9fa326c50a07fe86135))
|
|
561
|
+
- **logo:** correct props propagation
|
|
562
|
+
([968025b](https://github.com/ho-nl/m2-pwa/commit/968025bc0bed4843cce7d11c0ef2740edb2ea02b))
|
|
642
563
|
|
|
643
564
|
### Features
|
|
644
565
|
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
566
|
+
- **next-ui:** introducing footer component
|
|
567
|
+
([a98129b](https://github.com/ho-nl/m2-pwa/commit/a98129b935b9fd45e985f958a60a4ad6b21c880c))
|
|
650
568
|
|
|
651
569
|
## [3.12.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.12.2...@graphcommerce/next-ui@3.12.3) (2021-11-02)
|
|
652
570
|
|
|
653
|
-
|
|
654
571
|
### Bug Fixes
|
|
655
572
|
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
573
|
+
- **MenuFab:** make icon customizable
|
|
574
|
+
([375bafd](https://github.com/ho-nl/m2-pwa/commit/375bafd901b3c53405e02d681ea0dca3af190e35))
|
|
661
575
|
|
|
662
576
|
## [3.12.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.12.1...@graphcommerce/next-ui@3.12.2) (2021-11-02)
|
|
663
577
|
|
|
664
|
-
|
|
665
578
|
### Bug Fixes
|
|
666
579
|
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
580
|
+
- **message-snackbar:** children alignment
|
|
581
|
+
([02051df](https://github.com/ho-nl/m2-pwa/commit/02051df0f09945218117c6ba2c761e4dca3872a3))
|
|
582
|
+
- **message-snackbar:** children alignment
|
|
583
|
+
([9b9ac09](https://github.com/ho-nl/m2-pwa/commit/9b9ac094e10ec3e57155014366f39a22f07a7f52))
|
|
673
584
|
|
|
674
585
|
## [3.12.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.12.0...@graphcommerce/next-ui@3.12.1) (2021-11-02)
|
|
675
586
|
|
|
676
|
-
|
|
677
587
|
### Bug Fixes
|
|
678
588
|
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
589
|
+
- RemoveCoupon Button and fix pill-link style to match buttons
|
|
590
|
+
([6838812](https://github.com/ho-nl/m2-pwa/commit/68388123773fb4f79a3e4b1beb7ecca601d7748e))
|
|
684
591
|
|
|
685
592
|
# [3.12.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.11.5...@graphcommerce/next-ui@3.12.0) (2021-11-02)
|
|
686
593
|
|
|
687
|
-
|
|
688
594
|
### Bug Fixes
|
|
689
595
|
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
596
|
+
- build ([2c2d317](https://github.com/ho-nl/m2-pwa/commit/2c2d317432e3a6f2b027f24c00ac2416d56847be))
|
|
597
|
+
- build ([5d07e8e](https://github.com/ho-nl/m2-pwa/commit/5d07e8e8dc9b70ab8e58018183c54484944e8822))
|
|
598
|
+
- cancel filter icon
|
|
599
|
+
([8e03602](https://github.com/ho-nl/m2-pwa/commit/8e03602dd54b2dae714ad514515fad907539b594))
|
|
600
|
+
- cleanup blog header styles
|
|
601
|
+
([b96aec1](https://github.com/ho-nl/m2-pwa/commit/b96aec13b5a0af74ec2058502c7da558eb675dbb))
|
|
602
|
+
- darkMode
|
|
603
|
+
([c7573de](https://github.com/ho-nl/m2-pwa/commit/c7573de6bb80643b26931c35ac61735539e7fbf0))
|
|
604
|
+
- darkTheme
|
|
605
|
+
([df3d326](https://github.com/ho-nl/m2-pwa/commit/df3d326126446c1b92f8e46eff0533bbbe35604f))
|
|
606
|
+
- darkTheme
|
|
607
|
+
([a12786f](https://github.com/ho-nl/m2-pwa/commit/a12786f33cf09e974cceb8592ec98439ccbc3fad))
|
|
608
|
+
- darkTheme
|
|
609
|
+
([d0517af](https://github.com/ho-nl/m2-pwa/commit/d0517af5a788532c48f567ee3e840986efa26a67))
|
|
610
|
+
- darkTheme
|
|
611
|
+
([ae017c1](https://github.com/ho-nl/m2-pwa/commit/ae017c1a1e82f86ee5eb2f67106dac8174950c45))
|
|
612
|
+
- full image on blog view page
|
|
613
|
+
([6d14b0e](https://github.com/ho-nl/m2-pwa/commit/6d14b0ef24fa60321a442a42d5861adc20e4a5fa))
|
|
614
|
+
- icon size in checkout
|
|
615
|
+
([d7bb962](https://github.com/ho-nl/m2-pwa/commit/d7bb962a6827b81f737f22e36f828454abef1b47))
|
|
616
|
+
- move checkmark icons on select fields
|
|
617
|
+
([95ce54d](https://github.com/ho-nl/m2-pwa/commit/95ce54d7fd41d11120847f2fdf6b9097a2c93871))
|
|
618
|
+
- remove text from inputprops
|
|
619
|
+
([ccc11f2](https://github.com/ho-nl/m2-pwa/commit/ccc11f267e85b8b333877afb4ce11f96dad0a3d0))
|
|
620
|
+
- remove text='bold', make contained button text stronger by default
|
|
621
|
+
([cd277c9](https://github.com/ho-nl/m2-pwa/commit/cd277c9f434a4a765eac372467e5a05c822d5512))
|
|
622
|
+
- remove unused imports
|
|
623
|
+
([5018763](https://github.com/ho-nl/m2-pwa/commit/5018763a8a2bbd0ba4a775979cc5885e9b17ad8d))
|
|
624
|
+
- style cleanup snackbar
|
|
625
|
+
([610221a](https://github.com/ho-nl/m2-pwa/commit/610221ad82f5726e9d745436cb1c08314bd342d5))
|
|
626
|
+
- svg color
|
|
627
|
+
([095ac85](https://github.com/ho-nl/m2-pwa/commit/095ac8578409ec005fbfe449fe4759d4f63b6f79))
|
|
708
628
|
|
|
709
629
|
### Features
|
|
710
630
|
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
631
|
+
- add social icons to codebase for convenience
|
|
632
|
+
([9e4b404](https://github.com/ho-nl/m2-pwa/commit/9e4b404aa1dbc821562529f7b15ab4761a1ab52c))
|
|
633
|
+
- darkTheme
|
|
634
|
+
([968f4f1](https://github.com/ho-nl/m2-pwa/commit/968f4f1360417bf7daa36454c19e6bc5cf53ae90))
|
|
635
|
+
- darkTheme
|
|
636
|
+
([3ed6647](https://github.com/ho-nl/m2-pwa/commit/3ed664714670315bc9f20542549724f66cb5052d))
|
|
637
|
+
- Mui true Pagination based on Fab
|
|
638
|
+
([572fa7b](https://github.com/ho-nl/m2-pwa/commit/572fa7b031b58b6ffdab60c4a50407a53202fa34))
|
|
719
639
|
|
|
720
640
|
## [3.11.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.11.4...@graphcommerce/next-ui@3.11.5) (2021-11-02)
|
|
721
641
|
|
|
722
|
-
|
|
723
642
|
### Bug Fixes
|
|
724
643
|
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
644
|
+
- back button loop
|
|
645
|
+
([4d901e6](https://github.com/ho-nl/m2-pwa/commit/4d901e662579d1cfb97c823d581e60d687908b1a))
|
|
646
|
+
- break back button loop
|
|
647
|
+
([be2e5ae](https://github.com/ho-nl/m2-pwa/commit/be2e5aefa1e409a97c1ebf94173f4da7ea25386b))
|
|
648
|
+
- **framer-next-pages:** prevent back button loop when previous page is the up page of the previous
|
|
649
|
+
page ([ec829c8](https://github.com/ho-nl/m2-pwa/commit/ec829c8eee2a3744747a7572b32299879c780d45))
|
|
650
|
+
- **framer-next-pages:** prevent back button loop when previous page is the up page of the previous
|
|
651
|
+
page ([cbdde83](https://github.com/ho-nl/m2-pwa/commit/cbdde83790337bdf4c5f03c907ca6e6e02792e70))
|
|
652
|
+
- **types:** apollo state props ‘up’ can be null
|
|
653
|
+
([9377d7f](https://github.com/ho-nl/m2-pwa/commit/9377d7fd9a080a8a2b8c7127961d64dc66a5729a))
|
|
654
|
+
- **types:** make apollo up state optional
|
|
655
|
+
([eba9683](https://github.com/ho-nl/m2-pwa/commit/eba96832e372adaeaa2ed71622c88f9dc95071c5))
|
|
735
656
|
|
|
736
657
|
## [3.11.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.11.2...@graphcommerce/next-ui@3.11.3) (2021-11-01)
|
|
737
658
|
|
|
738
|
-
|
|
739
659
|
### Bug Fixes
|
|
740
660
|
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
661
|
+
- category page design fixs
|
|
662
|
+
([d3fccc2](https://github.com/ho-nl/m2-pwa/commit/d3fccc2a86106b854e9a1fd89040a248fe20c99a))
|
|
746
663
|
|
|
747
664
|
## [3.11.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.11.0...@graphcommerce/next-ui@3.11.1) (2021-10-28)
|
|
748
665
|
|
|
749
|
-
|
|
750
666
|
### Bug Fixes
|
|
751
667
|
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
668
|
+
- External SVG's can't have alt tags
|
|
669
|
+
([1b1414a](https://github.com/ho-nl/m2-pwa/commit/1b1414a782d55d3acf7b0e6bcaa50f2ad5f18f39))
|
|
757
670
|
|
|
758
671
|
# [3.11.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.10.2...@graphcommerce/next-ui@3.11.0) (2021-10-28)
|
|
759
672
|
|
|
760
|
-
|
|
761
673
|
### Bug Fixes
|
|
762
674
|
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
675
|
+
- add missing row container for consistent margins
|
|
676
|
+
([10869b8](https://github.com/ho-nl/m2-pwa/commit/10869b8a7ab9579306b268b22a0af47c1a2e2e25))
|
|
677
|
+
- alt person icon
|
|
678
|
+
([d80d180](https://github.com/ho-nl/m2-pwa/commit/d80d18043a86551feaf5ce49a30752c93ee27924))
|
|
679
|
+
- base icon size on responsiveVal
|
|
680
|
+
([3bbd2a7](https://github.com/ho-nl/m2-pwa/commit/3bbd2a7be4853b284f90603056ae8990e5d62040))
|
|
681
|
+
- build ([25582a4](https://github.com/ho-nl/m2-pwa/commit/25582a496039c704e75bb969d4fa06c13ee6267d))
|
|
682
|
+
- build missing import
|
|
683
|
+
([5850f25](https://github.com/ho-nl/m2-pwa/commit/5850f2561a2d9d72d4ebe0da5c964b6571a72b03))
|
|
684
|
+
- build, remove unused imports
|
|
685
|
+
([af6d72c](https://github.com/ho-nl/m2-pwa/commit/af6d72c6e70f670effb4d9e0c1fd883bf771f99d))
|
|
686
|
+
- consistent margin product page
|
|
687
|
+
([1c65ff6](https://github.com/ho-nl/m2-pwa/commit/1c65ff6b19ebb3fed70abf8326f4e593d77c70da))
|
|
688
|
+
- force object-fit image
|
|
689
|
+
([df049f7](https://github.com/ho-nl/m2-pwa/commit/df049f727a26aa049c6c9d3aa338223ce442bffd))
|
|
690
|
+
- icon size
|
|
691
|
+
([6063855](https://github.com/ho-nl/m2-pwa/commit/6063855d9c7360f0ea69ffdb22292de6c93e5f27))
|
|
692
|
+
- loading state icon muted
|
|
693
|
+
([f7c3a6b](https://github.com/ho-nl/m2-pwa/commit/f7c3a6be199f2d05d1ad918043bf199544824ff6))
|
|
694
|
+
- make pill buttons always completely rounded
|
|
695
|
+
([9d8e211](https://github.com/ho-nl/m2-pwa/commit/9d8e211303ac6cd371a834bf73fb10a6345ca13a))
|
|
696
|
+
- pagination size
|
|
697
|
+
([7d16290](https://github.com/ho-nl/m2-pwa/commit/7d16290d8180a2eb06755859cb9dcdbd44e7d59b))
|
|
698
|
+
- remove double icons
|
|
699
|
+
([1654e34](https://github.com/ho-nl/m2-pwa/commit/1654e3441911f3c7c1600357f8f8e3032f5ee729))
|
|
700
|
+
- remove laggy animation
|
|
701
|
+
([3ca0922](https://github.com/ho-nl/m2-pwa/commit/3ca09221ecd6e533063c42ec9fbe11f9484099bc))
|
|
702
|
+
- remove unused breakpoint
|
|
703
|
+
([19dc4c4](https://github.com/ho-nl/m2-pwa/commit/19dc4c4bde18bec74c8f3e13e3769b929f2e9d57))
|
|
704
|
+
- small sized chevron for service page links
|
|
705
|
+
([1748418](https://github.com/ho-nl/m2-pwa/commit/17484186ae20e8002f38f1dcb820f942023f5bbc))
|
|
706
|
+
- smaller icons for search and menu
|
|
707
|
+
([f8e8949](https://github.com/ho-nl/m2-pwa/commit/f8e89494f358f9d2868c75901abaca2bffe38bdc))
|
|
708
|
+
- strokeWidth for xxl icons
|
|
709
|
+
([da131e2](https://github.com/ho-nl/m2-pwa/commit/da131e20beb5bdf94c99de6237d7563b187f20da))
|
|
710
|
+
- SvgImage to SvgImageSimple
|
|
711
|
+
([0004269](https://github.com/ho-nl/m2-pwa/commit/00042694f89e4a5fc17a4b74a16185cada14b80a))
|
|
712
|
+
- SvgImage to SvgImageSimple
|
|
713
|
+
([9722167](https://github.com/ho-nl/m2-pwa/commit/9722167cd3c6032b4251ef4a4921d727eb92167e))
|
|
714
|
+
- SvgImage to SvgImageSimple
|
|
715
|
+
([793fac7](https://github.com/ho-nl/m2-pwa/commit/793fac769f045d283817fe47fbed77d38d282f3c))
|
|
716
|
+
- tuning sizeLarge, adjust muted and inverted styles
|
|
717
|
+
([49d69ee](https://github.com/ho-nl/m2-pwa/commit/49d69ee8d9a04a87fbd9979594c5a3b445f7dd58))
|
|
718
|
+
- update SvgImage to SvgImageSimple
|
|
719
|
+
([f116543](https://github.com/ho-nl/m2-pwa/commit/f116543730853fa9782abff0ccacee7032e85789))
|
|
720
|
+
- use font from theme for menu
|
|
721
|
+
([74522ae](https://github.com/ho-nl/m2-pwa/commit/74522ae9bababbf204d925ae96997dc45f611bfc))
|
|
722
|
+
- usp fontsize
|
|
723
|
+
([1164907](https://github.com/ho-nl/m2-pwa/commit/1164907be4fa7ed3a517f66b2af67a54df55a38f))
|
|
789
724
|
|
|
790
725
|
### Features
|
|
791
726
|
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
727
|
+
- add default iconset
|
|
728
|
+
([eb78d4c](https://github.com/ho-nl/m2-pwa/commit/eb78d4c081937bc56ce1c593a6632a4ff32e611e))
|
|
729
|
+
- dynamic icons, update SvgImage uses to SvgImageSimple
|
|
730
|
+
([3d3cc0e](https://github.com/ho-nl/m2-pwa/commit/3d3cc0e0336fcde1cce6ba19705f82c1edf9bfc6))
|
|
731
|
+
- icon references
|
|
732
|
+
([b477029](https://github.com/ho-nl/m2-pwa/commit/b47702955cf47b19fb0861c0d40751ac43e8eeab))
|
|
733
|
+
- mobile menu styling
|
|
734
|
+
([3cc3085](https://github.com/ho-nl/m2-pwa/commit/3cc308585d4ded68d2ac8ebf97f96288424ee914))
|
|
735
|
+
- more spacious row margins for mobile
|
|
736
|
+
([0b3e973](https://github.com/ho-nl/m2-pwa/commit/0b3e9734aa01fcc0801fa12281edd224d9600464))
|
|
737
|
+
- rebuild to support svg imports
|
|
738
|
+
([59fbda3](https://github.com/ho-nl/m2-pwa/commit/59fbda300ce88c51a5d1c6a7ea457cb3b323b24d))
|
|
739
|
+
- replace icons with icon pack
|
|
740
|
+
([60951d5](https://github.com/ho-nl/m2-pwa/commit/60951d57684637da8c4aed94f28e69f18129bbd0))
|
|
741
|
+
- set correct font sizes
|
|
742
|
+
([9317448](https://github.com/ho-nl/m2-pwa/commit/9317448c94a9fb4408dfbcaa320adccc363964d0))
|
|
743
|
+
- UspList styling and svg support
|
|
744
|
+
([70f472b](https://github.com/ho-nl/m2-pwa/commit/70f472bb143aae86879e69dc911bbbdf229b39b9))
|
|
805
745
|
|
|
806
746
|
# [3.10.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.9.0...@graphcommerce/next-ui@3.10.0) (2021-10-27)
|
|
807
747
|
|
|
808
|
-
|
|
809
748
|
### Features
|
|
810
749
|
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
750
|
+
- **nextjs:** upgraded to nextjs 12
|
|
751
|
+
([9331bc8](https://github.com/ho-nl/m2-pwa/commit/9331bc801f6419522115cc47d291d49d608d5a90))
|
|
816
752
|
|
|
817
753
|
# [3.9.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.8.1...@graphcommerce/next-ui@3.9.0) (2021-10-25)
|
|
818
754
|
|
|
819
|
-
|
|
820
755
|
### Features
|
|
821
756
|
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
757
|
+
- prepare for yarn 3 usage (not actually migrated because vercel doesn't support yarn 3)
|
|
758
|
+
([41734be](https://github.com/ho-nl/m2-pwa/commit/41734beaa016bf4c3487b3fbd5a402d8024e173f))
|
|
827
759
|
|
|
828
760
|
# [3.8.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.7.1...@graphcommerce/next-ui@3.8.0) (2021-10-21)
|
|
829
761
|
|
|
830
|
-
|
|
831
762
|
### Features
|
|
832
763
|
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
764
|
+
- **graphql-mesh:** remove the api project and use a single project 🎉👩👩👦👦
|
|
765
|
+
([ea4ad03](https://github.com/ho-nl/m2-pwa/commit/ea4ad0397d4ff289ef3b3253593fb0914c8c5246))
|
|
838
766
|
|
|
839
767
|
# [3.7.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.6.0...@graphcommerce/next-ui@3.7.0) (2021-10-19)
|
|
840
768
|
|
|
841
|
-
|
|
842
769
|
### Bug Fixes
|
|
843
770
|
|
|
844
|
-
|
|
845
|
-
|
|
771
|
+
- solve import issue where @material-ui/styles couldn't be found
|
|
772
|
+
([efb3771](https://github.com/ho-nl/m2-pwa/commit/efb3771e8c173799779691d4d52857678dab4c15))
|
|
846
773
|
|
|
847
774
|
### Features
|
|
848
775
|
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
776
|
+
- **framer-scroller:** better defaults so the Scroller doesn't look broken when providing no props
|
|
777
|
+
([b177ce9](https://github.com/ho-nl/m2-pwa/commit/b177ce9570abb9ccfd4eb5cc34e43d157bb4e81a))
|
|
854
778
|
|
|
855
779
|
# [3.6.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.5.0...@graphcommerce/next-ui@3.6.0) (2021-10-18)
|
|
856
780
|
|
|
857
|
-
|
|
858
781
|
### Features
|
|
859
782
|
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
783
|
+
- **message-snackbar:** severity props
|
|
784
|
+
([c7be8a5](https://github.com/ho-nl/m2-pwa/commit/c7be8a51faf7a5937b7fab5bb352df2089ae4eea))
|
|
865
785
|
|
|
866
786
|
# [3.5.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.4.0...@graphcommerce/next-ui@3.5.0) (2021-10-18)
|
|
867
787
|
|
|
868
|
-
|
|
869
788
|
### Features
|
|
870
789
|
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
790
|
+
- **graphcms:** combined multiple models to bypass model creation limit
|
|
791
|
+
([fd6dc14](https://github.com/ho-nl/m2-pwa/commit/fd6dc140cb60c5733dab2e0a43b5df2059e0c739))
|
|
876
792
|
|
|
877
793
|
# [3.4.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.3.3...@graphcommerce/next-ui@3.4.0) (2021-10-15)
|
|
878
794
|
|
|
879
|
-
|
|
880
795
|
### Features
|
|
881
796
|
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
797
|
+
- **DesktopNavBar:** allow custom scroller button icons
|
|
798
|
+
([401f457](https://github.com/ho-nl/m2-pwa/commit/401f4572ce67dbe52008dca8e1d4473e2fcbf5cf))
|
|
887
799
|
|
|
888
800
|
## [3.3.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.3.2...@graphcommerce/next-ui@3.3.3) (2021-10-13)
|
|
889
801
|
|
|
890
|
-
|
|
891
802
|
### Bug Fixes
|
|
892
803
|
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
804
|
+
- regression in header
|
|
805
|
+
([4738fb7](https://github.com/ho-nl/m2-pwa/commit/4738fb7e13fb3be187f58b474219497783525d72))
|
|
898
806
|
|
|
899
807
|
# [3.3.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.2.3...@graphcommerce/next-ui@3.3.0) (2021-10-13)
|
|
900
808
|
|
|
901
|
-
|
|
902
809
|
### Features
|
|
903
810
|
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
811
|
+
- allow styling DesktopNavBar
|
|
812
|
+
([12f99a6](https://github.com/ho-nl/m2-pwa/commit/12f99a603d9e9f89e28ec2452823b58abee59c4c))
|
|
813
|
+
- implement extensibility for DesktopNavBar, SearchButton
|
|
814
|
+
([5710de8](https://github.com/ho-nl/m2-pwa/commit/5710de8936f59c7d0fcc648978183f0e7fdd26b7))
|
|
815
|
+
- make DesktopNavBar Link variant customizable
|
|
816
|
+
([d47172f](https://github.com/ho-nl/m2-pwa/commit/d47172f3ebe0cc0b769e0d17c171ae4bb2045bbb))
|
|
911
817
|
|
|
912
818
|
## [3.2.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.2.2...@graphcommerce/next-ui@3.2.3) (2021-10-11)
|
|
913
819
|
|
|
914
|
-
|
|
915
820
|
### Bug Fixes
|
|
916
821
|
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
822
|
+
- **desktop-nav-bar:** prev/next button alignment in menu
|
|
823
|
+
([c7fabf0](https://github.com/ho-nl/m2-pwa/commit/c7fabf0474100aaf40a7526858fa2b01566b3250))
|
|
824
|
+
- **section-heeader-filter-items:** remove large paddings
|
|
825
|
+
([18f4d77](https://github.com/ho-nl/m2-pwa/commit/18f4d77e4eb1b029bf2e5656b753e2f18fde90ab))
|
|
923
826
|
|
|
924
827
|
## [3.2.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.2.1...@graphcommerce/next-ui@3.2.2) (2021-10-11)
|
|
925
828
|
|
|
926
|
-
|
|
927
829
|
### Bug Fixes
|
|
928
830
|
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
831
|
+
- **menu-fab:** animation duration
|
|
832
|
+
([5b9ece2](https://github.com/ho-nl/m2-pwa/commit/5b9ece293fb7e12663386f9f9cbc99bc4e22aaa9))
|
|
934
833
|
|
|
935
834
|
## [3.2.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.2.0...@graphcommerce/next-ui@3.2.1) (2021-10-11)
|
|
936
835
|
|
|
937
|
-
|
|
938
836
|
### Bug Fixes
|
|
939
837
|
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
838
|
+
- **framer-scroller:** dots should have a background
|
|
839
|
+
([8f2e1a1](https://github.com/ho-nl/m2-pwa/commit/8f2e1a1ffc9de3369938fe2f9e9f25f592739d8d))
|
|
945
840
|
|
|
946
841
|
# [3.2.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.1.7...@graphcommerce/next-ui@3.2.0) (2021-10-09)
|
|
947
842
|
|
|
948
|
-
|
|
949
843
|
### Bug Fixes
|
|
950
844
|
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
845
|
+
- **framer-scroller:** pan snap does not work on mobile
|
|
846
|
+
([660f242](https://github.com/ho-nl/m2-pwa/commit/660f242a38558669fa896a74e14cafdd85069d57))
|
|
847
|
+
- **framer-slider:** route changes
|
|
848
|
+
([4cadbea](https://github.com/ho-nl/m2-pwa/commit/4cadbea3e494326377e74e2fa9370ab80f8d8c35))
|
|
849
|
+
- make sure the gallery never gets higher than 100%
|
|
850
|
+
([1eae8c7](https://github.com/ho-nl/m2-pwa/commit/1eae8c7cfb2a9e67f03f1e4e4db5c95213d2dbe0))
|
|
851
|
+
- poistioning on mobile
|
|
852
|
+
([bec497f](https://github.com/ho-nl/m2-pwa/commit/bec497fca426346b80b453a3871b9c66521a2161))
|
|
853
|
+
- **sidebar-gallery:** differentiate drag from click
|
|
854
|
+
([acd408e](https://github.com/ho-nl/m2-pwa/commit/acd408e400f8285e2b3a9105b4694d5fd839dd99))
|
|
855
|
+
- **sidebar-gallery:** push gallery to history one time
|
|
856
|
+
([2c45b64](https://github.com/ho-nl/m2-pwa/commit/2c45b64e171577f7b584662d56416eeae4a22554))
|
|
857
|
+
- **sidebar-gallery:** route handling
|
|
858
|
+
([1c3b8b1](https://github.com/ho-nl/m2-pwa/commit/1c3b8b1687b0bf637da6c88d2d9b30a734b98d11))
|
|
859
|
+
- **sidebar-gallery:** use fullscreen and fullscreen exit icons
|
|
860
|
+
([1328d22](https://github.com/ho-nl/m2-pwa/commit/1328d220030f766be2d4046abd87d45175e4fe38))
|
|
861
|
+
- use better URL handling and remove drag temporarily
|
|
862
|
+
([0b99387](https://github.com/ho-nl/m2-pwa/commit/0b993876280270320eef5301130c5cc3eb339ea9))
|
|
961
863
|
|
|
962
864
|
### Features
|
|
963
865
|
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
866
|
+
- **sidebar-gallery:** toggle with browser back buttons
|
|
867
|
+
([a2f804b](https://github.com/ho-nl/m2-pwa/commit/a2f804b0cedb98df8f6a7b197aeeeeda43c6b1ba))
|
|
969
868
|
|
|
970
869
|
## [3.1.7](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.1.6...@graphcommerce/next-ui@3.1.7) (2021-10-08)
|
|
971
870
|
|
|
972
|
-
|
|
973
871
|
### Bug Fixes
|
|
974
872
|
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
873
|
+
- SvgImageSimple should pass the layout prop
|
|
874
|
+
([a0b5c81](https://github.com/ho-nl/m2-pwa/commit/a0b5c818f93ba24a34c6ce8aa21f8af50bd05dd2))
|
|
980
875
|
|
|
981
876
|
## [3.1.6](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.1.5...@graphcommerce/next-ui@3.1.6) (2021-10-07)
|
|
982
877
|
|
|
983
|
-
|
|
984
878
|
### Bug Fixes
|
|
985
879
|
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
880
|
+
- Form component added classes attribute
|
|
881
|
+
([269fd46](https://github.com/ho-nl/m2-pwa/commit/269fd4629cedcaab74043604ac21a4557b4e514f))
|
|
991
882
|
|
|
992
883
|
## [3.1.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.1.3...@graphcommerce/next-ui@3.1.4) (2021-10-06)
|
|
993
884
|
|
|
994
|
-
|
|
995
885
|
### Bug Fixes
|
|
996
886
|
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
887
|
+
- cart fab alignment
|
|
888
|
+
([209ad30](https://github.com/ho-nl/m2-pwa/commit/209ad3027eff32e174c1774d21e9f33a3051a819))
|
|
889
|
+
- **cart-fab:** box shadow in safari
|
|
890
|
+
([4eb316d](https://github.com/ho-nl/m2-pwa/commit/4eb316dd0f2ab7ee2806a3acdb306af1eb72854b))
|
|
891
|
+
- **cart-fab:** positioning
|
|
892
|
+
([7bb31b4](https://github.com/ho-nl/m2-pwa/commit/7bb31b4bf6e663d14220aedaddf420b24d427b3a))
|
|
1004
893
|
|
|
1005
894
|
## [3.1.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.1.2...@graphcommerce/next-ui@3.1.3) (2021-10-04)
|
|
1006
895
|
|
|
1007
|
-
|
|
1008
896
|
### Bug Fixes
|
|
1009
897
|
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
898
|
+
- **blog:** use app shell title
|
|
899
|
+
([987bb15](https://github.com/ho-nl/m2-pwa/commit/987bb157c4064141b1c2978935e66cf47ae24ff0))
|
|
1015
900
|
|
|
1016
901
|
## [3.1.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.1.1...@graphcommerce/next-ui@3.1.2) (2021-10-04)
|
|
1017
902
|
|
|
1018
|
-
|
|
1019
903
|
### Bug Fixes
|
|
1020
904
|
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
905
|
+
- **hero-banner:** too large top spacing
|
|
906
|
+
([0ad8499](https://github.com/ho-nl/m2-pwa/commit/0ad8499a1702caf8e121f38e1ccb70fba4f418db))
|
|
907
|
+
- **sheet-shell:** mobile border bottom gap
|
|
908
|
+
([70104d8](https://github.com/ho-nl/m2-pwa/commit/70104d88994c2324f415eec1efeeba21de7872b9))
|
|
1027
909
|
|
|
1028
910
|
## [3.1.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.1.0...@graphcommerce/next-ui@3.1.1) (2021-10-04)
|
|
1029
911
|
|
|
1030
|
-
|
|
1031
912
|
### Bug Fixes
|
|
1032
913
|
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
914
|
+
- cart icon alignment
|
|
915
|
+
([8b75b40](https://github.com/ho-nl/m2-pwa/commit/8b75b40bcdecf6d43579ee824677bf1a03763157))
|
|
916
|
+
- **icon-block:** render href
|
|
917
|
+
([738fd82](https://github.com/ho-nl/m2-pwa/commit/738fd82629dd3be92fe0cdd63ed8eeaa5d4886f6))
|
|
1039
918
|
|
|
1040
919
|
# [3.1.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.0.6...@graphcommerce/next-ui@3.1.0) (2021-10-01)
|
|
1041
920
|
|
|
1042
|
-
|
|
1043
921
|
### Features
|
|
1044
922
|
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
923
|
+
- **sidebar-gallery:** close using esc key
|
|
924
|
+
([fd46fe1](https://github.com/ho-nl/m2-pwa/commit/fd46fe1029f436c1e0e04cbcc3b66deca4d1b0b6))
|
|
1050
925
|
|
|
1051
926
|
## [3.0.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.0.0...@graphcommerce/next-ui@3.0.1) (2021-09-27)
|
|
1052
927
|
|
|
1053
928
|
**Note:** Version bump only for package @graphcommerce/next-ui
|
|
1054
929
|
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
930
|
# Change Log
|
|
1060
931
|
|
|
1061
932
|
All notable changes to this project will be documented in this file. See
|
|
@@ -1101,8 +972,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1101
972
|
([34d183e](https://github.com/ho-nl/m2-pwa/commit/34d183e7ee13c3e6d76bc211d44398cb7e492d67))
|
|
1102
973
|
- **app-shell-header:** offset not always correctly set
|
|
1103
974
|
([11a8907](https://github.com/ho-nl/m2-pwa/commit/11a890764be1ab4f6c584a5c8ca4e6620d0d73e5))
|
|
1104
|
-
- **app-shell-header:** show fallbacktitle instead of back on back button when
|
|
1105
|
-
applicable
|
|
975
|
+
- **app-shell-header:** show fallbacktitle instead of back on back button when applicable
|
|
1106
976
|
([27d7d7d](https://github.com/ho-nl/m2-pwa/commit/27d7d7d716265c856cd64d3f485f0227f99c5cd0))
|
|
1107
977
|
- **app-shell-header:** title offset top not correctly set
|
|
1108
978
|
([c144309](https://github.com/ho-nl/m2-pwa/commit/c1443095317c1779074f3a4058f4041159c8e31b))
|
|
@@ -1260,8 +1130,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
1260
1130
|
([bfc041d](https://github.com/ho-nl/m2-pwa/commit/bfc041d39e34faf60581dbdba7a15a32928368b3))
|
|
1261
1131
|
- **image:** fix build
|
|
1262
1132
|
([b730cb6](https://github.com/ho-nl/m2-pwa/commit/b730cb6ae4e50dcf2f60e2046d6acf3047caacb3))
|
|
1263
|
-
- **image:** make sure unoptimized images are preloaded correctly and remove
|
|
1264
|
-
|
|
1133
|
+
- **image:** make sure unoptimized images are preloaded correctly and remove preloads from lots of
|
|
1134
|
+
images
|
|
1265
1135
|
([fb2b4fc](https://github.com/ho-nl/m2-pwa/commit/fb2b4fcb5336ff880a9b32775847d7b6738ba1ea))
|
|
1266
1136
|
- implement next-ui barrel imports
|
|
1267
1137
|
([75bea70](https://github.com/ho-nl/m2-pwa/commit/75bea703dba898f18a2a1dfa3243ebd0a4e6f0e1))
|
|
@@ -1325,8 +1195,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1325
1195
|
([1fc48e0](https://github.com/ho-nl/m2-pwa/commit/1fc48e0ff7470f5904492619d96315db19dcc42b))
|
|
1326
1196
|
- narrow quote on mobile
|
|
1327
1197
|
([e06ccc2](https://github.com/ho-nl/m2-pwa/commit/e06ccc25048124431dcdb786f1719f688a5e429c))
|
|
1328
|
-
- **next-ui:** remove decoding=async from images, causes flash when upgrading
|
|
1329
|
-
image
|
|
1198
|
+
- **next-ui:** remove decoding=async from images, causes flash when upgrading image
|
|
1330
1199
|
([7719072](https://github.com/ho-nl/m2-pwa/commit/7719072c020390b9b921657527efb1f838e95775))
|
|
1331
1200
|
- **next-ui:** toggle button stylign
|
|
1332
1201
|
([c806d35](https://github.com/ho-nl/m2-pwa/commit/c806d358aed030c54d568275ee497f8cb9b01359))
|
|
@@ -1440,8 +1309,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1440
1309
|
([bf851a6](https://github.com/ho-nl/m2-pwa/commit/bf851a6740e1956a78f457c2d90904ee2f65da2f))
|
|
1441
1310
|
- useMutationForm can handle hard GraphQL errors (fields missing etc.)
|
|
1442
1311
|
([e6e6f78](https://github.com/ho-nl/m2-pwa/commit/e6e6f7843a3b88a31c858c160262dc2f072209b9))
|
|
1443
|
-
- using dynamic values in filter row & behaviour bugfixes with ‘too long filter
|
|
1444
|
-
row’
|
|
1312
|
+
- using dynamic values in filter row & behaviour bugfixes with ‘too long filter row’
|
|
1445
1313
|
([ffdb6ac](https://github.com/ho-nl/m2-pwa/commit/ffdb6acaa000bf455e2aff008aadbc25e1bdb12d))
|
|
1446
1314
|
- vertical align full page message
|
|
1447
1315
|
([b74af1d](https://github.com/ho-nl/m2-pwa/commit/b74af1da88e62cf2aaeae48f727a2f01b12b7850))
|
|
@@ -1548,8 +1416,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1548
1416
|
([43f5c67](https://github.com/ho-nl/m2-pwa/commit/43f5c678f5f075372d5b02c87858d858cde6ce4e))
|
|
1549
1417
|
- **framer-next-page:** introduced SheetHeader
|
|
1550
1418
|
([dd6949f](https://github.com/ho-nl/m2-pwa/commit/dd6949fd027f6ec984f4de44fe75b36265f44906))
|
|
1551
|
-
- **framer-next-pages:** added useCloseOverlay hook to close multiple steps at
|
|
1552
|
-
once
|
|
1419
|
+
- **framer-next-pages:** added useCloseOverlay hook to close multiple steps at once
|
|
1553
1420
|
([55b7473](https://github.com/ho-nl/m2-pwa/commit/55b74730e64060c20072bf10f34d346964edc51f))
|
|
1554
1421
|
- **framer-next-pages:** implemented the FullPageShell for the remaining pages
|
|
1555
1422
|
([88386b4](https://github.com/ho-nl/m2-pwa/commit/88386b4652abb7765d6e755c7fb7a3cb6285a0e7))
|
|
@@ -1621,8 +1488,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1621
1488
|
([2db3b7a](https://github.com/ho-nl/m2-pwa/commit/2db3b7a646f45ac273679770715d23e3472e9d2c))
|
|
1622
1489
|
- new my account overview
|
|
1623
1490
|
([6de0761](https://github.com/ho-nl/m2-pwa/commit/6de0761c452e1ba5364345a168b400d90418b44e))
|
|
1624
|
-
- **next-ui:** SectionContainer/SectionHeader now accepts
|
|
1625
|
-
variantLeft/variantRight as prop
|
|
1491
|
+
- **next-ui:** SectionContainer/SectionHeader now accepts variantLeft/variantRight as prop
|
|
1626
1492
|
([a58f8f2](https://github.com/ho-nl/m2-pwa/commit/a58f8f2962e74c9aaa41142524d42d9c8f662b8d))
|
|
1627
1493
|
- next.js 11
|
|
1628
1494
|
([7d61407](https://github.com/ho-nl/m2-pwa/commit/7d614075a778f488045034f74be4f75b93f63c43))
|
|
@@ -1648,8 +1514,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
1648
1514
|
([a9131de](https://github.com/ho-nl/m2-pwa/commit/a9131dea19347db2985ee3864e460dfa8a3f2182))
|
|
1649
1515
|
- remove wrapper div from ScrollSnapSlider
|
|
1650
1516
|
([476add8](https://github.com/ho-nl/m2-pwa/commit/476add8db64811f2c7e3fc482487967cd7573cf6))
|
|
1651
|
-
- renamed all packages to use [@graphcommerce](https://github.com/graphcommerce)
|
|
1652
|
-
|
|
1517
|
+
- renamed all packages to use [@graphcommerce](https://github.com/graphcommerce) instead of
|
|
1518
|
+
[@reachdigital](https://github.com/reachdigital)
|
|
1653
1519
|
([491e4ce](https://github.com/ho-nl/m2-pwa/commit/491e4cec9a2686472dac36b79f999257c0811ffe))
|
|
1654
1520
|
- **reviews:** no reviews written message
|
|
1655
1521
|
([8ade3db](https://github.com/ho-nl/m2-pwa/commit/8ade3dbe830f5a59af09c002dfa38fa5349a4b61))
|
|
@@ -1790,8 +1656,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1790
1656
|
|
|
1791
1657
|
### Bug Fixes
|
|
1792
1658
|
|
|
1793
|
-
- **app-shell-header:** show fallbacktitle instead of back on back button when
|
|
1794
|
-
applicable
|
|
1659
|
+
- **app-shell-header:** show fallbacktitle instead of back on back button when applicable
|
|
1795
1660
|
([27d7d7d](https://github.com/ho-nl/m2-pwa/commit/27d7d7d716265c856cd64d3f485f0227f99c5cd0))
|
|
1796
1661
|
|
|
1797
1662
|
# [2.110.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.109.2...@graphcommerce/next-ui@2.110.0) (2021-08-27)
|