@graphcommerce/next-ui 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (153) hide show
  1. package/.babelrc +3 -0
  2. package/AnimatedRow/index.tsx +20 -0
  3. package/ApolloError/ApolloErrorAlert.tsx +59 -0
  4. package/ApolloError/ApolloErrorFullPage.tsx +25 -0
  5. package/AppShell/AppShellHeader/appShellHeaderContext.tsx +11 -0
  6. package/AppShell/AppShellHeader/index.tsx +433 -0
  7. package/AppShell/AppShellHeader/useAppShellHeaderContext.tsx +6 -0
  8. package/AppShell/AppShellProvider/index.tsx +18 -0
  9. package/AppShell/AppShellSticky/index.tsx +66 -0
  10. package/AppShell/AppShellTitle/index.tsx +45 -0
  11. package/AppShell/DesktopNavActions.tsx +28 -0
  12. package/AppShell/DesktopNavBar.tsx +110 -0
  13. package/AppShell/FixedFab.tsx +41 -0
  14. package/AppShell/ForwardButton.tsx +53 -0
  15. package/AppShell/FullPageShellBase.tsx +59 -0
  16. package/AppShell/Menu.tsx +7 -0
  17. package/AppShell/MenuFab.tsx +132 -0
  18. package/AppShell/MenuFabSecondaryItem.tsx +32 -0
  19. package/AppShell/MinimalPageShellBase.tsx +22 -0
  20. package/AppShell/PageShellHeader/index.tsx +14 -0
  21. package/AppShell/SheetShellBase/index.tsx +107 -0
  22. package/AppShell/SheetShellBase/useSheetStyles.ts +11 -0
  23. package/AppShell/SheetShellDragIndicator/index.tsx +48 -0
  24. package/AppShell/SheetShellHeader/index.tsx +28 -0
  25. package/AppShell/ShellBase.tsx +45 -0
  26. package/AppShell/useFabAnimation.tsx +19 -0
  27. package/AppShell/useFixedFabAnimation.tsx +18 -0
  28. package/AspectRatioContainer/index.tsx +27 -0
  29. package/Blog/BlogAuthor/index.tsx +60 -0
  30. package/Blog/BlogContent/index.tsx +24 -0
  31. package/Blog/BlogHeader/index.tsx +64 -0
  32. package/Blog/BlogList/index.tsx +27 -0
  33. package/Blog/BlogListItem/index.tsx +83 -0
  34. package/Blog/BlogTags/index.tsx +34 -0
  35. package/Blog/BlogTitle/index.tsx +29 -0
  36. package/Button/index.tsx +164 -0
  37. package/ButtonLink/index.tsx +45 -0
  38. package/CHANGELOG.md +1095 -0
  39. package/ChipMenu/index.tsx +130 -0
  40. package/ContainerWithHeader/index.tsx +49 -0
  41. package/Debug/DebugSpacer.tsx +51 -0
  42. package/FlagAvatar/index.tsx +28 -0
  43. package/Form/FormActions.tsx +15 -0
  44. package/Form/FormDivider.tsx +14 -0
  45. package/Form/FormHeader.tsx +27 -0
  46. package/Form/FormRow.tsx +14 -0
  47. package/Form/InputCheckmark.tsx +19 -0
  48. package/Form/index.tsx +62 -0
  49. package/FramerNextPagesSlider/Slide.tsx +71 -0
  50. package/FramerNextPagesSlider/Slider.tsx +39 -0
  51. package/FramerNextPagesSlider/index.ts +1 -0
  52. package/FramerNextPagesSlider/types.ts +3 -0
  53. package/FramerScroller/components/SidebarGallery.tsx +246 -0
  54. package/FramerScroller/components/SidebarSlider.tsx +103 -0
  55. package/FullPageMessage/index.tsx +68 -0
  56. package/Highlight/index.tsx +14 -0
  57. package/IconHeader/index.tsx +109 -0
  58. package/JsonLd/index.tsx +18 -0
  59. package/Page/App.tsx +15 -0
  60. package/Page/Document.tsx +23 -0
  61. package/Page/framerFeatures.ts +4 -0
  62. package/Page/types.ts +19 -0
  63. package/PageLoadIndicator/index.tsx +46 -0
  64. package/PageMeta/index.tsx +40 -0
  65. package/Pagination/index.tsx +123 -0
  66. package/RenderType/index.tsx +40 -0
  67. package/Row/ButtonLinkList/index.tsx +53 -0
  68. package/Row/ColumnOne/index.tsx +11 -0
  69. package/Row/ColumnOneBoxed/index.tsx +27 -0
  70. package/Row/ColumnOneCentered/index.tsx +22 -0
  71. package/Row/ColumnThree/index.tsx +66 -0
  72. package/Row/ColumnTwo/index.tsx +44 -0
  73. package/Row/ColumnTwoSpread/index.tsx +41 -0
  74. package/Row/ColumnTwoWithTop/index.tsx +53 -0
  75. package/Row/ContentLinks/index.tsx +48 -0
  76. package/Row/HeroBanner/index.tsx +102 -0
  77. package/Row/IconBlocks/IconBlock/index.tsx +56 -0
  78. package/Row/IconBlocks/index.tsx +57 -0
  79. package/Row/ParagraphWithSidebarSlide/index.tsx +114 -0
  80. package/Row/Quote/index.tsx +13 -0
  81. package/Row/RowImageText/index.tsx +67 -0
  82. package/Row/RowImageTextBoxed/index.tsx +75 -0
  83. package/Row/SpecialBanner/index.tsx +107 -0
  84. package/Row/index.tsx +13 -0
  85. package/SectionContainer/index.tsx +39 -0
  86. package/SectionHeader/index.tsx +69 -0
  87. package/Separator/index.tsx +33 -0
  88. package/Snackbar/ErrorSnackbar.tsx +9 -0
  89. package/Snackbar/MessageSnackbar.tsx +5 -0
  90. package/Snackbar/MessageSnackbarImpl.tsx +202 -0
  91. package/StarRatingField/index.tsx +58 -0
  92. package/Stepper/Stepper.tsx +45 -0
  93. package/StyledBadge/index.tsx +21 -0
  94. package/Styles/index.tsx +3 -0
  95. package/Styles/responsiveVal.tsx +20 -0
  96. package/SvgImage/SvgImageSimple.tsx +66 -0
  97. package/SvgImage/index.tsx +76 -0
  98. package/TextInputNumber/index.tsx +169 -0
  99. package/Theme/types.ts +63 -0
  100. package/TimeAgo/index.tsx +29 -0
  101. package/Title/index.tsx +71 -0
  102. package/ToggleButton/index.tsx +100 -0
  103. package/ToggleButtonGroup/index.tsx +112 -0
  104. package/UspList/UspListItem.tsx +46 -0
  105. package/UspList/index.tsx +32 -0
  106. package/icons/icon_addresses.svg +17 -0
  107. package/icons/icon_arrow_back.svg +1 -0
  108. package/icons/icon_arrow_forward.svg +1 -0
  109. package/icons/icon_box.svg +6 -0
  110. package/icons/icon_chat.svg +1 -0
  111. package/icons/icon_checkmark.svg +1 -0
  112. package/icons/icon_checkmark_green.svg +1 -0
  113. package/icons/icon_chevron_back.svg +8 -0
  114. package/icons/icon_chevron_down.svg +8 -0
  115. package/icons/icon_chevron_left.svg +8 -0
  116. package/icons/icon_chevron_right.svg +8 -0
  117. package/icons/icon_chevron_up.svg +8 -0
  118. package/icons/icon_close.svg +6 -0
  119. package/icons/icon_close_circle.svg +1 -0
  120. package/icons/icon_collapse_vertical.svg +11 -0
  121. package/icons/icon_customer_service.svg +6 -0
  122. package/icons/icon_email.svg +1 -0
  123. package/icons/icon_email_outline.svg +6 -0
  124. package/icons/icon_expand_vertical.svg +11 -0
  125. package/icons/icon_heart.svg +15 -0
  126. package/icons/icon_home.svg +6 -0
  127. package/icons/icon_id.svg +6 -0
  128. package/icons/icon_invoice_red.svg +7 -0
  129. package/icons/icon_location_red.svg +7 -0
  130. package/icons/icon_lock.svg +6 -0
  131. package/icons/icon_menu.svg +1 -0
  132. package/icons/icon_min.svg +1 -0
  133. package/icons/icon_newspaper.svg +6 -0
  134. package/icons/icon_party.svg +7 -0
  135. package/icons/icon_person.svg +6 -0
  136. package/icons/icon_person_alt.svg +6 -0
  137. package/icons/icon_person_alt_big.svg +15 -0
  138. package/icons/icon_phone.svg +1 -0
  139. package/icons/icon_plus.svg +1 -0
  140. package/icons/icon_sad_face.svg +11 -0
  141. package/icons/icon_sad_shoppingbag.svg +16 -0
  142. package/icons/icon_search.svg +1 -0
  143. package/icons/icon_shopping_bag.svg +7 -0
  144. package/icons/icon_shutdown.svg +6 -0
  145. package/icons/icon_star.svg +6 -0
  146. package/icons/icon_star_filled_muted.svg +6 -0
  147. package/icons/icon_star_yellow.svg +6 -0
  148. package/icons/index.tsx +42 -0
  149. package/index.ts +163 -0
  150. package/package.json +61 -0
  151. package/tsconfig.json +5 -0
  152. package/types.d.ts +13 -0
  153. package/useIntersectionObserver/index.tsx +31 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1095 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [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)
