@graphcommerce/next-ui 10.0.0 → 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 +6 -326
- 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,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 10.0.1-canary.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
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))
|
|
8
|
+
|
|
3
9
|
## 10.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
|
@@ -150,332 +156,6 @@
|
|
|
150
156
|
|
|
151
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))
|
|
152
158
|
|
|
153
|
-
## 10.0.0-canary.72
|
|
154
|
-
|
|
155
|
-
## 10.0.0-canary.71
|
|
156
|
-
|
|
157
|
-
## 10.0.0-canary.70
|
|
158
|
-
|
|
159
|
-
### Major Changes
|
|
160
|
-
|
|
161
|
-
- [#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))
|
|
162
|
-
|
|
163
|
-
## 10.0.0-canary.69
|
|
164
|
-
|
|
165
|
-
### Patch Changes
|
|
166
|
-
|
|
167
|
-
- [#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))
|
|
168
|
-
|
|
169
|
-
- [#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))
|
|
170
|
-
|
|
171
|
-
## 10.0.0-canary.68
|
|
172
|
-
|
|
173
|
-
### Major Changes
|
|
174
|
-
|
|
175
|
-
- [#2557](https://github.com/graphcommerce-org/graphcommerce/pull/2557) [`ceaadd8`](https://github.com/graphcommerce-org/graphcommerce/commit/ceaadd87f0648982a068a3b07b1fa149c9127f49) - ## Material UI v5 → v7 Migration
|
|
176
|
-
|
|
177
|
-
This release upgrades Material UI from v5 to v7 with full CSS variables support. ([@paales](https://github.com/paales))
|
|
178
|
-
|
|
179
|
-
## 10.0.0-canary.67
|
|
180
|
-
|
|
181
|
-
## 10.0.0-canary.66
|
|
182
|
-
|
|
183
|
-
## 10.0.0-canary.65
|
|
184
|
-
|
|
185
|
-
### Patch Changes
|
|
186
|
-
|
|
187
|
-
- [#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))
|
|
188
|
-
|
|
189
|
-
## 10.0.0-canary.64
|
|
190
|
-
|
|
191
|
-
## 10.0.0-canary.63
|
|
192
|
-
|
|
193
|
-
## 10.0.0-canary.62
|
|
194
|
-
|
|
195
|
-
## 10.0.0-canary.61
|
|
196
|
-
|
|
197
|
-
## 10.0.0-canary.60
|
|
198
|
-
|
|
199
|
-
## 10.0.0-canary.59
|
|
200
|
-
|
|
201
|
-
## 10.0.0-canary.58
|
|
202
|
-
|
|
203
|
-
## 10.0.0-canary.57
|
|
204
|
-
|
|
205
|
-
## 10.0.0-canary.56
|
|
206
|
-
|
|
207
|
-
### Major Changes
|
|
208
|
-
|
|
209
|
-
- [#2546](https://github.com/graphcommerce-org/graphcommerce/pull/2546) [`ed9332a`](https://github.com/graphcommerce-org/graphcommerce/commit/ed9332a7f78966d932041d9a7725641edc92b28d) - ## GraphCommerce 10 - Turbopack Support
|
|
210
|
-
|
|
211
|
-
This major release brings full Turbopack compatibility, dramatically improving development speed.
|
|
212
|
-
|
|
213
|
-
### 🚀 Turbopack-Compatible Interceptor System
|
|
214
|
-
|
|
215
|
-
The entire plugin/interceptor system has been rewritten to work with Turbopack:
|
|
216
|
-
|
|
217
|
-
- **No more Webpack plugins** - Removed `InterceptorPlugin` webpack plugin entirely
|
|
218
|
-
- **File-based interception** - Original files are moved to `.original.tsx` and replaced with interceptor content
|
|
219
|
-
- **Direct imports** - Interceptors import from `.original` files instead of embedding source
|
|
220
|
-
- **New CLI commands**:
|
|
221
|
-
- `graphcommerce codegen-interceptors` - Generate interceptor files
|
|
222
|
-
- `graphcommerce cleanup-interceptors` - Reset interceptor system, restore original files
|
|
223
|
-
- **Stable file hashing** - Deterministic interceptor generation for better caching
|
|
224
|
-
|
|
225
|
-
### ⚙️ Treeshakable Configuration System
|
|
226
|
-
|
|
227
|
-
Replaced Webpack `DefinePlugin`-based `import.meta.graphCommerce` with a new generated configuration system:
|
|
228
|
-
|
|
229
|
-
- **New `codegen-config-values` command** - Generates TypeScript files with precise typing
|
|
230
|
-
- **Schema-driven** - Dynamically introspects Zod schemas to determine all available properties
|
|
231
|
-
- **Fully treeshakable** - Unused config values are eliminated from the bundle
|
|
232
|
-
- **Type-safe** - Uses `Get<GraphCommerceConfig, 'path'>` for nested property access
|
|
233
|
-
- **Separate files for nested objects** - Optimal treeshaking for complex configurations
|
|
234
|
-
|
|
235
|
-
### 🔧 withGraphCommerce Changes
|
|
236
|
-
|
|
237
|
-
- **Removed** `InterceptorPlugin` - No longer needed with file-based interception
|
|
238
|
-
- **Removed** `DefinePlugin` for `import.meta.graphCommerce` - Replaced with generated config
|
|
239
|
-
- **Removed** `@mui/*` alias rewrites - No longer required
|
|
240
|
-
- **Added** Turbopack loader rules for `.yaml`, `.yml`, and `.po` files
|
|
241
|
-
- **Added** `serverExternalPackages` for all `@whatwg-node/*` packages
|
|
242
|
-
- **Added** `optimizePackageImports` for better bundle optimization
|
|
243
|
-
- **Added** `images.qualities: [52, 75]` for Next.js image optimization
|
|
244
|
-
|
|
245
|
-
### 📦 Lingui Configuration
|
|
246
|
-
|
|
247
|
-
- **Renamed** `lingui.config.js` → `lingui.config.ts` with TypeScript support
|
|
248
|
-
- **Updated** `@graphcommerce/lingui-next/config` to TypeScript with proper exports
|
|
249
|
-
- **Simplified** formatter options
|
|
250
|
-
|
|
251
|
-
### ⚛️ React 19 & Next.js 16 Compatibility
|
|
252
|
-
|
|
253
|
-
- Updated `RefObject<T>` types for React 19 (now includes `null` by default)
|
|
254
|
-
- Replaced deprecated `React.VFC` with `React.FC`
|
|
255
|
-
- Fixed `useRef` calls to require explicit initial values
|
|
256
|
-
- Updated `MutableRefObject` usage in `framer-scroller`
|
|
257
|
-
|
|
258
|
-
### 📋 ESLint 9 Flat Config
|
|
259
|
-
|
|
260
|
-
- Migrated from legacy `.eslintrc` to new flat config format (`eslint.config.mjs`)
|
|
261
|
-
- Updated `@typescript-eslint/*` packages to v8
|
|
262
|
-
- Fixed AST selector for `SxProps` rule (`typeParameters` → `typeArguments`)
|
|
263
|
-
|
|
264
|
-
### 🔄 Apollo Client
|
|
265
|
-
|
|
266
|
-
- Fixed deprecated `name` option → `clientAwareness: { name: 'ssr' }`
|
|
267
|
-
- Updated error handling types to accept `ApolloError | null | undefined`
|
|
268
|
-
|
|
269
|
-
### ⚠️ Breaking Changes
|
|
270
|
-
|
|
271
|
-
- **Node.js 24.x not supported** - Restricted to `>=20 <24.0.0` due to [nodejs/undici#4290](https://github.com/nodejs/undici/issues/4290)
|
|
272
|
-
- **Interceptor files changed** - Original components now at `.original.tsx`
|
|
273
|
-
- **Config access changed** - Use generated config values instead of `import.meta.graphCommerce`
|
|
274
|
-
- **ESLint config format** - Must use flat config (`eslint.config.mjs`)
|
|
275
|
-
- **Lingui config** - Rename `lingui.config.js` to `lingui.config.ts`
|
|
276
|
-
|
|
277
|
-
### 🗑️ Removed
|
|
278
|
-
|
|
279
|
-
- `InterceptorPlugin` webpack plugin
|
|
280
|
-
- `configToImportMeta` utility
|
|
281
|
-
- Webpack `DefinePlugin` usage for config
|
|
282
|
-
- `@mui/*` modern alias rewrites
|
|
283
|
-
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
284
|
-
|
|
285
|
-
## 9.1.0-canary.55
|
|
286
|
-
|
|
287
|
-
### Patch Changes
|
|
288
|
-
|
|
289
|
-
- [#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))
|
|
290
|
-
|
|
291
|
-
- [#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))
|
|
292
|
-
|
|
293
|
-
- [#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))
|
|
294
|
-
|
|
295
|
-
- [#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))
|
|
296
|
-
|
|
297
|
-
- [#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))
|
|
298
|
-
|
|
299
|
-
- [#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))
|
|
300
|
-
|
|
301
|
-
## 9.1.0-canary.54
|
|
302
|
-
|
|
303
|
-
## 9.1.0-canary.53
|
|
304
|
-
|
|
305
|
-
## 9.1.0-canary.52
|
|
306
|
-
|
|
307
|
-
## 9.1.0-canary.51
|
|
308
|
-
|
|
309
|
-
## 9.1.0-canary.50
|
|
310
|
-
|
|
311
|
-
## 9.1.0-canary.49
|
|
312
|
-
|
|
313
|
-
## 9.1.0-canary.48
|
|
314
|
-
|
|
315
|
-
## 9.1.0-canary.47
|
|
316
|
-
|
|
317
|
-
### Patch Changes
|
|
318
|
-
|
|
319
|
-
- [`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))
|
|
320
|
-
|
|
321
|
-
## 9.1.0-canary.46
|
|
322
|
-
|
|
323
|
-
## 9.1.0-canary.45
|
|
324
|
-
|
|
325
|
-
## 9.1.0-canary.44
|
|
326
|
-
|
|
327
|
-
### Patch Changes
|
|
328
|
-
|
|
329
|
-
- [`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))
|
|
330
|
-
|
|
331
|
-
## 9.1.0-canary.43
|
|
332
|
-
|
|
333
|
-
## 9.1.0-canary.42
|
|
334
|
-
|
|
335
|
-
## 9.1.0-canary.41
|
|
336
|
-
|
|
337
|
-
## 9.1.0-canary.40
|
|
338
|
-
|
|
339
|
-
## 9.1.0-canary.39
|
|
340
|
-
|
|
341
|
-
## 9.1.0-canary.38
|
|
342
|
-
|
|
343
|
-
## 9.1.0-canary.37
|
|
344
|
-
|
|
345
|
-
## 9.1.0-canary.36
|
|
346
|
-
|
|
347
|
-
### Patch Changes
|
|
348
|
-
|
|
349
|
-
- [`90f8dd8`](https://github.com/graphcommerce-org/graphcommerce/commit/90f8dd89efd62e2b5a13e9c2bf265840d99e2473) - Create useCookies hook and simplify the useCookie query ([@paales](https://github.com/paales))
|
|
350
|
-
|
|
351
|
-
## 9.1.0-canary.35
|
|
352
|
-
|
|
353
|
-
### Patch Changes
|
|
354
|
-
|
|
355
|
-
- [#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))
|
|
356
|
-
|
|
357
|
-
- [#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))
|
|
358
|
-
|
|
359
|
-
- [#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))
|
|
360
|
-
|
|
361
|
-
## 9.1.0-canary.34
|
|
362
|
-
|
|
363
|
-
## 9.1.0-canary.33
|
|
364
|
-
|
|
365
|
-
## 9.1.0-canary.32
|
|
366
|
-
|
|
367
|
-
## 9.1.0-canary.31
|
|
368
|
-
|
|
369
|
-
## 9.1.0-canary.30
|
|
370
|
-
|
|
371
|
-
## 9.1.0-canary.29
|
|
372
|
-
|
|
373
|
-
## 9.1.0-canary.28
|
|
374
|
-
|
|
375
|
-
## 9.1.0-canary.27
|
|
376
|
-
|
|
377
|
-
## 9.1.0-canary.26
|
|
378
|
-
|
|
379
|
-
## 9.1.0-canary.25
|
|
380
|
-
|
|
381
|
-
### Patch Changes
|
|
382
|
-
|
|
383
|
-
- [#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))
|
|
384
|
-
|
|
385
|
-
## 9.1.0-canary.24
|
|
386
|
-
|
|
387
|
-
## 9.1.0-canary.23
|
|
388
|
-
|
|
389
|
-
## 9.1.0-canary.22
|
|
390
|
-
|
|
391
|
-
### Patch Changes
|
|
392
|
-
|
|
393
|
-
- [#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))
|
|
394
|
-
|
|
395
|
-
- [#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))
|
|
396
|
-
|
|
397
|
-
- [#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))
|
|
398
|
-
|
|
399
|
-
- [#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))
|
|
400
|
-
|
|
401
|
-
- [#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))
|
|
402
|
-
|
|
403
|
-
## 9.1.0-canary.21
|
|
404
|
-
|
|
405
|
-
## 9.1.0-canary.20
|
|
406
|
-
|
|
407
|
-
## 9.1.0-canary.19
|
|
408
|
-
|
|
409
|
-
### Patch Changes
|
|
410
|
-
|
|
411
|
-
- [#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))
|
|
412
|
-
|
|
413
|
-
- [#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))
|
|
414
|
-
|
|
415
|
-
## 9.1.0-canary.18
|
|
416
|
-
|
|
417
|
-
## 9.1.0-canary.17
|
|
418
|
-
|
|
419
|
-
## 9.1.0-canary.16
|
|
420
|
-
|
|
421
|
-
## 9.1.0-canary.15
|
|
422
|
-
|
|
423
|
-
### Patch Changes
|
|
424
|
-
|
|
425
|
-
- [#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))
|
|
426
|
-
|
|
427
|
-
- [#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))
|
|
428
|
-
|
|
429
|
-
- [#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))
|
|
430
|
-
|
|
431
|
-
## 9.0.4-canary.14
|
|
432
|
-
|
|
433
|
-
## 9.0.4-canary.13
|
|
434
|
-
|
|
435
|
-
## 9.0.4-canary.12
|
|
436
|
-
|
|
437
|
-
## 9.0.4-canary.11
|
|
438
|
-
|
|
439
|
-
### Patch Changes
|
|
440
|
-
|
|
441
|
-
- [#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))
|
|
442
|
-
|
|
443
|
-
## 9.0.4-canary.10
|
|
444
|
-
|
|
445
|
-
## 9.0.4-canary.9
|
|
446
|
-
|
|
447
|
-
## 9.0.4-canary.8
|
|
448
|
-
|
|
449
|
-
## 9.0.4-canary.7
|
|
450
|
-
|
|
451
|
-
## 9.0.4-canary.6
|
|
452
|
-
|
|
453
|
-
### Patch Changes
|
|
454
|
-
|
|
455
|
-
- [#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))
|
|
456
|
-
|
|
457
|
-
## 9.0.4-canary.5
|
|
458
|
-
|
|
459
|
-
## 9.0.4-canary.4
|
|
460
|
-
|
|
461
|
-
## 9.0.4-canary.3
|
|
462
|
-
|
|
463
|
-
## 9.0.4-canary.2
|
|
464
|
-
|
|
465
|
-
### Patch Changes
|
|
466
|
-
|
|
467
|
-
- [#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))
|
|
468
|
-
|
|
469
|
-
- [#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))
|
|
470
|
-
|
|
471
|
-
## 9.0.4-canary.1
|
|
472
|
-
|
|
473
|
-
### Patch Changes
|
|
474
|
-
|
|
475
|
-
- [#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))
|
|
476
|
-
|
|
477
|
-
## 9.0.4-canary.0
|
|
478
|
-
|
|
479
159
|
## 9.0.1
|
|
480
160
|
|
|
481
161
|
### Patch Changes
|
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.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.0",
|
|
46
|
-
"@graphcommerce/framer-next-pages": "^10.0.0",
|
|
47
|
-
"@graphcommerce/framer-scroller": "^10.0.0",
|
|
48
|
-
"@graphcommerce/framer-utils": "^10.0.0",
|
|
49
|
-
"@graphcommerce/image": "^10.0.0",
|
|
50
|
-
"@graphcommerce/prettier-config-pwa": "^10.0.0",
|
|
51
|
-
"@graphcommerce/typescript-config-pwa": "^10.0.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",
|