@graphcommerce/next-ui 10.0.0-canary.72 → 10.0.1-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ActionCard/ActionCard.tsx +47 -45
- package/CHANGELOG.md +33 -203
- package/package.json +8 -8
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { BoxProps, ButtonProps, SxProps, Theme } from '@mui/material'
|
|
2
2
|
import { Box, ButtonBase } from '@mui/material'
|
|
3
|
-
import React from 'react'
|
|
3
|
+
import type React from 'react'
|
|
4
4
|
import { extendableComponent, responsiveVal } from '../Styles'
|
|
5
5
|
import { breakpointVal } from '../Styles/breakpointVal'
|
|
6
6
|
import { sxx } from '../utils/sxx'
|
|
@@ -345,50 +345,52 @@ export function ActionCard<C extends React.ElementType = typeof Box>(props: Acti
|
|
|
345
345
|
)}
|
|
346
346
|
</Box>
|
|
347
347
|
</Box>
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
{
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
(
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
{
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
348
|
+
{(action || reset || (price && !disabled)) && (
|
|
349
|
+
<Box
|
|
350
|
+
className={classes.end}
|
|
351
|
+
sx={sxx(
|
|
352
|
+
{
|
|
353
|
+
display: 'flex',
|
|
354
|
+
flexDirection: 'column',
|
|
355
|
+
justifyContent: 'space-between',
|
|
356
|
+
alignItems: 'flex-end',
|
|
357
|
+
},
|
|
358
|
+
slotProps.end?.sx,
|
|
359
|
+
)}
|
|
360
|
+
{...slotProps.end}
|
|
361
|
+
>
|
|
362
|
+
{(action || reset) && (
|
|
363
|
+
<Box
|
|
364
|
+
className={classes.action}
|
|
365
|
+
sx={sxx(
|
|
366
|
+
(theme) => ({ marginBottom: '5px', color: theme.vars.palette[color].main }),
|
|
367
|
+
slotProps.action?.sx,
|
|
368
|
+
)}
|
|
369
|
+
{...slotProps.action}
|
|
370
|
+
>
|
|
371
|
+
{!selected ? action : reset}
|
|
372
|
+
</Box>
|
|
373
|
+
)}
|
|
374
|
+
{price && !disabled && (
|
|
375
|
+
<Box
|
|
376
|
+
className={classes.price}
|
|
377
|
+
sx={sxx(
|
|
378
|
+
{
|
|
379
|
+
textAlign: 'right',
|
|
380
|
+
typography: 'body1',
|
|
381
|
+
'&.sizeMedium': { typography: 'subtitle1' },
|
|
382
|
+
'&.sizeLarge': { typography: 'h6' },
|
|
383
|
+
'&.sizeResponsive': { typography: { xs: 'body1', md: 'subtitle1', lg: 'h6' } },
|
|
384
|
+
},
|
|
385
|
+
slotProps.price?.sx,
|
|
386
|
+
)}
|
|
387
|
+
{...slotProps.price}
|
|
388
|
+
>
|
|
389
|
+
{price}
|
|
390
|
+
</Box>
|
|
391
|
+
)}
|
|
392
|
+
</Box>
|
|
393
|
+
)}
|
|
392
394
|
</Box>
|
|
393
395
|
{after && (
|
|
394
396
|
<Box className={classes.after} sx={sxx({}, slotProps.after?.sx)} {...slotProps.after}>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,58 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 10.0.
|
|
4
|
-
|
|
5
|
-
## 10.0.0-canary.71
|
|
6
|
-
|
|
7
|
-
## 10.0.0-canary.70
|
|
8
|
-
|
|
9
|
-
### Major Changes
|
|
10
|
-
|
|
11
|
-
- [#2565](https://github.com/graphcommerce-org/graphcommerce/pull/2565) [`c96dfcd`](https://github.com/graphcommerce-org/graphcommerce/commit/c96dfcdca981baca387c270ad9e2b9515cdd00cc) - Updated to Apollo Client 4 ([@paales](https://github.com/paales))
|
|
12
|
-
|
|
13
|
-
## 10.0.0-canary.69
|
|
14
|
-
|
|
15
|
-
### Patch Changes
|
|
16
|
-
|
|
17
|
-
- [#2567](https://github.com/graphcommerce-org/graphcommerce/pull/2567) [`a0ba773`](https://github.com/graphcommerce-org/graphcommerce/commit/a0ba773171bb76c7a998deb5bbacd974e5a3764d) - Fix LayoutOverlayHeader2 text overflowing beyond overlay size constraints ([@paales](https://github.com/paales))
|
|
18
|
-
|
|
19
|
-
- [#2567](https://github.com/graphcommerce-org/graphcommerce/pull/2567) [`4908a45`](https://github.com/graphcommerce-org/graphcommerce/commit/4908a457cac15c429d83d6b9274a8be9c8277ef6) - Allow setting OverlayContainer props, such as event listeners ([@paales](https://github.com/paales))
|
|
20
|
-
|
|
21
|
-
## 10.0.0-canary.68
|
|
22
|
-
|
|
23
|
-
### Major Changes
|
|
24
|
-
|
|
25
|
-
- [#2557](https://github.com/graphcommerce-org/graphcommerce/pull/2557) [`ceaadd8`](https://github.com/graphcommerce-org/graphcommerce/commit/ceaadd87f0648982a068a3b07b1fa149c9127f49) - ## Material UI v5 → v7 Migration
|
|
26
|
-
|
|
27
|
-
This release upgrades Material UI from v5 to v7 with full CSS variables support. ([@paales](https://github.com/paales))
|
|
28
|
-
|
|
29
|
-
## 10.0.0-canary.67
|
|
30
|
-
|
|
31
|
-
## 10.0.0-canary.66
|
|
32
|
-
|
|
33
|
-
## 10.0.0-canary.65
|
|
3
|
+
## 10.0.1-canary.0
|
|
34
4
|
|
|
35
5
|
### Patch Changes
|
|
36
6
|
|
|
37
|
-
- [#
|
|
38
|
-
|
|
39
|
-
## 10.0.0-canary.64
|
|
40
|
-
|
|
41
|
-
## 10.0.0-canary.63
|
|
42
|
-
|
|
43
|
-
## 10.0.0-canary.62
|
|
44
|
-
|
|
45
|
-
## 10.0.0-canary.61
|
|
46
|
-
|
|
47
|
-
## 10.0.0-canary.60
|
|
48
|
-
|
|
49
|
-
## 10.0.0-canary.59
|
|
7
|
+
- [#2568](https://github.com/graphcommerce-org/graphcommerce/pull/2568) [`16efe30`](https://github.com/graphcommerce-org/graphcommerce/commit/16efe30d114977d90ee26159a2f6476ef34de3d1) - Hide ActionCard-end if there is no content ([@paales](https://github.com/paales))
|
|
50
8
|
|
|
51
|
-
## 10.0.0
|
|
52
|
-
|
|
53
|
-
## 10.0.0-canary.57
|
|
54
|
-
|
|
55
|
-
## 10.0.0-canary.56
|
|
9
|
+
## 10.0.0
|
|
56
10
|
|
|
57
11
|
### Major Changes
|
|
58
12
|
|
|
@@ -132,199 +86,75 @@
|
|
|
132
86
|
- `@mui/*` modern alias rewrites
|
|
133
87
|
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
134
88
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
### Patch Changes
|
|
138
|
-
|
|
139
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`87fc3c2`](https://github.com/graphcommerce-org/graphcommerce/commit/87fc3c28165c7c66b48882b0f044bbc9b63b9846) - Created new Tabs and TabItem component to be used for MultiCart setup ([@paales](https://github.com/paales))
|
|
140
|
-
|
|
141
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`286a20e`](https://github.com/graphcommerce-org/graphcommerce/commit/286a20e01f2a565f058415fa1c8dfbb2eeb3163b) - Added an OverlayCloseButton and implemented it for various locations. ([@paales](https://github.com/paales))
|
|
142
|
-
|
|
143
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`65dcefb`](https://github.com/graphcommerce-org/graphcommerce/commit/65dcefb8740166fd5df662e0e895c65d70273393) - Solve hydration error because multiple literals could be in a DateTimeFormat ([@paales](https://github.com/paales))
|
|
144
|
-
|
|
145
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`88fd114`](https://github.com/graphcommerce-org/graphcommerce/commit/88fd11485f9368e79d277fa45942e58214f794a6) - Created a LayoutOverlayHeader2 that does not support any floating modes or something and thus is simpler to customize. ([@paales](https://github.com/paales))
|
|
146
|
-
|
|
147
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`23793aa`](https://github.com/graphcommerce-org/graphcommerce/commit/23793aab26455b1bea0d1b3b37c96a228b656bc4) - Prevent excessive rerender when multiple images with the same url are in a product ([@paales](https://github.com/paales))
|
|
148
|
-
|
|
149
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`a419257`](https://github.com/graphcommerce-org/graphcommerce/commit/a4192571eb2332630ba3d103f61ff69dac8b2e5c) - Solve issue where the sidebar wasn't 100% width on the PDP on mobile ([@paales](https://github.com/paales))
|
|
150
|
-
|
|
151
|
-
## 9.1.0-canary.54
|
|
152
|
-
|
|
153
|
-
## 9.1.0-canary.53
|
|
154
|
-
|
|
155
|
-
## 9.1.0-canary.52
|
|
156
|
-
|
|
157
|
-
## 9.1.0-canary.51
|
|
158
|
-
|
|
159
|
-
## 9.1.0-canary.50
|
|
160
|
-
|
|
161
|
-
## 9.1.0-canary.49
|
|
162
|
-
|
|
163
|
-
## 9.1.0-canary.48
|
|
164
|
-
|
|
165
|
-
## 9.1.0-canary.47
|
|
166
|
-
|
|
167
|
-
### Patch Changes
|
|
168
|
-
|
|
169
|
-
- [`4564271`](https://github.com/graphcommerce-org/graphcommerce/commit/4564271e702aab11c28e425029f4a7c09a4d5d61) - Created a revalidate method that returns a single value so that it can be overwritten centrally ([@paales](https://github.com/paales))
|
|
170
|
-
|
|
171
|
-
## 9.1.0-canary.46
|
|
172
|
-
|
|
173
|
-
## 9.1.0-canary.45
|
|
174
|
-
|
|
175
|
-
## 9.1.0-canary.44
|
|
176
|
-
|
|
177
|
-
### Patch Changes
|
|
178
|
-
|
|
179
|
-
- [`b423879`](https://github.com/graphcommerce-org/graphcommerce/commit/b4238796f1f8cce62325e57d90cc7a84a921a0fa) - DateTimeFormat, NumberFormat and RelativeTimeFormat (and all derivatives) will now wrap all number parts in a span, so that individual parts can be styled properly. ([@paales](https://github.com/paales))
|
|
180
|
-
|
|
181
|
-
## 9.1.0-canary.43
|
|
182
|
-
|
|
183
|
-
## 9.1.0-canary.42
|
|
184
|
-
|
|
185
|
-
## 9.1.0-canary.41
|
|
186
|
-
|
|
187
|
-
## 9.1.0-canary.40
|
|
188
|
-
|
|
189
|
-
## 9.1.0-canary.39
|
|
190
|
-
|
|
191
|
-
## 9.1.0-canary.38
|
|
89
|
+
- [#2557](https://github.com/graphcommerce-org/graphcommerce/pull/2557) [`ceaadd8`](https://github.com/graphcommerce-org/graphcommerce/commit/ceaadd87f0648982a068a3b07b1fa149c9127f49) - ## Material UI v5 → v7 Migration
|
|
192
90
|
|
|
193
|
-
|
|
91
|
+
This release upgrades Material UI from v5 to v7 with full CSS variables support. ([@paales](https://github.com/paales))
|
|
194
92
|
|
|
195
|
-
|
|
93
|
+
- [#2565](https://github.com/graphcommerce-org/graphcommerce/pull/2565) [`c96dfcd`](https://github.com/graphcommerce-org/graphcommerce/commit/c96dfcdca981baca387c270ad9e2b9515cdd00cc) - Updated to Apollo Client 4 ([@paales](https://github.com/paales))
|
|
196
94
|
|
|
197
95
|
### Patch Changes
|
|
198
96
|
|
|
199
|
-
- [`
|
|
200
|
-
|
|
201
|
-
## 9.1.0-canary.35
|
|
202
|
-
|
|
203
|
-
### Patch Changes
|
|
97
|
+
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`87fc3c2`](https://github.com/graphcommerce-org/graphcommerce/commit/87fc3c28165c7c66b48882b0f044bbc9b63b9846) - Created new Tabs and TabItem component to be used for MultiCart setup ([@paales](https://github.com/paales))
|
|
204
98
|
|
|
205
99
|
- [#2528](https://github.com/graphcommerce-org/graphcommerce/pull/2528) [`6a3e7f9`](https://github.com/graphcommerce-org/graphcommerce/commit/6a3e7f9bec6d03c146718ad594b064a75b536e99) - cssFlag and cssNotFlag css selector can now select values ([@paales](https://github.com/paales))
|
|
206
100
|
|
|
207
|
-
- [#
|
|
208
|
-
|
|
209
|
-
- [#2528](https://github.com/graphcommerce-org/graphcommerce/pull/2528) [`f89210b`](https://github.com/graphcommerce-org/graphcommerce/commit/f89210b09e64f520d308cb1bac693c027be1ac46) - Solve issue where the MenuFabSecondaryItem coudn't handle text overflow. ([@paales](https://github.com/paales))
|
|
210
|
-
|
|
211
|
-
## 9.1.0-canary.34
|
|
212
|
-
|
|
213
|
-
## 9.1.0-canary.33
|
|
214
|
-
|
|
215
|
-
## 9.1.0-canary.32
|
|
216
|
-
|
|
217
|
-
## 9.1.0-canary.31
|
|
101
|
+
- [#2510](https://github.com/graphcommerce-org/graphcommerce/pull/2510) [`40ccfed`](https://github.com/graphcommerce-org/graphcommerce/commit/40ccfed07592c67ccf80311c821a01526e87dbcc) - Added missing href to secondary menu items ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
218
102
|
|
|
219
|
-
|
|
103
|
+
- [#2567](https://github.com/graphcommerce-org/graphcommerce/pull/2567) [`a0ba773`](https://github.com/graphcommerce-org/graphcommerce/commit/a0ba773171bb76c7a998deb5bbacd974e5a3764d) - Fix LayoutOverlayHeader2 text overflowing beyond overlay size constraints ([@paales](https://github.com/paales))
|
|
220
104
|
|
|
221
|
-
|
|
105
|
+
- [#2493](https://github.com/graphcommerce-org/graphcommerce/pull/2493) [`a34c276`](https://github.com/graphcommerce-org/graphcommerce/commit/a34c276b69f9ff1a727023eef64f2db8b196864c) - Added lots of missing icon exports ([@paales](https://github.com/paales))
|
|
222
106
|
|
|
223
|
-
|
|
107
|
+
- [#2473](https://github.com/graphcommerce-org/graphcommerce/pull/2473) [`8df172e`](https://github.com/graphcommerce-org/graphcommerce/commit/8df172e4fa1364892d53bc96a437d037d245de35) - Do not warn about `:first-child` since all css is hoisted out of the components. ([@paales](https://github.com/paales))
|
|
224
108
|
|
|
225
|
-
|
|
109
|
+
- [#2493](https://github.com/graphcommerce-org/graphcommerce/pull/2493) [`2a09ca9`](https://github.com/graphcommerce-org/graphcommerce/commit/2a09ca933e0de88dc32dac5ae62f41b0e5953359) - Intl components now accept the sx prop. `<RelativeToTimeFormat />` now expects a date prop instead of children. ([@paales](https://github.com/paales))
|
|
226
110
|
|
|
227
|
-
|
|
111
|
+
- [#2567](https://github.com/graphcommerce-org/graphcommerce/pull/2567) [`4908a45`](https://github.com/graphcommerce-org/graphcommerce/commit/4908a457cac15c429d83d6b9274a8be9c8277ef6) - Allow setting OverlayContainer props, such as event listeners ([@paales](https://github.com/paales))
|
|
228
112
|
|
|
229
|
-
|
|
113
|
+
- [#2470](https://github.com/graphcommerce-org/graphcommerce/pull/2470) [`8f047a0`](https://github.com/graphcommerce-org/graphcommerce/commit/8f047a0860f9b915717f6db52be64805094d0b09) - Modify the type that is exposed for createTheme, should be faster for TypeScript to check. ([@paales](https://github.com/paales))
|
|
230
114
|
|
|
231
|
-
|
|
115
|
+
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`1e38811`](https://github.com/graphcommerce-org/graphcommerce/commit/1e3881177065548165b7141a29cff8ab27692b25) - Added support for meta_keyword for products and categories ([@paales](https://github.com/paales))
|
|
232
116
|
|
|
233
|
-
- [#
|
|
117
|
+
- [#2473](https://github.com/graphcommerce-org/graphcommerce/pull/2473) [`b076b2a`](https://github.com/graphcommerce-org/graphcommerce/commit/b076b2ae4881bebf1d2debd5333a83f220c26ca7) - Also accept false as value for sxx ([@paales](https://github.com/paales))
|
|
234
118
|
|
|
235
|
-
|
|
119
|
+
- [#2478](https://github.com/graphcommerce-org/graphcommerce/pull/2478) [`32bccbb`](https://github.com/graphcommerce-org/graphcommerce/commit/32bccbba4b000247d7e01e487f6d48b6dec07fb5) - Nesting multiple Containers will not increase the padding, will only be applied once. ([@paales](https://github.com/paales))
|
|
236
120
|
|
|
237
|
-
|
|
121
|
+
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`286a20e`](https://github.com/graphcommerce-org/graphcommerce/commit/286a20e01f2a565f058415fa1c8dfbb2eeb3163b) - Added an OverlayCloseButton and implemented it for various locations. ([@paales](https://github.com/paales))
|
|
238
122
|
|
|
239
|
-
|
|
123
|
+
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`65dcefb`](https://github.com/graphcommerce-org/graphcommerce/commit/65dcefb8740166fd5df662e0e895c65d70273393) - Solve hydration error because multiple literals could be in a DateTimeFormat ([@paales](https://github.com/paales))
|
|
240
124
|
|
|
241
|
-
|
|
125
|
+
- [#2543](https://github.com/graphcommerce-org/graphcommerce/pull/2543) [`7e1e33e`](https://github.com/graphcommerce-org/graphcommerce/commit/7e1e33e6d6238155884ba80cf249209e8eb3d542) - Fix IconBlocks width ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
242
126
|
|
|
243
|
-
- [#
|
|
127
|
+
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`88fd114`](https://github.com/graphcommerce-org/graphcommerce/commit/88fd11485f9368e79d277fa45942e58214f794a6) - Created a LayoutOverlayHeader2 that does not support any floating modes or something and thus is simpler to customize. ([@paales](https://github.com/paales))
|
|
244
128
|
|
|
245
129
|
- [#2510](https://github.com/graphcommerce-org/graphcommerce/pull/2510) [`a79d7c2`](https://github.com/graphcommerce-org/graphcommerce/commit/a79d7c28da5ba227c3c3ff957149a732f3d71a39) - Added ripple to BlogTags ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
246
130
|
|
|
247
|
-
- [#
|
|
248
|
-
|
|
249
|
-
- [#2510](https://github.com/graphcommerce-org/graphcommerce/pull/2510) [`7665579`](https://github.com/graphcommerce-org/graphcommerce/commit/76655792129dfa4fec3395a94b73e6761d323335) - Fixed back button width in overlays with long titles ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
250
|
-
|
|
251
|
-
- [#2510](https://github.com/graphcommerce-org/graphcommerce/pull/2510) [`b536019`](https://github.com/graphcommerce-org/graphcommerce/commit/b53601965924ece86ee991bdb2b5897b3e7c642a) - Update various props from ReactElement to ReactNode to allow string values ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
252
|
-
|
|
253
|
-
## 9.1.0-canary.21
|
|
254
|
-
|
|
255
|
-
## 9.1.0-canary.20
|
|
256
|
-
|
|
257
|
-
## 9.1.0-canary.19
|
|
258
|
-
|
|
259
|
-
### Patch Changes
|
|
260
|
-
|
|
261
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`1e38811`](https://github.com/graphcommerce-org/graphcommerce/commit/1e3881177065548165b7141a29cff8ab27692b25) - Added support for meta_keyword for products and categories ([@paales](https://github.com/paales))
|
|
262
|
-
|
|
263
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`340c8ef`](https://github.com/graphcommerce-org/graphcommerce/commit/340c8ef93248a120cc4b92a6cd91f775ae662a1f) - Solve issue where ActionCard would crash the whole app because it forwarded components to string attributes ([@paales](https://github.com/paales))
|
|
264
|
-
|
|
265
|
-
## 9.1.0-canary.18
|
|
266
|
-
|
|
267
|
-
## 9.1.0-canary.17
|
|
268
|
-
|
|
269
|
-
## 9.1.0-canary.16
|
|
131
|
+
- [#2528](https://github.com/graphcommerce-org/graphcommerce/pull/2528) [`a4344ed`](https://github.com/graphcommerce-org/graphcommerce/commit/a4344ed7ff7b3b5f88185c1f6a5fc4b6306fc472) - Created a useCookie hook that is synced between usages ([@paales](https://github.com/paales))
|
|
270
132
|
|
|
271
|
-
|
|
133
|
+
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`23793aa`](https://github.com/graphcommerce-org/graphcommerce/commit/23793aab26455b1bea0d1b3b37c96a228b656bc4) - Prevent excessive rerender when multiple images with the same url are in a product ([@paales](https://github.com/paales))
|
|
272
134
|
|
|
273
|
-
|
|
135
|
+
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`a419257`](https://github.com/graphcommerce-org/graphcommerce/commit/a4192571eb2332630ba3d103f61ff69dac8b2e5c) - Solve issue where the sidebar wasn't 100% width on the PDP on mobile ([@paales](https://github.com/paales))
|
|
274
136
|
|
|
275
|
-
- [#
|
|
137
|
+
- [#2510](https://github.com/graphcommerce-org/graphcommerce/pull/2510) [`ef83f7d`](https://github.com/graphcommerce-org/graphcommerce/commit/ef83f7d04fe0cf70da19f795e837ee3bda9884d4) - Use a more sensible theme var for LayoutHeaderContent gap ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
276
138
|
|
|
277
|
-
- [#
|
|
139
|
+
- [#2517](https://github.com/graphcommerce-org/graphcommerce/pull/2517) [`547be7d`](https://github.com/graphcommerce-org/graphcommerce/commit/547be7d5ee39aca64ab4a9a80de66a01961990e4) - Fixed gallery zoom breaking on long sidebar content ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
278
140
|
|
|
279
141
|
- [#2493](https://github.com/graphcommerce-org/graphcommerce/pull/2493) [`05a1744`](https://github.com/graphcommerce-org/graphcommerce/commit/05a1744ddeca31c4d24128fd5cd2513a7c491d5b) - Added search params to NextLink whenever present ([@paales](https://github.com/paales))
|
|
280
142
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
## 9.0.4-canary.13
|
|
284
|
-
|
|
285
|
-
## 9.0.4-canary.12
|
|
286
|
-
|
|
287
|
-
## 9.0.4-canary.11
|
|
143
|
+
- [#2528](https://github.com/graphcommerce-org/graphcommerce/pull/2528) [`f89210b`](https://github.com/graphcommerce-org/graphcommerce/commit/f89210b09e64f520d308cb1bac693c027be1ac46) - Solve issue where the MenuFabSecondaryItem coudn't handle text overflow. ([@paales](https://github.com/paales))
|
|
288
144
|
|
|
289
|
-
|
|
145
|
+
- [`4564271`](https://github.com/graphcommerce-org/graphcommerce/commit/4564271e702aab11c28e425029f4a7c09a4d5d61) - Created a revalidate method that returns a single value so that it can be overwritten centrally ([@paales](https://github.com/paales))
|
|
290
146
|
|
|
291
147
|
- [#2485](https://github.com/graphcommerce-org/graphcommerce/pull/2485) [`b0ec078`](https://github.com/graphcommerce-org/graphcommerce/commit/b0ec0784a0b3ca977598ded3777d23bc929072b0) - Added a CurrencySymbol component that renders the current currency symbol ([@paales](https://github.com/paales))
|
|
292
148
|
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
## 9.0.4-canary.9
|
|
296
|
-
|
|
297
|
-
## 9.0.4-canary.8
|
|
298
|
-
|
|
299
|
-
## 9.0.4-canary.7
|
|
300
|
-
|
|
301
|
-
## 9.0.4-canary.6
|
|
302
|
-
|
|
303
|
-
### Patch Changes
|
|
304
|
-
|
|
305
|
-
- [#2478](https://github.com/graphcommerce-org/graphcommerce/pull/2478) [`32bccbb`](https://github.com/graphcommerce-org/graphcommerce/commit/32bccbba4b000247d7e01e487f6d48b6dec07fb5) - Nesting multiple Containers will not increase the padding, will only be applied once. ([@paales](https://github.com/paales))
|
|
306
|
-
|
|
307
|
-
## 9.0.4-canary.5
|
|
308
|
-
|
|
309
|
-
## 9.0.4-canary.4
|
|
310
|
-
|
|
311
|
-
## 9.0.4-canary.3
|
|
312
|
-
|
|
313
|
-
## 9.0.4-canary.2
|
|
314
|
-
|
|
315
|
-
### Patch Changes
|
|
316
|
-
|
|
317
|
-
- [#2473](https://github.com/graphcommerce-org/graphcommerce/pull/2473) [`8df172e`](https://github.com/graphcommerce-org/graphcommerce/commit/8df172e4fa1364892d53bc96a437d037d245de35) - Do not warn about `:first-child` since all css is hoisted out of the components. ([@paales](https://github.com/paales))
|
|
318
|
-
|
|
319
|
-
- [#2473](https://github.com/graphcommerce-org/graphcommerce/pull/2473) [`b076b2a`](https://github.com/graphcommerce-org/graphcommerce/commit/b076b2ae4881bebf1d2debd5333a83f220c26ca7) - Also accept false as value for sxx ([@paales](https://github.com/paales))
|
|
149
|
+
- [`b423879`](https://github.com/graphcommerce-org/graphcommerce/commit/b4238796f1f8cce62325e57d90cc7a84a921a0fa) - DateTimeFormat, NumberFormat and RelativeTimeFormat (and all derivatives) will now wrap all number parts in a span, so that individual parts can be styled properly. ([@paales](https://github.com/paales))
|
|
320
150
|
|
|
321
|
-
|
|
151
|
+
- [#2510](https://github.com/graphcommerce-org/graphcommerce/pull/2510) [`7665579`](https://github.com/graphcommerce-org/graphcommerce/commit/76655792129dfa4fec3395a94b73e6761d323335) - Fixed back button width in overlays with long titles ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
322
152
|
|
|
323
|
-
|
|
153
|
+
- [`90f8dd8`](https://github.com/graphcommerce-org/graphcommerce/commit/90f8dd89efd62e2b5a13e9c2bf265840d99e2473) - Create useCookies hook and simplify the useCookie query ([@paales](https://github.com/paales))
|
|
324
154
|
|
|
325
|
-
- [#
|
|
155
|
+
- [#2510](https://github.com/graphcommerce-org/graphcommerce/pull/2510) [`b536019`](https://github.com/graphcommerce-org/graphcommerce/commit/b53601965924ece86ee991bdb2b5897b3e7c642a) - Update various props from ReactElement to ReactNode to allow string values ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
326
156
|
|
|
327
|
-
|
|
157
|
+
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`340c8ef`](https://github.com/graphcommerce-org/graphcommerce/commit/340c8ef93248a120cc4b92a6cd91f775ae662a1f) - Solve issue where ActionCard would crash the whole app because it forwarded components to string attributes ([@paales](https://github.com/paales))
|
|
328
158
|
|
|
329
159
|
## 9.0.1
|
|
330
160
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "10.0.
|
|
5
|
+
"version": "10.0.1-canary.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"@emotion/react": "^11.14.0",
|
|
43
43
|
"@emotion/server": "^11.11.0",
|
|
44
44
|
"@emotion/styled": "^11.14.1",
|
|
45
|
-
"@graphcommerce/eslint-config-pwa": "^10.0.
|
|
46
|
-
"@graphcommerce/framer-next-pages": "^10.0.
|
|
47
|
-
"@graphcommerce/framer-scroller": "^10.0.
|
|
48
|
-
"@graphcommerce/framer-utils": "^10.0.
|
|
49
|
-
"@graphcommerce/image": "^10.0.
|
|
50
|
-
"@graphcommerce/prettier-config-pwa": "^10.0.
|
|
51
|
-
"@graphcommerce/typescript-config-pwa": "^10.0.
|
|
45
|
+
"@graphcommerce/eslint-config-pwa": "^10.0.1-canary.0",
|
|
46
|
+
"@graphcommerce/framer-next-pages": "^10.0.1-canary.0",
|
|
47
|
+
"@graphcommerce/framer-scroller": "^10.0.1-canary.0",
|
|
48
|
+
"@graphcommerce/framer-utils": "^10.0.1-canary.0",
|
|
49
|
+
"@graphcommerce/image": "^10.0.1-canary.0",
|
|
50
|
+
"@graphcommerce/prettier-config-pwa": "^10.0.1-canary.0",
|
|
51
|
+
"@graphcommerce/typescript-config-pwa": "^10.0.1-canary.0",
|
|
52
52
|
"@lingui/core": "^5",
|
|
53
53
|
"@lingui/macro": "^5",
|
|
54
54
|
"@lingui/react": "^5",
|