7
+
8
+ **Note:** Version bump only for package @graphcommerce/next-ui
9
+
10
+
11
+
12
+
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
19
+ # 3.0.0 (2021-09-27)
20
+
21
+ ### Bug Fixes
22
+
23
+ - account flow (wip)
24
+ ([0e75aeb](https://github.com/ho-nl/m2-pwa/commit/0e75aebcab3043f9dcd7fd095f9c46cb25d40d57))
25
+ - account tweaks
26
+ ([26ca295](https://github.com/ho-nl/m2-pwa/commit/26ca2955fe7a3ed509aaa7df98cbb4854d636179))
27
+ - accuratately calculate the target x-position after drag ends
28
+ ([817a505](https://github.com/ho-nl/m2-pwa/commit/817a505a78165c7a97fa7e59fc24bb625b810940))
29
+ - add blogTags fragment
30
+ ([8ab1ee8](https://github.com/ho-nl/m2-pwa/commit/8ab1ee874fa0174b15f2df5108cdca03599f1ef5))
31
+ - add configurable product to cart
32
+ ([5b0f6fe](https://github.com/ho-nl/m2-pwa/commit/5b0f6fee6a59ff0b228c47bb124378cd23047adf))
33
+ - add styling for subtitle1
34
+ ([3b18e36](https://github.com/ho-nl/m2-pwa/commit/3b18e36e66d7c7406585a930723fa4f152763a26))
35
+ - add types
36
+ ([18dac42](https://github.com/ho-nl/m2-pwa/commit/18dac421042e4050407987b33eae0bf33e2f6e12))
37
+ - adjust header height
38
+ ([d22310d](https://github.com/ho-nl/m2-pwa/commit/d22310dca282208c6d7020c6c27f8ba5be980e3c))
39
+ - all disabled buttons have white text
40
+ ([358114d](https://github.com/ho-nl/m2-pwa/commit/358114ddff5d7ffa51c30f6a6e7787e88d5e4c5c))
41
+ - app shell consistency
42
+ ([e062c3d](https://github.com/ho-nl/m2-pwa/commit/e062c3d4af75c6bfe1ad7056dfb172277f1b01cb))
43
+ - app shell consistency wip
44
+ ([be995ca](https://github.com/ho-nl/m2-pwa/commit/be995ca5c3e383b89fea3759186d53af4790e99b))
45
+ - app shell fixes
46
+ ([1b13d0d](https://github.com/ho-nl/m2-pwa/commit/1b13d0d0d4b480ddc9712b4d298af2d81fb2b1d4))
47
+ - app shell fixes
48
+ ([c3bddee](https://github.com/ho-nl/m2-pwa/commit/c3bddee6b878cd9d2183c4938df0824a6eca4f36))
49
+ - app shell header scroll spacings
50
+ ([b1f5706](https://github.com/ho-nl/m2-pwa/commit/b1f570697bb0a9207129c9d24623b6069cf38ab5))
51
+ - app shell sticky overlapping buttons on scroll
52
+ ([7548b30](https://github.com/ho-nl/m2-pwa/commit/7548b30718290d976f4839f0096fea432f9a6b45))
53
+ - app shell tests
54
+ ([10b58bd](https://github.com/ho-nl/m2-pwa/commit/10b58bd1a0271ef5d90a51394a9efd194b285ed0))
55
+ - **app-shell-header:** hide divider
56
+ ([34d183e](https://github.com/ho-nl/m2-pwa/commit/34d183e7ee13c3e6d76bc211d44398cb7e492d67))
57
+ - **app-shell-header:** offset not always correctly set
58
+ ([11a8907](https://github.com/ho-nl/m2-pwa/commit/11a890764be1ab4f6c584a5c8ca4e6620d0d73e5))
59
+ - **app-shell-header:** show fallbacktitle instead of back on back button when
60
+ applicable
61
+ ([27d7d7d](https://github.com/ho-nl/m2-pwa/commit/27d7d7d716265c856cd64d3f485f0227f99c5cd0))
62
+ - **app-shell-header:** title offset top not correctly set
63
+ ([c144309](https://github.com/ho-nl/m2-pwa/commit/c1443095317c1779074f3a4058f4041159c8e31b))
64
+ - **app-shell:** pages after app shell changes
65
+ ([fb74510](https://github.com/ho-nl/m2-pwa/commit/fb74510121f6124009db72ad2ddebf6459c52a85))
66
+ - automatically set SliderImage to the size of the container
67
+ ([d5a71bf](https://github.com/ho-nl/m2-pwa/commit/d5a71bf687a43d001aa172e58c9b582c3f2f3093))
68
+ - back button behavior
69
+ ([59f7b20](https://github.com/ho-nl/m2-pwa/commit/59f7b2047194c3506037fc88d791302c7c4a1a69))
70
+ - back button on service pages
71
+ ([d89f200](https://github.com/ho-nl/m2-pwa/commit/d89f2003cabdb780819a848d4ca7754c708b3895))
72
+ - backdrop click, prevent going back to many times
73
+ ([08b2c28](https://github.com/ho-nl/m2-pwa/commit/08b2c2846b9cae9f51d680af0d15b547eea43050))
74
+ - bad setState when render is in a loop
75
+ ([fc5223b](https://github.com/ho-nl/m2-pwa/commit/fc5223b27ccc9632c1fd229444d88997842cc04c))
76
+ - bad state update fix, drag animation improvements
77
+ ([fecdb6e](https://github.com/ho-nl/m2-pwa/commit/fecdb6efc87f6defe97b59689bb7ee808173bcf8))
78
+ - base mechanics on page relations
79
+ ([345a682](https://github.com/ho-nl/m2-pwa/commit/345a68274dc7bc7f561a963d29fd9cd96907d4d1))
80
+ - big icon header icon on mobile
81
+ ([3596d96](https://github.com/ho-nl/m2-pwa/commit/3596d96283a60b31228a5c3941c78404cf68308a))
82
+ - big indicator on mobile
83
+ ([2204f9d](https://github.com/ho-nl/m2-pwa/commit/2204f9d219e79af29acdd2db643df06184ae3af5))
84
+ - blue back button
85
+ ([0f134ff](https://github.com/ho-nl/m2-pwa/commit/0f134ffb249e3d7e4885244a6f79b7c4728f7f1b))
86
+ - blurry svgimage
87
+ ([02d1616](https://github.com/ho-nl/m2-pwa/commit/02d16163a79734e6aaa5ca6d3d77c643e69ca459))
88
+ - Button font weight styling
89
+ ([e9c3265](https://github.com/ho-nl/m2-pwa/commit/e9c3265755ce5c6344d7aa534786fbf6687d1856))
90
+ - **button:** pill link not visible on mobile
91
+ ([c4474f5](https://github.com/ho-nl/m2-pwa/commit/c4474f5cfe4dbb6b9aa795d7d175dbce053720d8))
92
+ - buttons reporting errors all over the place
93
+ ([0fa9099](https://github.com/ho-nl/m2-pwa/commit/0fa9099671659094f990449d3286e5216fce6a51))
94
+ - cannot export svg icons build error
95
+ ([b326e5b](https://github.com/ho-nl/m2-pwa/commit/b326e5b312cedfc8a531d0e12d60035e94b33ae6))
96
+ - canonical urls
97
+ ([9ff8d3f](https://github.com/ho-nl/m2-pwa/commit/9ff8d3f950098fb28440f31f5dd93a835dce0bda))
98
+ - caption styles bugs
99
+ ([f223918](https://github.com/ho-nl/m2-pwa/commit/f223918cc557a996b5f321fbf6910b4981646dcb))
100
+ - cart fab box shadow animation
101
+ ([4c73e42](https://github.com/ho-nl/m2-pwa/commit/4c73e423a920f6485f72b24141cccda010a35ab7))
102
+ - cart item image sizes
103
+ ([e7c860c](https://github.com/ho-nl/m2-pwa/commit/e7c860c785e172b9275e1a00c8b51509d6b297a8))
104
+ - cart styling
105
+ ([56feeee](https://github.com/ho-nl/m2-pwa/commit/56feeeeb85657d8abfec1e9613f12bf9d54686b5))
106
+ - center overlay ui reaching the bottom
107
+ ([e9c53e6](https://github.com/ho-nl/m2-pwa/commit/e9c53e6147daa6ba39cd938f2139fd6c569e3871))
108
+ - chevron icon consistency
109
+ ([858725c](https://github.com/ho-nl/m2-pwa/commit/858725c56761d2aa721761f1c089fd70051845a5))
110
+ - **chip-menu:** layout shift on open
111
+ ([c65cf5b](https://github.com/ho-nl/m2-pwa/commit/c65cf5bc18864b5180aba3f2361399bd85967952))
112
+ - chipmenu styling
113
+ ([dcdbbcc](https://github.com/ho-nl/m2-pwa/commit/dcdbbccceb2226de5067b14414f3d4ff5e016a5b))
114
+ - close overlay using esc key
115
+ ([c74940f](https://github.com/ho-nl/m2-pwa/commit/c74940f7c44405ff958ec3e9ceb3f998d98ce35d))
116
+ - compact text input number
117
+ ([8999053](https://github.com/ho-nl/m2-pwa/commit/899905364808d6ea6ef257e948c68dc3851717a6))
118
+ - component for returning flag avatars
119
+ ([38e181f](https://github.com/ho-nl/m2-pwa/commit/38e181f9767aac3d7bfc1d3d6a6c665e57868fe7))
120
+ - contained prop throws error on Form
121
+ ([2eb6651](https://github.com/ho-nl/m2-pwa/commit/2eb6651e2c26274adbf08562918d3f1a9659cbe8))
122
+ - container shouldn’t overflow, should be handled by specific implementation
123
+ ([7d53f83](https://github.com/ho-nl/m2-pwa/commit/7d53f83261e384d92fc1d365b8e8e0e45f2da04d))
124
+ - **conten-header:** remove back button box shadow on mobile
125
+ ([652c778](https://github.com/ho-nl/m2-pwa/commit/652c77826b7765acc9d450ffcfe4a2b3052b80da))
126
+ - content header title typography
127
+ ([1eb2dc9](https://github.com/ho-nl/m2-pwa/commit/1eb2dc94f191f3fb29a470b06a21b1c3bab7744b))
128
+ - **content-header:** icon sizes
129
+ ([a037ec3](https://github.com/ho-nl/m2-pwa/commit/a037ec3dc3c87d54bb8aea0d2d6b78c05d9afc63))
130
+ - contentLinks full page width
131
+ ([2d61eed](https://github.com/ho-nl/m2-pwa/commit/2d61eed6683dfa6ac2446b80a1a18d7a3f1c89a8))
132
+ - correct backbutton hover background color
133
+ ([ff90c12](https://github.com/ho-nl/m2-pwa/commit/ff90c12533c014a9962ce4674763444f1bc117fb))
134
+ - correct pdp swatch selected color
135
+ ([d3c9285](https://github.com/ho-nl/m2-pwa/commit/d3c9285fb1ba3a0b99ba52a04b0dda3b5870dede))
136
+ - **country-switcher:** navigate back to correct locale
137
+ ([579d146](https://github.com/ho-nl/m2-pwa/commit/579d146e1b658a343b1514d8e8a45c01a507c084))
138
+ - disable menuscrolllock
139
+ ([f715fca](https://github.com/ho-nl/m2-pwa/commit/f715fca590ee18329908eb595685fd0f1f163450))
140
+ - disappearing asset with zIndex -1
141
+ ([44956e5](https://github.com/ho-nl/m2-pwa/commit/44956e5d0b57a62322033395d378d0e4788454b1))
142
+ - do not hide the overflow for sliders by default
143
+ ([1bc3ffa](https://github.com/ho-nl/m2-pwa/commit/1bc3ffa69e8b5fa812c9c82f1d65e9ae54adbff8))
144
+ - do not use ToggleButtonGroup, only use the ToggleButton
145
+ ([5172f70](https://github.com/ho-nl/m2-pwa/commit/5172f709ee26122b0a8700afb4325f23cb9ba9b9))
146
+ - downgrade to resize-observer 6
147
+ ([32c412c](https://github.com/ho-nl/m2-pwa/commit/32c412c77c2c7b5a5b5b889963c254ff379b018b))
148
+ - drag handle rotation
149
+ ([b1b0dcb](https://github.com/ho-nl/m2-pwa/commit/b1b0dcbfa822fdbae621e9ff121186ec97a65876))
150
+ - drawer content overlaps with title
151
+ ([6f37f50](https://github.com/ho-nl/m2-pwa/commit/6f37f50a6d82e17060cc347491d30d92544afe79))
152
+ - drawer stacking issues
153
+ ([bd5a97d](https://github.com/ho-nl/m2-pwa/commit/bd5a97dd38c6e0f68aa24ee897be3f4a7e22e966))
154
+ - duplicate key error when multiple errors of the same error occur
155
+ ([f2c5bc0](https://github.com/ho-nl/m2-pwa/commit/f2c5bc040c1e9cc1340f67c68460b8fe42230659))
156
+ - duplicated (meta) tags in document head
157
+ ([d52e962](https://github.com/ho-nl/m2-pwa/commit/d52e9629036ccab1f266ddd01600a0bd45930149))
158
+ - enable early exit / enter for SheetShellBase
159
+ ([e8630d2](https://github.com/ho-nl/m2-pwa/commit/e8630d2e74d8754bc3ce55c910e3641a497a2b58))
160
+ - filter labels fully shown
161
+ ([f96d1c9](https://github.com/ho-nl/m2-pwa/commit/f96d1c92c34562474d72277e87622e4b5cd1d70d))
162
+ - fix pagination didn’t show next when not available
163
+ ([58b9fb1](https://github.com/ho-nl/m2-pwa/commit/58b9fb114d2d8b4991c66c6dda0fced42614945c))
164
+ - footer spacing missing
165
+ ([6198665](https://github.com/ho-nl/m2-pwa/commit/61986653411dda9cb70ea15dd2d74ef1d48c2721))
166
+ - **Form:** forms always have background
167
+ ([1f3fa1e](https://github.com/ho-nl/m2-pwa/commit/1f3fa1e53a997b88512335dc344bff3fa24f6bc6))
168
+ - forward ref not used IconBlocks
169
+ ([7af4df3](https://github.com/ho-nl/m2-pwa/commit/7af4df3b03cba0a7748614e1db49d86e8157b75f))
170
+ - forwardRef issue
171
+ ([6bcf15f](https://github.com/ho-nl/m2-pwa/commit/6bcf15f5a4ee7b684ebe57a714340fa4fc416542))
172
+ - **framer-next-page:** usePageRouter in SharedLayout
173
+ ([c2fb164](https://github.com/ho-nl/m2-pwa/commit/c2fb164b342770089b787378a3f79529c36d2152))
174
+ - **framer-scroller:** center the prev/next buttons on the gallery
175
+ ([234dc37](https://github.com/ho-nl/m2-pwa/commit/234dc37fc46f723410e9a844bbcb33cfe5d8a588))
176
+ - **framer-sheet:** bottom sheet does not resize properly
177
+ ([2ae89db](https://github.com/ho-nl/m2-pwa/commit/2ae89dbd651acba10f40ac68956213dd744e2247))
178
+ - **framer-slider:** prev/next buttons don't always show up correctly
179
+ ([ba2510e](https://github.com/ho-nl/m2-pwa/commit/ba2510ea659344a2d71957eed396f4e5ce536a8c))
180
+ - **FramerSlider:** handle layout transitions + paddings on the container
181
+ ([ed8d0fa](https://github.com/ho-nl/m2-pwa/commit/ed8d0fa44e13e496ab4489249234efe527883f36))
182
+ - **full-page-shell:** fabs not clickable
183
+ ([2c8d7f9](https://github.com/ho-nl/m2-pwa/commit/2c8d7f9529e83ac08d4fd758547379b72eb2f3d1))
184
+ - **GCOM-430:** only show scrollbar if there is content to scroll
185
+ ([a67ebfd](https://github.com/ho-nl/m2-pwa/commit/a67ebfd515672b5ef6b74dc902871765494f01db))
186
+ - grid blowout on homepage
187
+ ([8c0e225](https://github.com/ho-nl/m2-pwa/commit/8c0e225a629841e4a391a1edbc0614fc30789ba6))
188
+ - header app shell margin bottom in some circumstances
189
+ ([6030ba7](https://github.com/ho-nl/m2-pwa/commit/6030ba7d07619d0b877a9f557c3e14676c326c7a))
190
+ - header fab icons size
191
+ ([772a721](https://github.com/ho-nl/m2-pwa/commit/772a7213a7ee8274ed006fcd6b6fb5123630a771))
192
+ - header spacing
193
+ ([967573a](https://github.com/ho-nl/m2-pwa/commit/967573a12f3651f2be47e4630dab737ccf8bf498))
194
+ - header spacings
195
+ ([f00462f](https://github.com/ho-nl/m2-pwa/commit/f00462f9abb61a54552c96dbed35ef708fe05608))
196
+ - hero banner not full page width
197
+ ([0ecd014](https://github.com/ho-nl/m2-pwa/commit/0ecd0145a98045eccfde6efe6a4410e83b6fb872))
198
+ - hide prev/next buttons
199
+ ([4ad733b](https://github.com/ho-nl/m2-pwa/commit/4ad733b7109bec257ec19b049ffd8f476f23dfd4))
200
+ - icon alignments & sizes
201
+ ([3b349c9](https://github.com/ho-nl/m2-pwa/commit/3b349c96f08f25cad892cf224ee76e937fb338b8))
202
+ - icon size & shadows
203
+ ([b253e11](https://github.com/ho-nl/m2-pwa/commit/b253e1168e6a47362014038a2d1c6ca9fc4259b2))
204
+ - icon title correct heading
205
+ ([ee7b0b4](https://github.com/ho-nl/m2-pwa/commit/ee7b0b4ce85625673126c4aefd2b8012791a0370))
206
+ - **icon-header:** optional no margin prop
207
+ ([4b189a1](https://github.com/ho-nl/m2-pwa/commit/4b189a12a543825a2036a12a7c06f40f2dd033ba))
208
+ - ignore md files from triggering version updates
209
+ ([4f98392](https://github.com/ho-nl/m2-pwa/commit/4f9839250b3a32d3070da5290e5efcc5e2243fba))
210
+ - image height in grid
211
+ ([e95fe1a](https://github.com/ho-nl/m2-pwa/commit/e95fe1a613e2047ca9aae54ea413c592eba19bf3))
212
+ - image height on blog view
213
+ ([2f8aaa3](https://github.com/ho-nl/m2-pwa/commit/2f8aaa32af3d4d8c4e3412c3b4dcab5485a0504f))
214
+ - **image:** component would rerender unnessarily
215
+ ([bfc041d](https://github.com/ho-nl/m2-pwa/commit/bfc041d39e34faf60581dbdba7a15a32928368b3))
216
+ - **image:** fix build
217
+ ([b730cb6](https://github.com/ho-nl/m2-pwa/commit/b730cb6ae4e50dcf2f60e2046d6acf3047caacb3))
218
+ - **image:** make sure unoptimized images are preloaded correctly and remove
219
+ preloads from lots of images
220
+ ([fb2b4fc](https://github.com/ho-nl/m2-pwa/commit/fb2b4fcb5336ff880a9b32775847d7b6738ba1ea))
221
+ - implement next-ui barrel imports
222
+ ([75bea70](https://github.com/ho-nl/m2-pwa/commit/75bea703dba898f18a2a1dfa3243ebd0a4e6f0e1))
223
+ - index page video and image overlay fix
224
+ ([53c9d70](https://github.com/ho-nl/m2-pwa/commit/53c9d70bae1229c44f6a45730abe47482d0b9ac2))
225
+ - input checkmarks
226
+ ([279c1c1](https://github.com/ho-nl/m2-pwa/commit/279c1c112ada46fdea102024298e8293d1a23293))
227
+ - introduced SvgImageSimple and solve issue with review chips
228
+ ([931d7fd](https://github.com/ho-nl/m2-pwa/commit/931d7fdcf0faa9d2264899b72e564138215b6bd8))
229
+ - janky animation for last block on homepage
230
+ ([a572986](https://github.com/ho-nl/m2-pwa/commit/a572986d87ee450badf96ef6608f75f30f71ed5b))
231
+ - labelInnerContainer sectionHeader overwrite
232
+ ([293f97b](https://github.com/ho-nl/m2-pwa/commit/293f97bf86f43aa6b7807ef96eec0c1826b8438a))
233
+ - layout of home
234
+ ([e2dcacf](https://github.com/ho-nl/m2-pwa/commit/e2dcacf6758a8149346e65e00ef1039cde536db4))
235
+ - localized routes didn’t have the correct transition
236
+ ([ab11c92](https://github.com/ho-nl/m2-pwa/commit/ab11c92c694e1c7330ffd520f8181a3ee2f82287))
237
+ - lower image quality for 3g
238
+ ([be1c7fe](https://github.com/ho-nl/m2-pwa/commit/be1c7fe75d8e2c8e40acad7865b70e45ce5ad5df))
239
+ - make fonts more default
240
+ ([cba1d90](https://github.com/ho-nl/m2-pwa/commit/cba1d90578db33d3458c126bf4932312eed05271))
241
+ - make sense of spacings for mobile navigation
242
+ ([bd42c97](https://github.com/ho-nl/m2-pwa/commit/bd42c973753cd3e09ae8599bfef677979bae21f6))
243
+ - make sure sessionVar isn’t throwing a ts error
244
+ ([a7ae141](https://github.com/ho-nl/m2-pwa/commit/a7ae141f5908dfad0c1a75b47350e2b3a4e364a1))
245
+ - make sure the apollo.config.js works as expected
246
+ ([3c417fa](https://github.com/ho-nl/m2-pwa/commit/3c417fae82bc5db25f482b4092b13db5609b7431))
247
+ - make sure the component is still mounted for PictureResponsive
248
+ ([6bebcd3](https://github.com/ho-nl/m2-pwa/commit/6bebcd37ff05397c2da6a2be1babc3ae3c17051a))
249
+ - make sure the ExpandableGallery is always on top
250
+ ([06de050](https://github.com/ho-nl/m2-pwa/commit/06de0501ec3880fa62c702f328b7ffe8cfccb761))
251
+ - make sure the first resize also works properly
252
+ ([41105c3](https://github.com/ho-nl/m2-pwa/commit/41105c3d0eee92690526f256821384c7e21f46b3))
253
+ - make sure the image is sized correctly
254
+ ([096f1bf](https://github.com/ho-nl/m2-pwa/commit/096f1bf354001d80d45b50010a114832adf9701a))
255
+ - make sure the image scales correctly
256
+ ([595321b](https://github.com/ho-nl/m2-pwa/commit/595321b3c20f26ff94c59d42854e3a724b80c3eb))
257
+ - make sure the ToggleButton doesn’t change it’s border width when disabled
258
+ ([bfd017f](https://github.com/ho-nl/m2-pwa/commit/bfd017f2d4212941c258565059a302596fec5bcf))
259
+ - make sure useMutationFormPersist only save diffs
260
+ ([d50a796](https://github.com/ho-nl/m2-pwa/commit/d50a7960950923f6309eed2624442f158ece5870))
261
+ - make sure we can drag any clickable element
262
+ ([25e3b72](https://github.com/ho-nl/m2-pwa/commit/25e3b72c4386a91f960f333f1a2f9d36fb80ed60))
263
+ - make sure we disable the animating property on ExpandableGallery
264
+ ([197e6df](https://github.com/ho-nl/m2-pwa/commit/197e6df9762f26138ac2cab03e9741babd4cb93f))
265
+ - make sure we preload the right image for moto 3g
266
+ ([55aa6c2](https://github.com/ho-nl/m2-pwa/commit/55aa6c2358db86199d83235a78af8bc295d83a6f))
267
+ - make sure we remove the scrollbar only when the animation completes
268
+ ([aa629e0](https://github.com/ho-nl/m2-pwa/commit/aa629e06b7b13e4cd85332cd6dcfbe8ae973a7f5))
269
+ - make sure we render the simplest possible image dependening on the src
270
+ ([84b322d](https://github.com/ho-nl/m2-pwa/commit/84b322dca776fa80d9e5780b0965006dc0ec4f84))
271
+ - make the SingleItemSlider working
272
+ ([aa1e4b3](https://github.com/ho-nl/m2-pwa/commit/aa1e4b3b7cd35589b2c8c776c99526eefc6ce7e5))
273
+ - **message-snackbar:** close on action click
274
+ ([146c232](https://github.com/ho-nl/m2-pwa/commit/146c232a3a0e78b2be68631b0461e7b4699b99e1))
275
+ - minor fixes
276
+ ([9b7cb41](https://github.com/ho-nl/m2-pwa/commit/9b7cb410659a70042a86b00e89c1dd3b2fe0ff43))
277
+ - missing alt tag
278
+ ([bcdee67](https://github.com/ho-nl/m2-pwa/commit/bcdee67b1b4d36530af54b13ba991edc27464b61))
279
+ - my account mobile view
280
+ ([1fc48e0](https://github.com/ho-nl/m2-pwa/commit/1fc48e0ff7470f5904492619d96315db19dcc42b))
281
+ - narrow quote on mobile
282
+ ([e06ccc2](https://github.com/ho-nl/m2-pwa/commit/e06ccc25048124431dcdb786f1719f688a5e429c))
283
+ - **next-ui:** remove decoding=async from images, causes flash when upgrading
284
+ image
285
+ ([7719072](https://github.com/ho-nl/m2-pwa/commit/7719072c020390b9b921657527efb1f838e95775))
286
+ - **next-ui:** toggle button stylign
287
+ ([c806d35](https://github.com/ho-nl/m2-pwa/commit/c806d358aed030c54d568275ee497f8cb9b01359))
288
+ - **next-ui:** ToggleButton throws because ‘selected’ can’t be passed to Button
289
+ ([dccedc6](https://github.com/ho-nl/m2-pwa/commit/dccedc68d43385d2f93ef972c65fb8169574b6e4))
290
+ - no search results message
291
+ ([2ecd6e3](https://github.com/ho-nl/m2-pwa/commit/2ecd6e36481e546dc78acfb46dfff08dcfdd8e6a))
292
+ - only cart should be fixed on scroll
293
+ ([9c8f536](https://github.com/ho-nl/m2-pwa/commit/9c8f5366c53798b377dcf397822b0945774b1dce))
294
+ - page keeps reloading after each change in @graphcommerce/next-ui
295
+ ([45ff0f5](https://github.com/ho-nl/m2-pwa/commit/45ff0f51d87e2100faefad93d5d224a8761e6e75))
296
+ - pagination markup
297
+ ([0ab7707](https://github.com/ho-nl/m2-pwa/commit/0ab7707aa4cbf49c5df1da3e806641a840ec2aff))
298
+ - pagination showed wrong chevron
299
+ ([8b0d027](https://github.com/ho-nl/m2-pwa/commit/8b0d027cc2a59dfed6e144c9bcb28b1258e2aa08))
300
+ - prevent variable imagesizes
301
+ ([c707bc7](https://github.com/ho-nl/m2-pwa/commit/c707bc7dcabb26982a7f9a621ff9fbb5515c05cf))
302
+ - primary button height
303
+ ([741279e](https://github.com/ho-nl/m2-pwa/commit/741279e1c92845f067af5ad63adec04b05936fcc))
304
+ - prop types
305
+ ([caccb1a](https://github.com/ho-nl/m2-pwa/commit/caccb1ab4c459642b64498dde22c372fd890f0c7))
306
+ - pwa theme color
307
+ ([6f51e58](https://github.com/ho-nl/m2-pwa/commit/6f51e586519b1b1e58ee13ed7d3255a26e1e0734))
308
+ - quantity value not shown in cart item
309
+ ([d6421aa](https://github.com/ho-nl/m2-pwa/commit/d6421aa5383e095a5c1615595b28b5341238d1ce))
310
+ - quantity value not shown in cart items
311
+ ([013f58c](https://github.com/ho-nl/m2-pwa/commit/013f58cde1e5cc3f7131e5d87f51fdb37d51f784))
312
+ - react-hook-form watch with react-fast-refresh
313
+ ([5d7dfc9](https://github.com/ho-nl/m2-pwa/commit/5d7dfc9ae394d2d2dca3c78d037337ce454edc00))
314
+ - **react-hook-form:** handle ComposedForm network errors
315
+ ([e028ae0](https://github.com/ho-nl/m2-pwa/commit/e028ae06f49fea5d4e4dbdf58f803b365c902404))
316
+ - really fix variable imagesizes
317
+ ([0312ab1](https://github.com/ho-nl/m2-pwa/commit/0312ab18bc2aa32a2ba21da44a064d03bf1b0f04))
318
+ - ref couldn't be forwarded for ShippingAddressForm
319
+ ([1f90f1a](https://github.com/ho-nl/m2-pwa/commit/1f90f1a30437d656fcf841026ad13bb2b45d831b))
320
+ - relative time format
321
+ ([64b9bc5](https://github.com/ho-nl/m2-pwa/commit/64b9bc54c7bc2792bb32560eec20ed138f04b147))
322
+ - remove breaking/unused import
323
+ ([cafd73a](https://github.com/ho-nl/m2-pwa/commit/cafd73ab0e2170b7e7783a30c5e2a87c06de8f46))
324
+ - remove canonical metatag when no canonical is given
325
+ ([167b7f0](https://github.com/ho-nl/m2-pwa/commit/167b7f080f98a10ff35cbd760b24b8198aac6518))
326
+ - remove component specific Row
327
+ ([fcad430](https://github.com/ho-nl/m2-pwa/commit/fcad430ba01b215e77abb2c1ae01071a8ea1ec55))
328
+ - remove component specific Rows
329
+ ([ed60655](https://github.com/ho-nl/m2-pwa/commit/ed60655ffca8e4578cf2627bf0a9428fd9a79337))
330
+ - remove conflicting files
331
+ ([0c17ae4](https://github.com/ho-nl/m2-pwa/commit/0c17ae46be62b775ac83b35f11c532ce2d9401a3))
332
+ - remove max width from containers
333
+ ([afff6f3](https://github.com/ho-nl/m2-pwa/commit/afff6f30c0544fff72b81cbcdd4e3acbb6a52b49))
334
+ - remove run up and run down from textinputnumber
335
+ ([1a30341](https://github.com/ho-nl/m2-pwa/commit/1a30341fcb03b1d7c7963df91045cadd6f235e1b))
336
+ - removed unnecessary pixelsize prop
337
+ ([4921fa0](https://github.com/ho-nl/m2-pwa/commit/4921fa09c20cd7ebb8fd82c66e687cd6f6c380e9))
338
+ - rename NextButton to Button, change imports
339
+ ([976adb0](https://github.com/ho-nl/m2-pwa/commit/976adb0bf906310d1efce888dcc9be1e28ce0f1b))
340
+ - replace captionOldOld with overline
341
+ ([c19bc8a](https://github.com/ho-nl/m2-pwa/commit/c19bc8aee829432a8c72d0d4bc9d266110af65ab))
342
+ - **review:** make sure chip is rendered correctly
343
+ ([387df34](https://github.com/ho-nl/m2-pwa/commit/387df3456973290f9ce98d47823a7c71a6d95850))
344
+ - ripple effect icon blocks
345
+ ([7b6a833](https://github.com/ho-nl/m2-pwa/commit/7b6a8332145e179cba6024f83166e8be494e81ed))
346
+ - scrollbar layout shift when using layered nav
347
+ ([f51f285](https://github.com/ho-nl/m2-pwa/commit/f51f28572e1f0116ef46869bd3eb988585e0d5b9))
348
+ - search page white background
349
+ ([8676bfa](https://github.com/ho-nl/m2-pwa/commit/8676bfa30273b4d5f41b708b2ac45474d2e31e65))
350
+ - **search-page:** hide menu and cart fabs when opened virtual keyboard mobile
351
+ ([e728768](https://github.com/ho-nl/m2-pwa/commit/e7287680545f33079d0af47df1c6ea519b208978))
352
+ - set the height of the sliderimage
353
+ ([9a118a0](https://github.com/ho-nl/m2-pwa/commit/9a118a08092592ed098deebb35e6d28fce071495))
354
+ - **sheet-shell-header:** adjust mobile height
355
+ ([c4310ff](https://github.com/ho-nl/m2-pwa/commit/c4310fff4314aa0121906aa4694af32f77ff12c8))
356
+ - SheetPrimaryAction doesn’t accept a ref
357
+ ([d4b4ae2](https://github.com/ho-nl/m2-pwa/commit/d4b4ae2721144ece22180dfe10bde0b0437f2454))
358
+ - show prev/next buttons only when necessary
359
+ ([f97cbe3](https://github.com/ho-nl/m2-pwa/commit/f97cbe3a01cf2593d3a94596f13e977831b79b76))
360
+ - sidebar gallery width
361
+ ([7185850](https://github.com/ho-nl/m2-pwa/commit/71858500d5b62e1d2130d236247fc06fd80649f9))
362
+ - since all links are of next/link we need to add passHref for custom components
363
+ ([16fb931](https://github.com/ho-nl/m2-pwa/commit/16fb93100d367203ea79bb4f93357221253f2ecd))
364
+ - small icon size was too large
365
+ ([61a4bc7](https://github.com/ho-nl/m2-pwa/commit/61a4bc72ad88a5df764d100a78ba26635c35e035))
366
+ - solve page refresh issue
367
+ ([08086d9](https://github.com/ho-nl/m2-pwa/commit/08086d9dede3c3c78d8f7a674628e14b08667995))
368
+ - spacing consistency between app shells
369
+ ([c57ad81](https://github.com/ho-nl/m2-pwa/commit/c57ad81a1784ca6737ccfa0d7d33c3a5d19d1654))
370
+ - spacing on message snackbar
371
+ ([0899321](https://github.com/ho-nl/m2-pwa/commit/0899321a3ea74a2d4c714e2dbe17c785a07dfc11))
372
+ - spacings
373
+ ([332954f](https://github.com/ho-nl/m2-pwa/commit/332954f92f62ff57391192242fb95e26c6de1aae))
374
+ - spacings
375
+ ([9aab8fb](https://github.com/ho-nl/m2-pwa/commit/9aab8fbdec6afb9ff06f2c66ef00bf0050192b05))
376
+ - star rating styling
377
+ ([0a484d9](https://github.com/ho-nl/m2-pwa/commit/0a484d99e91aa3dbb531344c8d01c11ce3f09244))
378
+ - style for snackbar on smaller resolution
379
+ ([b53473f](https://github.com/ho-nl/m2-pwa/commit/b53473fc5e0aac5819d2c51882a260d108255af9))
380
+ - SvgSimpleImage sizing didn't use rem
381
+ ([1ba07a5](https://github.com/ho-nl/m2-pwa/commit/1ba07a5694bd60ad3cee2e8102814643d2a7c79d))
382
+ - tags styling
383
+ ([1a4bcf2](https://github.com/ho-nl/m2-pwa/commit/1a4bcf2e339647cc93120ea9f951253a4e138142))
384
+ - title offset
385
+ ([2fef3ea](https://github.com/ho-nl/m2-pwa/commit/2fef3ea10ad98467062d4de397b40a83a86d7102))
386
+ - transparent filters on hover
387
+ ([9ca0b71](https://github.com/ho-nl/m2-pwa/commit/9ca0b71928ea34d55c75fce760f29600ec171a43))
388
+ - unresponsive back button
389
+ ([91d66d7](https://github.com/ho-nl/m2-pwa/commit/91d66d762281ef9e9ffe800bb68530073a3d76f1))
390
+ - use CSS grid to align pagination
391
+ ([b9eea01](https://github.com/ho-nl/m2-pwa/commit/b9eea01f842f82189e61f3ac75b6096c2eb2c32b))
392
+ - use semantically correct components for menufab
393
+ ([0196b29](https://github.com/ho-nl/m2-pwa/commit/0196b29523b3f49294dde32d96b348d100de5fa8))
394
+ - use SvgImageSimple for multiple areas
395
+ ([bf851a6](https://github.com/ho-nl/m2-pwa/commit/bf851a6740e1956a78f457c2d90904ee2f65da2f))
396
+ - useMutationForm can handle hard GraphQL errors (fields missing etc.)
397
+ ([e6e6f78](https://github.com/ho-nl/m2-pwa/commit/e6e6f7843a3b88a31c858c160262dc2f072209b9))
398
+ - using dynamic values in filter row & behaviour bugfixes with ‘too long filter
399
+ row’
400
+ ([ffdb6ac](https://github.com/ho-nl/m2-pwa/commit/ffdb6acaa000bf455e2aff008aadbc25e1bdb12d))
401
+ - vertical align full page message
402
+ ([b74af1d](https://github.com/ho-nl/m2-pwa/commit/b74af1da88e62cf2aaeae48f727a2f01b12b7850))
403
+ - white space after footer on category page
404
+ ([0fe13a4](https://github.com/ho-nl/m2-pwa/commit/0fe13a4daa284546487dfafcfa93daa8cbcd827b))
405
+ - white space below divider on sheet shells
406
+ ([1159f20](https://github.com/ho-nl/m2-pwa/commit/1159f20452b308f6301749492765af066ab3d673))
407
+ - wishlist icon
408
+ ([5d99ab7](https://github.com/ho-nl/m2-pwa/commit/5d99ab726eda56f0f9aa906914a8204c8f2ec87b))
409
+ - write review button mobile styles
410
+ ([8f6b883](https://github.com/ho-nl/m2-pwa/commit/8f6b883fa0a513f84b7c6d8ed376b0e8d4b8a3bd))
411
+ - wrong bottom overlay ui animation
412
+ ([f2033f8](https://github.com/ho-nl/m2-pwa/commit/f2033f8505884fb5c0efb34ea2396454fb223a4d))
413
+ - yarn workspace packages hot reload
414
+ ([d03fc9f](https://github.com/ho-nl/m2-pwa/commit/d03fc9fdda3486476761786f2b56a934cc92befc))
415
+ - zIndex issue OverlayUi
416
+ ([9dd0892](https://github.com/ho-nl/m2-pwa/commit/9dd089236e912b8cd1f1c0987e46fafb43885c67))
417
+
418
+ ### Features
419
+
420
+ - add add-to-cart snackbar message
421
+ ([0644de5](https://github.com/ho-nl/m2-pwa/commit/0644de5acccada024eda2b5c92b52536a1da5385))
422
+ - add add-to-cart snackbar to all products
423
+ ([e9570fd](https://github.com/ho-nl/m2-pwa/commit/e9570fdb55331b2a790f8910c0722dba83480f64))
424
+ - Add blog pagination
425
+ ([04bf2d0](https://github.com/ho-nl/m2-pwa/commit/04bf2d033f14bc159df7ec8a45aabd8ac5d4fd13))
426
+ - add blog tags to page
427
+ ([bdc31af](https://github.com/ho-nl/m2-pwa/commit/bdc31af37e1b348f409dd347fe0c88581b0cf375))
428
+ - add Chip with author and publish date
429
+ ([20a28a5](https://github.com/ho-nl/m2-pwa/commit/20a28a5c4fdbb4cd883b69459e13ac481bdf3a64))
430
+ - add default snackbar
431
+ ([2ccdb26](https://github.com/ho-nl/m2-pwa/commit/2ccdb2661b7bfb6353ed23defcc626e652495514))
432
+ - add getFilterTypes to shared client, faster generation
433
+ ([beccfde](https://github.com/ho-nl/m2-pwa/commit/beccfde6ebc8aaf6223f0e8b33fabf4f5039efed))
434
+ - add new customer address
435
+ ([df7cbe9](https://github.com/ho-nl/m2-pwa/commit/df7cbe92f64ffa1ff0cdfde7fa9a5d74fb05f969))
436
+ - add party (tada) icon
437
+ ([c5daf6f](https://github.com/ho-nl/m2-pwa/commit/c5daf6f78d77aad768c8414a97c76b185250ea87))
438
+ - add preload to first item for ProductListItemsBase
439
+ ([a4e06bc](https://github.com/ho-nl/m2-pwa/commit/a4e06bcb4192596b25d509b61669cff9d8bfdee7))
440
+ - add sideDrawerUi component
441
+ ([072642b](https://github.com/ho-nl/m2-pwa/commit/072642b8eb8e1162d257cee92a2c1f84fe101fd3))
442
+ - added decode=async to PictureResponsive
443
+ ([c2ca558](https://github.com/ho-nl/m2-pwa/commit/c2ca558d9739b2efe45ccccb17e526005b5b9c81))
444
+ - added FramerNextPagesSlider for service pages
445
+ ([282e249](https://github.com/ho-nl/m2-pwa/commit/282e249d5d487f04e1ab37b7551d4a65b5d20789))
446
+ - added FramerSlider ImageGallery example
447
+ ([257cee1](https://github.com/ho-nl/m2-pwa/commit/257cee1660e85991f60fcd3f9d896a2a3e7e332b))
448
+ - added full height support for BottomDrawerUi
449
+ ([d27b842](https://github.com/ho-nl/m2-pwa/commit/d27b842e387fcf514bb5cb27df829aef026c8f77))
450
+ - added prev/next keyboard handling
451
+ ([8e7e42f](https://github.com/ho-nl/m2-pwa/commit/8e7e42fe6b12006612287736c972a2194854febe))
452
+ - animated cart rows and checkout stepper component
453
+ ([5b3294d](https://github.com/ho-nl/m2-pwa/commit/5b3294d4a97c89d5c4690bbeac0814481babe3c9))
454
+ - animated filters
455
+ ([846e233](https://github.com/ho-nl/m2-pwa/commit/846e233c9653821afbe9cfe7742dc42bb869a078))
456
+ - apollo error full page component
457
+ ([fc1e695](https://github.com/ho-nl/m2-pwa/commit/fc1e695251a8792abaec5b9382e8301d3794cb6d))
458
+ - apollo error full page on account pages
459
+ ([ed8c80f](https://github.com/ho-nl/m2-pwa/commit/ed8c80ffa66094e5aee3b0ca830436d863a85e82))
460
+ - **app-shell-title:** support typography variants
461
+ ([74ed6a4](https://github.com/ho-nl/m2-pwa/commit/74ed6a4982bf6f43aa7f6b3771f919156653336c))
462
+ - **app-shell:** now consistent
463
+ ([fb5b506](https://github.com/ho-nl/m2-pwa/commit/fb5b5062729002b508e888a4962f1b2578e5199b))
464
+ - barrel file for next-ui components
465
+ ([04737e0](https://github.com/ho-nl/m2-pwa/commit/04737e02bc36d0b6293a704463023de161a5b89a))
466
+ - better 404 handling and simplified getStaticProps
467
+ ([321ace1](https://github.com/ho-nl/m2-pwa/commit/321ace1850642ee3eddfa674c37e6fca8adcdb74))
468
+ - better handling of shipping options
469
+ ([9598f9b](https://github.com/ho-nl/m2-pwa/commit/9598f9bf5c523dfa2f043e6df42ce5e33aa218db))
470
+ - **button:** pill-link variant
471
+ ([a6d837a](https://github.com/ho-nl/m2-pwa/commit/a6d837adf73fedb4490d9eafb1a7b87e9931ecb3))
472
+ - cart fab on mobile
473
+ ([bd2e9eb](https://github.com/ho-nl/m2-pwa/commit/bd2e9ebe056ba9a81b5c7228f1e5be57171266f4))
474
+ - **cart:** when a cart is not active anymore show a clear cart button
475
+ ([5d04a14](https://github.com/ho-nl/m2-pwa/commit/5d04a14726c040b20b34c0b88f923aee1dff22e5))
476
+ - checkout email added
477
+ ([452a953](https://github.com/ho-nl/m2-pwa/commit/452a95377e116bfa8b757d3ccc45cf2e4ac7cc51))
478
+ - configurable product form
479
+ ([dae6f10](https://github.com/ho-nl/m2-pwa/commit/dae6f10e4b8655761900c7ce3028605efe8e154a))
480
+ - content header component
481
+ ([9cf58cd](https://github.com/ho-nl/m2-pwa/commit/9cf58cd5ced3e89237fc04076aa0fae3618205ef))
482
+ - content header context
483
+ ([95b010a](https://github.com/ho-nl/m2-pwa/commit/95b010a175b7e6875da928f4abe4c45fc5c9e942))
484
+ - **content-header:** text buttons on mobile - pill buttons on desktop
485
+ ([1438838](https://github.com/ho-nl/m2-pwa/commit/1438838fbd2aac1e3510368f2a657314ebd05d2d))
486
+ - **content-header:** title animation based on header height
487
+ ([3eae793](https://github.com/ho-nl/m2-pwa/commit/3eae793c660c64c0862257907f268ae85d5f6e54))
488
+ - convert account
489
+ ([b2ad16a](https://github.com/ho-nl/m2-pwa/commit/b2ad16aeb054ff89688e9fcdd4b5f2081f88aa3c))
490
+ - created FramerSlider components
491
+ ([586f140](https://github.com/ho-nl/m2-pwa/commit/586f140824718eacda41318b57af14bc02e2e3ea))
492
+ - created stacked-pages package
493
+ ([d86008e](https://github.com/ho-nl/m2-pwa/commit/d86008ee659ccb25b194a41d624b394a1ddbd088))
494
+ - data agnostic animated header
495
+ ([17047a6](https://github.com/ho-nl/m2-pwa/commit/17047a6d754494d9443c8f2e486cc232cf199c45))
496
+ - detailed cart view
497
+ ([3a7126c](https://github.com/ho-nl/m2-pwa/commit/3a7126c08a1be580a1d9bba86951e11558cb0e5b))
498
+ - divided links component
499
+ ([14be359](https://github.com/ho-nl/m2-pwa/commit/14be35984b697dc3f182e3767f0d2e294a65e25d))
500
+ - form styling consistency
501
+ ([87cba85](https://github.com/ho-nl/m2-pwa/commit/87cba85e828fa42a02dfe74ac841aa2b39a60f4e))
502
+ - framer slider gallery for product view
503
+ ([43f5c67](https://github.com/ho-nl/m2-pwa/commit/43f5c678f5f075372d5b02c87858d858cde6ce4e))
504
+ - **framer-next-page:** introduced SheetHeader
505
+ ([dd6949f](https://github.com/ho-nl/m2-pwa/commit/dd6949fd027f6ec984f4de44fe75b36265f44906))
506
+ - **framer-next-pages:** added useCloseOverlay hook to close multiple steps at
507
+ once
508
+ ([55b7473](https://github.com/ho-nl/m2-pwa/commit/55b74730e64060c20072bf10f34d346964edc51f))
509
+ - **framer-next-pages:** implemented the FullPageShell for the remaining pages
510
+ ([88386b4](https://github.com/ho-nl/m2-pwa/commit/88386b4652abb7765d6e755c7fb7a3cb6285a0e7))
511
+ - **framer-scroller:** add prev/next buttons to SidebarSlider
512
+ ([00472e5](https://github.com/ho-nl/m2-pwa/commit/00472e5fe3c3c5408db358c0c78a3559cea902ca))
513
+ - **framer-scroller:** added the new slider to the product page
514
+ ([3c6b726](https://github.com/ho-nl/m2-pwa/commit/3c6b7262fb6418798f828f4517ed097fd9734e96))
515
+ - **framer-scroller:** implemented the scroller on all pages
516
+ ([73fb518](https://github.com/ho-nl/m2-pwa/commit/73fb518eff74edb2b3212e892b3d8cc2b088011b))
517
+ - **framer-scroller:** package to implement scroll-snap handling with JS
518
+ ([b3a279f](https://github.com/ho-nl/m2-pwa/commit/b3a279f8b4acb2b9de99004efe0459c534786bdd))
519
+ - FramerSlider support resizing of slider
520
+ ([8209e98](https://github.com/ho-nl/m2-pwa/commit/8209e980419c9e53e43910be965862cdebe6fbe5))
521
+ - friendly no orders message in my account
522
+ ([46a25b6](https://github.com/ho-nl/m2-pwa/commit/46a25b64ad94540cdaff948557374e9db99cc588))
523
+ - full page message component
524
+ ([659d4ca](https://github.com/ho-nl/m2-pwa/commit/659d4ca8241c88907b5a7aaed29efe25a8d0f82d))
525
+ - full page ui back and menu button position swap
526
+ ([93b3419](https://github.com/ho-nl/m2-pwa/commit/93b34197947d133f4d1480c4ce68a0302201b858))
527
+ - full page ui desktop variant
528
+ ([a70f301](https://github.com/ho-nl/m2-pwa/commit/a70f3013da36fa131f82fb44457b107fb7705df6))
529
+ - **FullPageUi:** make backFallbackTitle and backFallbackHref required
530
+ ([7e65bc7](https://github.com/ho-nl/m2-pwa/commit/7e65bc769ad5071d797481d143f9757611408c1d))
531
+ - **graphql:** introduced new graphql package that holds all generated files
532
+ ([a3e7aa0](https://github.com/ho-nl/m2-pwa/commit/a3e7aa05540540533b5ced9a95f1f802ecbe499f))
533
+ - groundwork for complete reimplementation of product pages
534
+ ([b224da8](https://github.com/ho-nl/m2-pwa/commit/b224da8273eb5c8173ad30d006391b2291331623))
535
+ - **image:** introduced completely rewritten Image component
536
+ ([e3413b3](https://github.com/ho-nl/m2-pwa/commit/e3413b3a57392d6571ea64cb8d9c8dca05ea31df))
537
+ - implement ref forwarding for the PictureResponsive and PictureResponsiveNext
538
+ ([5ce010c](https://github.com/ho-nl/m2-pwa/commit/5ce010cfd1edf3d726d4baf805d6a534d98f5f82))
539
+ - implement scrollSnapAlign: start | center | end
540
+ ([d2c7c17](https://github.com/ho-nl/m2-pwa/commit/d2c7c17a5362b246755ffc7d05a7e722a95bcad8))
541
+ - implement sticky snackbar in needed places
542
+ ([0426e73](https://github.com/ho-nl/m2-pwa/commit/0426e73ff7bb24cae656a082e15f36d5012c6653))
543
+ - implemented checkmo payment method
544
+ ([18525b2](https://github.com/ho-nl/m2-pwa/commit/18525b2f4efe9bd0eea12a7a992d284f341e0c68))
545
+ - imported react-modal-sheet
546
+ ([e3a76f7](https://github.com/ho-nl/m2-pwa/commit/e3a76f71a6c8f7b5cfc0766673265733040ba164))
547
+ - improved drawer stacking and stable layoutId support
548
+ ([b5b0406](https://github.com/ho-nl/m2-pwa/commit/b5b040635993eb3da819606e94d3cd6fdaddb05c))
549
+ - introduce bottom drawer stacking
550
+ ([e82de09](https://github.com/ho-nl/m2-pwa/commit/e82de0904b07093b27be2d660933dd3dc95188e7))
551
+ - introduce useFormPersist to complent useMutationFormPersist
552
+ ([4e75217](https://github.com/ho-nl/m2-pwa/commit/4e75217f1c211a7ae159312ddbcc476d8c4064d9))
553
+ - introduced SheetShell as a shared layout component
554
+ ([eb64f28](https://github.com/ho-nl/m2-pwa/commit/eb64f28fd05b69efbf14fa850c70b0f1da5c4237))
555
+ - introduced useFormPersist to store form values without submitting
556
+ ([c042cdb](https://github.com/ho-nl/m2-pwa/commit/c042cdb6c3211d6354bad16b5b6503efe7321c42))
557
+ - introduces framer-next-pages and framer-sheet to next-ui and soxbase package
558
+ ([e04ad8a](https://github.com/ho-nl/m2-pwa/commit/e04ad8a94cd1fd5a7c5575c9db7916b6e8a88f16))
559
+ - introducing useAutoSubmit for useForm to handle shipping address step
560
+ ([d375a12](https://github.com/ho-nl/m2-pwa/commit/d375a123d5ba88285703fc1706a43c21c5a248d5))
561
+ - left and sidebar drawers
562
+ ([12a3b72](https://github.com/ho-nl/m2-pwa/commit/12a3b72edfad38a4b82701ec502f2f4d85c40e53))
563
+ - login flow
564
+ ([8132b1a](https://github.com/ho-nl/m2-pwa/commit/8132b1a9be7040c3e2f70f1c1d04e6a9d7840a91))
565
+ - major performance refactor
566
+ ([03f8e2f](https://github.com/ho-nl/m2-pwa/commit/03f8e2fa16ef919bd6bd6eadd36922d0245ed960))
567
+ - make action optional in snackbar
568
+ ([70cf9a4](https://github.com/ho-nl/m2-pwa/commit/70cf9a456e483040b2aad087a9cc01ecf85fe4c8))
569
+ - make bottom drawer dismissable by dragging
570
+ ([ff8e575](https://github.com/ho-nl/m2-pwa/commit/ff8e575b51cebe92734e0c8f1ead77c127e9f8aa))
571
+ - **mesh:** use mesh with build version with increased stability/performance
572
+ ([63863f3](https://github.com/ho-nl/m2-pwa/commit/63863f3a2df4d596819b85f3cf736c7f52f828c1))
573
+ - minimal page shell
574
+ ([1693674](https://github.com/ho-nl/m2-pwa/commit/1693674631fc8438c60d9b74b73e607e08971a2d))
575
+ - new app shell components
576
+ ([2db3b7a](https://github.com/ho-nl/m2-pwa/commit/2db3b7a646f45ac273679770715d23e3472e9d2c))
577
+ - new my account overview
578
+ ([6de0761](https://github.com/ho-nl/m2-pwa/commit/6de0761c452e1ba5364345a168b400d90418b44e))
579
+ - **next-ui:** SectionContainer/SectionHeader now accepts
580
+ variantLeft/variantRight as prop
581
+ ([a58f8f2](https://github.com/ho-nl/m2-pwa/commit/a58f8f2962e74c9aaa41142524d42d9c8f662b8d))
582
+ - next.js 11
583
+ ([7d61407](https://github.com/ho-nl/m2-pwa/commit/7d614075a778f488045034f74be4f75b93f63c43))
584
+ - overlay ui component
585
+ ([227eedc](https://github.com/ho-nl/m2-pwa/commit/227eedcdace65b77390f635398e9d5a56249df6b))
586
+ - pictureResponsiveNext svg support
587
+ ([3872620](https://github.com/ho-nl/m2-pwa/commit/3872620aba45645110b4691cc0cd9bdf86ec1266))
588
+ - PictureResponsiveNext: lossy compression for gifs
589
+ ([cb9d279](https://github.com/ho-nl/m2-pwa/commit/cb9d279a6a8b8acde4deafc13bad8a39fc7969d0))
590
+ - PictureResppnsive: support loading=eager, single img tag instead of picture
591
+ ([2836f4c](https://github.com/ho-nl/m2-pwa/commit/2836f4cdc8499b0b422b30d8683f8ef0715ffff5))
592
+ - **playwright:** added new playwright package to enable browser testing
593
+ ([6f49ec7](https://github.com/ho-nl/m2-pwa/commit/6f49ec7595563775b96ebf21c27e39da1282e8d9))
594
+ - product page review pagination
595
+ ([4e18395](https://github.com/ho-nl/m2-pwa/commit/4e18395944c08e195fd09192086301c695d044ed))
596
+ - quick checkout component on cart page
597
+ ([0eaafe5](https://github.com/ho-nl/m2-pwa/commit/0eaafe510da3a473b9888707a198361db9b65e06))
598
+ - redirect page/1 to /blog
599
+ ([7ad1eaf](https://github.com/ho-nl/m2-pwa/commit/7ad1eafe2c3046706392f23a7c29b8263288d417))
600
+ - reduced page shell component
601
+ ([7e0b0a1](https://github.com/ho-nl/m2-pwa/commit/7e0b0a1471795f47e2f0f876b0e09cb65b053c2a))
602
+ - reimplemented RowSwipeableGrid
603
+ ([a9131de](https://github.com/ho-nl/m2-pwa/commit/a9131dea19347db2985ee3864e460dfa8a3f2182))
604
+ - remove wrapper div from ScrollSnapSlider
605
+ ([476add8](https://github.com/ho-nl/m2-pwa/commit/476add8db64811f2c7e3fc482487967cd7573cf6))
606
+ - renamed all packages to use [@graphcommerce](https://github.com/graphcommerce)
607
+ instead of [@reachdigital](https://github.com/reachdigital)
608
+ ([491e4ce](https://github.com/ho-nl/m2-pwa/commit/491e4cec9a2686472dac36b79f999257c0811ffe))
609
+ - **reviews:** no reviews written message
610
+ ([8ade3db](https://github.com/ho-nl/m2-pwa/commit/8ade3dbe830f5a59af09c002dfa38fa5349a4b61))
611
+ - RowSwipable
612
+ ([8908ff6](https://github.com/ho-nl/m2-pwa/commit/8908ff62fbd82695e9a80d2d89cde6cecb19d260))
613
+ - SidebarSlider added and implemented
614
+ ([188f7e3](https://github.com/ho-nl/m2-pwa/commit/188f7e38cad3729a1424a3a808fda9cdd51a6954))
615
+ - standalone Blog Title
616
+ ([311a468](https://github.com/ho-nl/m2-pwa/commit/311a4688833e054660c57e06dc98176163f3d14f))
617
+ - sticky footer
618
+ ([1547cab](https://github.com/ho-nl/m2-pwa/commit/1547cab694c0ebf7cf9acb57817a5fe5565f10fd))
619
+ - svgimage component
620
+ ([f369605](https://github.com/ho-nl/m2-pwa/commit/f3696051e381a24c543fd24e199da5b17f9e124f))
621
+ - **theme:** restructured fonts and applied to home and category page
622
+ ([6adf5f1](https://github.com/ho-nl/m2-pwa/commit/6adf5f11321bdfbf499125f1161c5abf5a1bfe4a))
623
+ - **theme:** restructured typography
624
+ ([6fcddae](https://github.com/ho-nl/m2-pwa/commit/6fcddae6b1b54d071475c59c80a9f8d8a36294d5))
625
+ - time ago component
626
+ ([bf3ca85](https://github.com/ho-nl/m2-pwa/commit/bf3ca852e66d53041ef9f535724b19376c5648ca))
627
+ - tweak app performance
628
+ ([cde0a9b](https://github.com/ho-nl/m2-pwa/commit/cde0a9bda1560b354e9adde3c022e3fddb71ea69))
629
+ - upgrade to node 14
630
+ ([d079a75](https://github.com/ho-nl/m2-pwa/commit/d079a751e9bfd8dc7f5009d2c9f31c336a0c96ab))
631
+ - upgraded to nextjs 11
632
+ ([0053beb](https://github.com/ho-nl/m2-pwa/commit/0053beb7ef597c190add7264256a0eaec35868da))
633
+ - use LazyMotion configuration for better bundle splitting
634
+ ([f043eb7](https://github.com/ho-nl/m2-pwa/commit/f043eb72a3fbe698644afdfe80a4915db142eebc))
635
+ - use official nextjs image endpoint
636
+ ([0e76ab4](https://github.com/ho-nl/m2-pwa/commit/0e76ab4cece15d4d6f192cb938588a34abaebe8a))
637
+ - useFormPersist, useFormAutoSubmit, useFormGqlMutation everywhere
638
+ ([e591285](https://github.com/ho-nl/m2-pwa/commit/e5912854babee87c8efc5b7c00455d61b301aad3))
639
+ - useMutationFormPersist to save form field values for current session
640
+ ([f26197d](https://github.com/ho-nl/m2-pwa/commit/f26197dce51bf76450775dd6ed8ce2b17d70ee55))
641
+ - view list of blogposts tagged
642
+ ([9efe088](https://github.com/ho-nl/m2-pwa/commit/9efe0884d43e0dc63e614f625b81e6f8b3f1dc50))
643
+ - working on EmailForm
644
+ ([f16141f](https://github.com/ho-nl/m2-pwa/commit/f16141f8cc0dfeaef8dee2a3e635bda898550a51))
645
+ - working on shipping-method step
646
+ ([d89a072](https://github.com/ho-nl/m2-pwa/commit/d89a072298baa20bfa0ac7a2a885c40728a23edb))
647
+
648
+ ### Reverts
649
+
650
+ - Revert "chore: upgrade @apollo/client"
651
+ ([55ff24e](https://github.com/ho-nl/m2-pwa/commit/55ff24ede0e56c85b8095edadadd1ec5e0b1b8d2))
652
+
653
+ ## 2.0.8 (2020-10-28)
654
+
655
+ ### Bug Fixes
656
+
657
+ - make sure themes extensions are found
658
+ ([5aa18db](https://github.com/ho-nl/m2-pwa/commit/5aa18db514fd2e2f50681367e39523f8e742ece0))
659
+
660
+ ### Features
661
+
662
+ - added generated graphql.ts files
663
+ ([3e44415](https://github.com/ho-nl/m2-pwa/commit/3e44415b018e74b502e9e98479aa5e84041f337d))
664
+ - split into packages
665
+ ([2ee7fd6](https://github.com/ho-nl/m2-pwa/commit/2ee7fd6c0056f467d114f04d92c6c0ddf622d151))
666
+
667
+ ### BREAKING CHANGES
668
+
669
+ - huge folder structure refactor, please read README to reinstall
670
+
671
+ # Change Log
672
+
673
+ All notable changes to this project will be documented in this file. See
674
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
675
+
676
+ ## [2.112.6](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.112.5...@graphcommerce/next-ui@2.112.6) (2021-09-24)
677
+
678
+ ### Bug Fixes
679
+
680
+ - all disabled buttons have white text
681
+ ([358114d](https://github.com/ho-nl/m2-pwa/commit/358114ddff5d7ffa51c30f6a6e7787e88d5e4c5c))
682
+ - **message-snackbar:** close on action click
683
+ ([146c232](https://github.com/ho-nl/m2-pwa/commit/146c232a3a0e78b2be68631b0461e7b4699b99e1))
684
+
685
+ ## [2.112.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.112.4...@graphcommerce/next-ui@2.112.5) (2021-09-24)
686
+
687
+ ### Bug Fixes
688
+
689
+ - **chip-menu:** layout shift on open
690
+ ([c65cf5b](https://github.com/ho-nl/m2-pwa/commit/c65cf5bc18864b5180aba3f2361399bd85967952))
691
+
692
+ ## [2.112.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.112.2...@graphcommerce/next-ui@2.112.3) (2021-09-23)
693
+
694
+ ## [2.112.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.112.2...@graphcommerce/next-ui@2.112.3) (2021-09-23)
695
+
696
+ ### Bug Fixes
697
+
698
+ - do not use ToggleButtonGroup, only use the ToggleButton
699
+ ([5172f70](https://github.com/ho-nl/m2-pwa/commit/5172f709ee26122b0a8700afb4325f23cb9ba9b9))
700
+ - **Form:** forms always have background
701
+ ([1f3fa1e](https://github.com/ho-nl/m2-pwa/commit/1f3fa1e53a997b88512335dc344bff3fa24f6bc6))
702
+
703
+ ## [2.112.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.112.1...@graphcommerce/next-ui@2.112.2) (2021-09-20)
704
+
705
+ ### Bug Fixes
706
+
707
+ - header app shell margin bottom in some circumstances
708
+ ([6030ba7](https://github.com/ho-nl/m2-pwa/commit/6030ba7d07619d0b877a9f557c3e14676c326c7a))
709
+
710
+ # [2.112.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.111.0...@graphcommerce/next-ui@2.112.0) (2021-09-01)
711
+
712
+ ### Bug Fixes
713
+
714
+ - **framer-slider:** prev/next buttons don't always show up correctly
715
+ ([ba2510e](https://github.com/ho-nl/m2-pwa/commit/ba2510ea659344a2d71957eed396f4e5ce536a8c))
716
+ - sidebar gallery width
717
+ ([7185850](https://github.com/ho-nl/m2-pwa/commit/71858500d5b62e1d2130d236247fc06fd80649f9))
718
+
719
+ ### Features
720
+
721
+ - **framer-scroller:** add prev/next buttons to SidebarSlider
722
+ ([00472e5](https://github.com/ho-nl/m2-pwa/commit/00472e5fe3c3c5408db358c0c78a3559cea902ca))
723
+
724
+ # [2.111.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.110.1...@graphcommerce/next-ui@2.111.0) (2021-09-01)
725
+
726
+ ### Bug Fixes
727
+
728
+ - chipmenu styling
729
+ ([dcdbbcc](https://github.com/ho-nl/m2-pwa/commit/dcdbbccceb2226de5067b14414f3d4ff5e016a5b))
730
+ - **framer-scroller:** center the prev/next buttons on the gallery
731
+ ([234dc37](https://github.com/ho-nl/m2-pwa/commit/234dc37fc46f723410e9a844bbcb33cfe5d8a588))
732
+ - make sure we remove the scrollbar only when the animation completes
733
+ ([aa629e0](https://github.com/ho-nl/m2-pwa/commit/aa629e06b7b13e4cd85332cd6dcfbe8ae973a7f5))
734
+
735
+ ### Features
736
+
737
+ - **framer-scroller:** added the new slider to the product page
738
+ ([3c6b726](https://github.com/ho-nl/m2-pwa/commit/3c6b7262fb6418798f828f4517ed097fd9734e96))
739
+ - **framer-scroller:** implemented the scroller on all pages
740
+ ([73fb518](https://github.com/ho-nl/m2-pwa/commit/73fb518eff74edb2b3212e892b3d8cc2b088011b))
741
+ - **framer-scroller:** package to implement scroll-snap handling with JS
742
+ ([b3a279f](https://github.com/ho-nl/m2-pwa/commit/b3a279f8b4acb2b9de99004efe0459c534786bdd))
743
+
744
+ ## [2.110.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.110.0...@graphcommerce/next-ui@2.110.1) (2021-08-30)
745
+
746
+ ### Bug Fixes
747
+
748
+ - **app-shell-header:** show fallbacktitle instead of back on back button when
749
+ applicable
750
+ ([27d7d7d](https://github.com/ho-nl/m2-pwa/commit/27d7d7d716265c856cd64d3f485f0227f99c5cd0))
751
+
752
+ # [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)
753
+
754
+ ### Bug Fixes
755
+
756
+ - adjust header height
757
+ ([d22310d](https://github.com/ho-nl/m2-pwa/commit/d22310dca282208c6d7020c6c27f8ba5be980e3c))
758
+ - app shell consistency
759
+ ([e062c3d](https://github.com/ho-nl/m2-pwa/commit/e062c3d4af75c6bfe1ad7056dfb172277f1b01cb))
760
+ - app shell consistency wip
761
+ ([be995ca](https://github.com/ho-nl/m2-pwa/commit/be995ca5c3e383b89fea3759186d53af4790e99b))
762
+ - app shell fixes
763
+ ([1b13d0d](https://github.com/ho-nl/m2-pwa/commit/1b13d0d0d4b480ddc9712b4d298af2d81fb2b1d4))
764
+ - app shell fixes
765
+ ([c3bddee](https://github.com/ho-nl/m2-pwa/commit/c3bddee6b878cd9d2183c4938df0824a6eca4f36))
766
+ - app shell header scroll spacings
767
+ ([b1f5706](https://github.com/ho-nl/m2-pwa/commit/b1f570697bb0a9207129c9d24623b6069cf38ab5))
768
+ - app shell tests
769
+ ([10b58bd](https://github.com/ho-nl/m2-pwa/commit/10b58bd1a0271ef5d90a51394a9efd194b285ed0))
770
+ - **app-shell-header:** hide divider
771
+ ([34d183e](https://github.com/ho-nl/m2-pwa/commit/34d183e7ee13c3e6d76bc211d44398cb7e492d67))
772
+ - **app-shell:** pages after app shell changes
773
+ ([fb74510](https://github.com/ho-nl/m2-pwa/commit/fb74510121f6124009db72ad2ddebf6459c52a85))
774
+ - primary button height
775
+ ([741279e](https://github.com/ho-nl/m2-pwa/commit/741279e1c92845f067af5ad63adec04b05936fcc))
776
+ - search page white background
777
+ ([8676bfa](https://github.com/ho-nl/m2-pwa/commit/8676bfa30273b4d5f41b708b2ac45474d2e31e65))
778
+ - **sheet-shell-header:** adjust mobile height
779
+ ([c4310ff](https://github.com/ho-nl/m2-pwa/commit/c4310fff4314aa0121906aa4694af32f77ff12c8))
780
+ - title offset
781
+ ([2fef3ea](https://github.com/ho-nl/m2-pwa/commit/2fef3ea10ad98467062d4de397b40a83a86d7102))
782
+ - white space below divider on sheet shells
783
+ ([1159f20](https://github.com/ho-nl/m2-pwa/commit/1159f20452b308f6301749492765af066ab3d673))
784
+
785
+ ### Features
786
+
787
+ - **app-shell-title:** support typography variants
788
+ ([74ed6a4](https://github.com/ho-nl/m2-pwa/commit/74ed6a4982bf6f43aa7f6b3771f919156653336c))
789
+ - **app-shell:** now consistent
790
+ ([fb5b506](https://github.com/ho-nl/m2-pwa/commit/fb5b5062729002b508e888a4962f1b2578e5199b))
791
+
792
+ ## [2.109.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.109.1...@graphcommerce/next-ui@2.109.2) (2021-08-26)
793
+
794
+ ### Bug Fixes
795
+
796
+ - **button:** pill link not visible on mobile
797
+ ([c4474f5](https://github.com/ho-nl/m2-pwa/commit/c4474f5cfe4dbb6b9aa795d7d175dbce053720d8))
798
+ - cart styling
799
+ ([56feeee](https://github.com/ho-nl/m2-pwa/commit/56feeeeb85657d8abfec1e9613f12bf9d54686b5))
800
+
801
+ ## [2.109.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.109.0...@graphcommerce/next-ui@2.109.1) (2021-08-19)
802
+
803
+ ### Bug Fixes
804
+
805
+ - app shell sticky overlapping buttons on scroll
806
+ ([7548b30](https://github.com/ho-nl/m2-pwa/commit/7548b30718290d976f4839f0096fea432f9a6b45))
807
+ - white space after footer on category page
808
+ ([0fe13a4](https://github.com/ho-nl/m2-pwa/commit/0fe13a4daa284546487dfafcfa93daa8cbcd827b))
809
+
810
+ # [2.109.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.108.3...@graphcommerce/next-ui@2.109.0) (2021-08-17)
811
+
812
+ ### Bug Fixes
813
+
814
+ - **search-page:** hide menu and cart fabs when opened virtual keyboard mobile
815
+ ([e728768](https://github.com/ho-nl/m2-pwa/commit/e7287680545f33079d0af47df1c6ea519b208978))
816
+
817
+ ### Features
818
+
819
+ - left and sidebar drawers
820
+ ([12a3b72](https://github.com/ho-nl/m2-pwa/commit/12a3b72edfad38a4b82701ec502f2f4d85c40e53))
821
+
822
+ ## [2.108.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.108.1...@graphcommerce/next-ui@2.108.2) (2021-08-13)
823
+
824
+ ### Bug Fixes
825
+
826
+ - ref couldn't be forwarded for ShippingAddressForm
827
+ ([1f90f1a](https://github.com/ho-nl/m2-pwa/commit/1f90f1a30437d656fcf841026ad13bb2b45d831b))
828
+
829
+ # [2.108.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.107.0...@graphcommerce/next-ui@2.108.0) (2021-08-13)
830
+
831
+ ### Features
832
+
833
+ - **mesh:** use mesh with build version with increased stability/performance
834
+ ([63863f3](https://github.com/ho-nl/m2-pwa/commit/63863f3a2df4d596819b85f3cf736c7f52f828c1))
835
+
836
+ # [2.107.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.106.0...@graphcommerce/next-ui@2.107.0) (2021-08-12)
837
+
838
+ ### Bug Fixes
839
+
840
+ - account tweaks
841
+ ([26ca295](https://github.com/ho-nl/m2-pwa/commit/26ca2955fe7a3ed509aaa7df98cbb4854d636179))
842
+ - grid blowout on homepage
843
+ ([8c0e225](https://github.com/ho-nl/m2-pwa/commit/8c0e225a629841e4a391a1edbc0614fc30789ba6))
844
+
845
+ ### Features
846
+
847
+ - sticky footer
848
+ ([1547cab](https://github.com/ho-nl/m2-pwa/commit/1547cab694c0ebf7cf9acb57817a5fe5565f10fd))
849
+
850
+ # [2.106.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.105.2...@graphcommerce/next-ui@2.106.0) (2021-08-12)
851
+
852
+ ### Bug Fixes
853
+
854
+ - small icon size was too large
855
+ ([61a4bc7](https://github.com/ho-nl/m2-pwa/commit/61a4bc72ad88a5df764d100a78ba26635c35e035))
856
+
857
+ ### Features
858
+
859
+ - upgraded to nextjs 11
860
+ ([0053beb](https://github.com/ho-nl/m2-pwa/commit/0053beb7ef597c190add7264256a0eaec35868da))
861
+
862
+ ## [2.105.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.105.1...@graphcommerce/next-ui@2.105.2) (2021-08-09)
863
+
864
+ ### Bug Fixes
865
+
866
+ - forward ref not used IconBlocks
867
+ ([7af4df3](https://github.com/ho-nl/m2-pwa/commit/7af4df3b03cba0a7748614e1db49d86e8157b75f))
868
+ - page keeps reloading after each change in @graphcommerce/next-ui
869
+ ([45ff0f5](https://github.com/ho-nl/m2-pwa/commit/45ff0f51d87e2100faefad93d5d224a8761e6e75))
870
+ - SvgSimpleImage sizing didn't use rem
871
+ ([1ba07a5](https://github.com/ho-nl/m2-pwa/commit/1ba07a5694bd60ad3cee2e8102814643d2a7c79d))
872
+ - use semantically correct components for menufab
873
+ ([0196b29](https://github.com/ho-nl/m2-pwa/commit/0196b29523b3f49294dde32d96b348d100de5fa8))
874
+ - use SvgImageSimple for multiple areas
875
+ ([bf851a6](https://github.com/ho-nl/m2-pwa/commit/bf851a6740e1956a78f457c2d90904ee2f65da2f))
876
+
877
+ ### Reverts
878
+
879
+ - Revert "chore: upgrade @apollo/client"
880
+ ([55ff24e](https://github.com/ho-nl/m2-pwa/commit/55ff24ede0e56c85b8095edadadd1ec5e0b1b8d2))
881
+
882
+ ## [2.105.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.105.0...@graphcommerce/next-ui@2.105.1) (2021-08-09)
883
+
884
+ ### Bug Fixes
885
+
886
+ - make fonts more default
887
+ ([cba1d90](https://github.com/ho-nl/m2-pwa/commit/cba1d90578db33d3458c126bf4932312eed05271))
888
+ - **review:** make sure chip is rendered correctly
889
+ ([387df34](https://github.com/ho-nl/m2-pwa/commit/387df3456973290f9ce98d47823a7c71a6d95850))
890
+
891
+ # [2.105.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.104.0...@graphcommerce/next-ui@2.105.0) (2021-08-06)
892
+
893
+ ### Bug Fixes
894
+
895
+ - introduced SvgImageSimple and solve issue with review chips
896
+ ([931d7fd](https://github.com/ho-nl/m2-pwa/commit/931d7fdcf0faa9d2264899b72e564138215b6bd8))
897
+ - replace captionOldOld with overline
898
+ ([c19bc8a](https://github.com/ho-nl/m2-pwa/commit/c19bc8aee829432a8c72d0d4bc9d266110af65ab))
899
+
900
+ ### Features
901
+
902
+ - **theme:** restructured fonts and applied to home and category page
903
+ ([6adf5f1](https://github.com/ho-nl/m2-pwa/commit/6adf5f11321bdfbf499125f1161c5abf5a1bfe4a))
904
+ - **theme:** restructured typography
905
+ ([6fcddae](https://github.com/ho-nl/m2-pwa/commit/6fcddae6b1b54d071475c59c80a9f8d8a36294d5))
906
+
907
+ # [2.104.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.103.5...@graphcommerce/next-ui@2.104.0) (2021-08-04)
908
+
909
+ ### Bug Fixes
910
+
911
+ - add blogTags fragment
912
+ ([8ab1ee8](https://github.com/ho-nl/m2-pwa/commit/8ab1ee874fa0174b15f2df5108cdca03599f1ef5))
913
+ - add types
914
+ ([18dac42](https://github.com/ho-nl/m2-pwa/commit/18dac421042e4050407987b33eae0bf33e2f6e12))
915
+ - base mechanics on page relations
916
+ ([345a682](https://github.com/ho-nl/m2-pwa/commit/345a68274dc7bc7f561a963d29fd9cd96907d4d1))
917
+ - cart item image sizes
918
+ ([e7c860c](https://github.com/ho-nl/m2-pwa/commit/e7c860c785e172b9275e1a00c8b51509d6b297a8))
919
+ - compact text input number
920
+ ([8999053](https://github.com/ho-nl/m2-pwa/commit/899905364808d6ea6ef257e948c68dc3851717a6))
921
+ - image height in grid
922
+ ([e95fe1a](https://github.com/ho-nl/m2-pwa/commit/e95fe1a613e2047ca9aae54ea413c592eba19bf3))
923
+ - image height on blog view
924
+ ([2f8aaa3](https://github.com/ho-nl/m2-pwa/commit/2f8aaa32af3d4d8c4e3412c3b4dcab5485a0504f))
925
+ - remove component specific Row
926
+ ([fcad430](https://github.com/ho-nl/m2-pwa/commit/fcad430ba01b215e77abb2c1ae01071a8ea1ec55))
927
+ - remove component specific Rows
928
+ ([ed60655](https://github.com/ho-nl/m2-pwa/commit/ed60655ffca8e4578cf2627bf0a9428fd9a79337))
929
+ - tags styling
930
+ ([1a4bcf2](https://github.com/ho-nl/m2-pwa/commit/1a4bcf2e339647cc93120ea9f951253a4e138142))
931
+
932
+ ### Features
933
+
934
+ - add blog tags to page
935
+ ([bdc31af](https://github.com/ho-nl/m2-pwa/commit/bdc31af37e1b348f409dd347fe0c88581b0cf375))
936
+ - add Chip with author and publish date
937
+ ([20a28a5](https://github.com/ho-nl/m2-pwa/commit/20a28a5c4fdbb4cd883b69459e13ac481bdf3a64))
938
+ - standalone Blog Title
939
+ ([311a468](https://github.com/ho-nl/m2-pwa/commit/311a4688833e054660c57e06dc98176163f3d14f))
940
+ - view list of blogposts tagged
941
+ ([9efe088](https://github.com/ho-nl/m2-pwa/commit/9efe0884d43e0dc63e614f625b81e6f8b3f1dc50))
942
+
943
+ ## [2.103.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.103.4...@graphcommerce/next-ui@2.103.5) (2021-08-03)
944
+
945
+ ### Bug Fixes
946
+
947
+ - footer spacing missing
948
+ ([6198665](https://github.com/ho-nl/m2-pwa/commit/61986653411dda9cb70ea15dd2d74ef1d48c2721))
949
+ - index page video and image overlay fix
950
+ ([53c9d70](https://github.com/ho-nl/m2-pwa/commit/53c9d70bae1229c44f6a45730abe47482d0b9ac2))
951
+ - janky animation for last block on homepage
952
+ ([a572986](https://github.com/ho-nl/m2-pwa/commit/a572986d87ee450badf96ef6608f75f30f71ed5b))
953
+ - spacing on message snackbar
954
+ ([0899321](https://github.com/ho-nl/m2-pwa/commit/0899321a3ea74a2d4c714e2dbe17c785a07dfc11))
955
+
956
+ ## [2.103.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.103.3...@graphcommerce/next-ui@2.103.4) (2021-08-02)
957
+
958
+ ### Bug Fixes
959
+
960
+ - disappearing asset with zIndex -1
961
+ ([44956e5](https://github.com/ho-nl/m2-pwa/commit/44956e5d0b57a62322033395d378d0e4788454b1))
962
+
963
+ ## [2.103.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.103.2...@graphcommerce/next-ui@2.103.3) (2021-07-29)
964
+
965
+ ### Bug Fixes
966
+
967
+ - duplicate key error when multiple errors of the same error occur
968
+ ([f2c5bc0](https://github.com/ho-nl/m2-pwa/commit/f2c5bc040c1e9cc1340f67c68460b8fe42230659))
969
+
970
+ ## [2.103.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.103.0...@graphcommerce/next-ui@2.103.1) (2021-07-28)
971
+
972
+ ### Bug Fixes
973
+
974
+ - buttons reporting errors all over the place
975
+ ([0fa9099](https://github.com/ho-nl/m2-pwa/commit/0fa9099671659094f990449d3286e5216fce6a51))
976
+
977
+ # [2.103.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.102.3...@graphcommerce/next-ui@2.103.0) (2021-07-26)
978
+
979
+ ### Features
980
+
981
+ - **playwright:** added new playwright package to enable browser testing
982
+ ([6f49ec7](https://github.com/ho-nl/m2-pwa/commit/6f49ec7595563775b96ebf21c27e39da1282e8d9))
983
+
984
+ ## [2.102.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.102.2...@graphcommerce/next-ui@2.102.3) (2021-07-26)
985
+
986
+ ### Bug Fixes
987
+
988
+ - **full-page-shell:** fabs not clickable
989
+ ([2c8d7f9](https://github.com/ho-nl/m2-pwa/commit/2c8d7f9529e83ac08d4fd758547379b72eb2f3d1))
990
+
991
+ ## [2.102.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.102.1...@graphcommerce/next-ui@2.102.2) (2021-07-23)
992
+
993
+ ### Bug Fixes
994
+
995
+ - **app-shell-header:** offset not always correctly set
996
+ ([11a8907](https://github.com/ho-nl/m2-pwa/commit/11a890764be1ab4f6c584a5c8ca4e6620d0d73e5))
997
+ - **app-shell-header:** title offset top not correctly set
998
+ ([c144309](https://github.com/ho-nl/m2-pwa/commit/c1443095317c1779074f3a4058f4041159c8e31b))
999
+
1000
+ ## [2.102.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.102.0...@graphcommerce/next-ui@2.102.1) (2021-07-21)
1001
+
1002
+ ### Bug Fixes
1003
+
1004
+ - header spacings
1005
+ ([f00462f](https://github.com/ho-nl/m2-pwa/commit/f00462f9abb61a54552c96dbed35ef708fe05608))
1006
+
1007
+ # [2.102.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.101.3...@graphcommerce/next-ui@2.102.0) (2021-07-21)
1008
+
1009
+ ### Bug Fixes
1010
+
1011
+ - pagination markup
1012
+ ([0ab7707](https://github.com/ho-nl/m2-pwa/commit/0ab7707aa4cbf49c5df1da3e806641a840ec2aff))
1013
+ - write review button mobile styles
1014
+ ([8f6b883](https://github.com/ho-nl/m2-pwa/commit/8f6b883fa0a513f84b7c6d8ed376b0e8d4b8a3bd))
1015
+
1016
+ ### Features
1017
+
1018
+ - **reviews:** no reviews written message
1019
+ ([8ade3db](https://github.com/ho-nl/m2-pwa/commit/8ade3dbe830f5a59af09c002dfa38fa5349a4b61))
1020
+
1021
+ ## [2.101.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.101.2...@graphcommerce/next-ui@2.101.3) (2021-07-21)
1022
+
1023
+ ### Bug Fixes
1024
+
1025
+ - unresponsive back button
1026
+ ([91d66d7](https://github.com/ho-nl/m2-pwa/commit/91d66d762281ef9e9ffe800bb68530073a3d76f1))
1027
+
1028
+ ## [2.101.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.101.1...@graphcommerce/next-ui@2.101.2) (2021-07-21)
1029
+
1030
+ ### Bug Fixes
1031
+
1032
+ - scrollbar layout shift when using layered nav
1033
+ ([f51f285](https://github.com/ho-nl/m2-pwa/commit/f51f28572e1f0116ef46869bd3eb988585e0d5b9))
1034
+
1035
+ # [2.101.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@2.100.10...@graphcommerce/next-ui@2.101.0) (2021-07-20)
1036
+
1037
+ ### Bug Fixes
1038
+
1039
+ - back button behavior
1040
+ ([59f7b20](https://github.com/ho-nl/m2-pwa/commit/59f7b2047194c3506037fc88d791302c7c4a1a69))
1041
+ - big indicator on mobile
1042
+ ([2204f9d](https://github.com/ho-nl/m2-pwa/commit/2204f9d219e79af29acdd2db643df06184ae3af5))
1043
+ - blue back button
1044
+ ([0f134ff](https://github.com/ho-nl/m2-pwa/commit/0f134ffb249e3d7e4885244a6f79b7c4728f7f1b))
1045
+ - cart fab box shadow animation
1046
+ ([4c73e42](https://github.com/ho-nl/m2-pwa/commit/4c73e423a920f6485f72b24141cccda010a35ab7))
1047
+ - close overlay using esc key
1048
+ ([c74940f](https://github.com/ho-nl/m2-pwa/commit/c74940f7c44405ff958ec3e9ceb3f998d98ce35d))
1049
+ - **conten-header:** remove back button box shadow on mobile
1050
+ ([652c778](https://github.com/ho-nl/m2-pwa/commit/652c77826b7765acc9d450ffcfe4a2b3052b80da))
1051
+ - content header title typography
1052
+ ([1eb2dc9](https://github.com/ho-nl/m2-pwa/commit/1eb2dc94f191f3fb29a470b06a21b1c3bab7744b))
1053
+ - **content-header:** icon sizes
1054
+ ([a037ec3](https://github.com/ho-nl/m2-pwa/commit/a037ec3dc3c87d54bb8aea0d2d6b78c05d9afc63))
1055
+ - drag handle rotation
1056
+ ([b1b0dcb](https://github.com/ho-nl/m2-pwa/commit/b1b0dcbfa822fdbae621e9ff121186ec97a65876))
1057
+ - header spacing
1058
+ ([967573a](https://github.com/ho-nl/m2-pwa/commit/967573a12f3651f2be47e4630dab737ccf8bf498))
1059
+ - **icon-header:** optional no margin prop
1060
+ ([4b189a1](https://github.com/ho-nl/m2-pwa/commit/4b189a12a543825a2036a12a7c06f40f2dd033ba))
1061
+ - ignore md files from triggering version updates
1062
+ ([4f98392](https://github.com/ho-nl/m2-pwa/commit/4f9839250b3a32d3070da5290e5efcc5e2243fba))
1063
+ - only cart should be fixed on scroll
1064
+ ([9c8f536](https://github.com/ho-nl/m2-pwa/commit/9c8f5366c53798b377dcf397822b0945774b1dce))
1065
+ - SheetPrimaryAction doesn’t accept a ref
1066
+ ([d4b4ae2](https://github.com/ho-nl/m2-pwa/commit/d4b4ae2721144ece22180dfe10bde0b0437f2454))
1067
+ - spacing consistency between app shells
1068
+ ([c57ad81](https://github.com/ho-nl/m2-pwa/commit/c57ad81a1784ca6737ccfa0d7d33c3a5d19d1654))
1069
+ - spacings
1070
+ ([332954f](https://github.com/ho-nl/m2-pwa/commit/332954f92f62ff57391192242fb95e26c6de1aae))
1071
+
1072
+ ### Features
1073
+
1074
+ - **button:** pill-link variant
1075
+ ([a6d837a](https://github.com/ho-nl/m2-pwa/commit/a6d837adf73fedb4490d9eafb1a7b87e9931ecb3))
1076
+ - cart fab on mobile
1077
+ ([bd2e9eb](https://github.com/ho-nl/m2-pwa/commit/bd2e9ebe056ba9a81b5c7228f1e5be57171266f4))
1078
+ - content header component
1079
+ ([9cf58cd](https://github.com/ho-nl/m2-pwa/commit/9cf58cd5ced3e89237fc04076aa0fae3618205ef))
1080
+ - content header context
1081
+ ([95b010a](https://github.com/ho-nl/m2-pwa/commit/95b010a175b7e6875da928f4abe4c45fc5c9e942))
1082
+ - **content-header:** text buttons on mobile - pill buttons on desktop
1083
+ ([1438838](https://github.com/ho-nl/m2-pwa/commit/1438838fbd2aac1e3510368f2a657314ebd05d2d))
1084
+ - **content-header:** title animation based on header height
1085
+ ([3eae793](https://github.com/ho-nl/m2-pwa/commit/3eae793c660c64c0862257907f268ae85d5f6e54))
1086
+ - convert account
1087
+ ([b2ad16a](https://github.com/ho-nl/m2-pwa/commit/b2ad16aeb054ff89688e9fcdd4b5f2081f88aa3c))
1088
+ - full page ui back and menu button position swap
1089
+ ([93b3419](https://github.com/ho-nl/m2-pwa/commit/93b34197947d133f4d1480c4ce68a0302201b858))
1090
+ - full page ui desktop variant
1091
+ ([a70f301](https://github.com/ho-nl/m2-pwa/commit/a70f3013da36fa131f82fb44457b107fb7705df6))
1092
+ - minimal page shell
1093
+ ([1693674](https://github.com/ho-nl/m2-pwa/commit/1693674631fc8438c60d9b74b73e607e08971a2d))
1094
+ - new app shell components
1095
+ ([2db3b7a](https://github.com/ho-nl/m2-pwa/commit/2db3b7a646f45ac273679770715d23e3472e9d2c))