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