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