@graphcommerce/magento-cart 4.2.11 → 4.2.14
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/CHANGELOG.md +67 -0
- package/components/ApolloCartError/ApolloCartErrorAlert.tsx +6 -3
- package/components/CartAgreementsForm/CartAgreementsForm.tsx +2 -2
- package/components/CartFab/CartFab.tsx +2 -2
- package/components/CartItemSummary/CartItemSummary.tsx +2 -2
- package/components/CartStartCheckout/CartStartCheckout.tsx +2 -2
- package/components/CartSummary/CartSummary.tsx +8 -7
- package/components/CartTotals/CartTotals.tsx +8 -7
- package/components/EmptyCart/EmptyCart.tsx +4 -4
- package/components/InlineAccount/InlineAccount.tsx +7 -7
- package/hooks/useCartIdCreate.ts +2 -2
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,72 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 4.2.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`c30893857`](https://github.com/graphcommerce-org/graphcommerce/commit/c3089385791291e812a48c2691a39a2325ee0439)]:
|
|
8
|
+
- @graphcommerce/magento-store@4.2.3
|
|
9
|
+
- @graphcommerce/magento-customer@4.2.12
|
|
10
|
+
|
|
11
|
+
## 4.2.13
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#1451](https://github.com/graphcommerce-org/graphcommerce/pull/1451) [`f698ff85d`](https://github.com/graphcommerce-org/graphcommerce/commit/f698ff85df6bb0922288471bb3c81856091b8061) Thanks [@paales](https://github.com/paales)! - Removed all occurences of @lingui/macro and moved to @lingui/macro / @lingui/core in preparation to move to swc.
|
|
16
|
+
|
|
17
|
+
Since we've removed @lingui/macro, all occurences need to be replaced with @lingui/core and @lingui/react.
|
|
18
|
+
|
|
19
|
+
All occurences of `<Trans>` and `t` need to be replaced:
|
|
20
|
+
|
|
21
|
+
```tsx
|
|
22
|
+
import { Trans, t } from '@lingui/macro'
|
|
23
|
+
|
|
24
|
+
function MyComponent() {
|
|
25
|
+
const foo = 'bar'
|
|
26
|
+
return (
|
|
27
|
+
<div aria-label={t`Account ${foo}`}>
|
|
28
|
+
<Trans>My Translation {foo}</Trans>
|
|
29
|
+
</div>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Needs to be replaced with:
|
|
35
|
+
|
|
36
|
+
```tsx
|
|
37
|
+
import { Trans } from '@lingui/react'
|
|
38
|
+
import { i18n } from '@lingui/core'
|
|
39
|
+
|
|
40
|
+
function MyComponent() {
|
|
41
|
+
const foo = 'bar'
|
|
42
|
+
return (
|
|
43
|
+
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
44
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
45
|
+
</div>
|
|
46
|
+
)
|
|
47
|
+
}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
[More examples for Trans](https://lingui.js.org/ref/macro.html#examples-of-jsx-macros) and [more examples for `t`](https://lingui.js.org/ref/macro.html#examples-of-js-macros)
|
|
51
|
+
|
|
52
|
+
- Updated dependencies [[`50188e378`](https://github.com/graphcommerce-org/graphcommerce/commit/50188e378b4c77561ebc600958ea11cd114fa61a), [`f698ff85d`](https://github.com/graphcommerce-org/graphcommerce/commit/f698ff85df6bb0922288471bb3c81856091b8061)]:
|
|
53
|
+
- @graphcommerce/react-hook-form@3.1.3
|
|
54
|
+
- @graphcommerce/ecommerce-ui@1.0.11
|
|
55
|
+
- @graphcommerce/framer-scroller@2.1.10
|
|
56
|
+
- @graphcommerce/magento-customer@4.2.11
|
|
57
|
+
- @graphcommerce/magento-store@4.2.2
|
|
58
|
+
- @graphcommerce/next-ui@4.7.2
|
|
59
|
+
- @graphcommerce/graphql@3.1.3
|
|
60
|
+
- @graphcommerce/magento-graphql@3.0.12
|
|
61
|
+
|
|
62
|
+
## 4.2.12
|
|
63
|
+
|
|
64
|
+
### Patch Changes
|
|
65
|
+
|
|
66
|
+
- Updated dependencies [[`7618f86da`](https://github.com/graphcommerce-org/graphcommerce/commit/7618f86da930929b10b6baf145646356b1bb3793)]:
|
|
67
|
+
- @graphcommerce/magento-graphql@3.0.11
|
|
68
|
+
- @graphcommerce/magento-customer@4.2.10
|
|
69
|
+
|
|
3
70
|
## 4.2.11
|
|
4
71
|
|
|
5
72
|
### Patch Changes
|
|
@@ -2,7 +2,8 @@ import { ApolloErrorAlert, ApolloErrorAlertProps } from '@graphcommerce/ecommerc
|
|
|
2
2
|
import { useQuery } from '@graphcommerce/graphql'
|
|
3
3
|
import { CustomerTokenDocument } from '@graphcommerce/magento-customer'
|
|
4
4
|
import { graphqlErrorByCategory } from '@graphcommerce/magento-graphql'
|
|
5
|
-
import {
|
|
5
|
+
import { i18n } from '@lingui/core'
|
|
6
|
+
import { Trans } from '@lingui/react'
|
|
6
7
|
import { Button } from '@mui/material'
|
|
7
8
|
import Link from 'next/link'
|
|
8
9
|
import { useClearCurrentCartId } from '../../hooks/useClearCurrentCartId'
|
|
@@ -22,14 +23,16 @@ export function ApolloCartErrorAlert(props: ApolloCartErrorAlertProps) {
|
|
|
22
23
|
const [, authorizationError] = graphqlErrorByCategory({
|
|
23
24
|
category: 'graphql-authorization',
|
|
24
25
|
error,
|
|
25
|
-
mask: token?.token
|
|
26
|
+
mask: token?.token
|
|
27
|
+
? i18n._(/* i18n */ `Please reauthenticate and try again`)
|
|
28
|
+
: i18n._(/* i18n */ `You must sign in to continue`),
|
|
26
29
|
})
|
|
27
30
|
|
|
28
31
|
action =
|
|
29
32
|
authorizationError && clear ? (
|
|
30
33
|
<Link href='/account/signin' passHref>
|
|
31
34
|
<Button>
|
|
32
|
-
<Trans
|
|
35
|
+
<Trans id='Sign in' />
|
|
33
36
|
</Button>
|
|
34
37
|
</Link>
|
|
35
38
|
) : (
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
UseFormComposeOptions,
|
|
8
8
|
useFormPersist,
|
|
9
9
|
} from '@graphcommerce/react-hook-form'
|
|
10
|
-
import {
|
|
10
|
+
import { i18n } from '@lingui/core'
|
|
11
11
|
import {
|
|
12
12
|
Box,
|
|
13
13
|
Checkbox,
|
|
@@ -72,7 +72,7 @@ export function CartAgreementsForm(props: CartAgreementsFormProps) {
|
|
|
72
72
|
name={`agreement[${agreement.agreement_id}]`}
|
|
73
73
|
control={control}
|
|
74
74
|
rules={{
|
|
75
|
-
required:
|
|
75
|
+
required: i18n._(/* i18n */ `You have to agree in order to proceed`),
|
|
76
76
|
}}
|
|
77
77
|
render={({
|
|
78
78
|
field: { onChange, value, name, ref, onBlur },
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
useScrollY,
|
|
7
7
|
useFabSize,
|
|
8
8
|
} from '@graphcommerce/next-ui'
|
|
9
|
-
import {
|
|
9
|
+
import { i18n } from '@lingui/core'
|
|
10
10
|
import { alpha, Fab, FabProps, NoSsr, styled, useTheme, Box, SxProps, Theme } from '@mui/material'
|
|
11
11
|
import { m, useTransform } from 'framer-motion'
|
|
12
12
|
import PageLink from 'next/link'
|
|
@@ -58,7 +58,7 @@ function CartFabContent(props: CartFabContentProps) {
|
|
|
58
58
|
<PageLink href='/cart' passHref>
|
|
59
59
|
<MotionFab
|
|
60
60
|
className={classes.cart}
|
|
61
|
-
aria-label={
|
|
61
|
+
aria-label={i18n._(/* i18n */ `Cart`)}
|
|
62
62
|
color='inherit'
|
|
63
63
|
size='responsive'
|
|
64
64
|
style={{ backgroundColor }}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
IconSvg,
|
|
9
9
|
extendableComponent,
|
|
10
10
|
} from '@graphcommerce/next-ui'
|
|
11
|
-
import { Trans } from '@lingui/
|
|
11
|
+
import { Trans } from '@lingui/react'
|
|
12
12
|
import { Box, Divider, SxProps, Theme } from '@mui/material'
|
|
13
13
|
import React from 'react'
|
|
14
14
|
import { useCartQuery } from '../../hooks'
|
|
@@ -54,7 +54,7 @@ export function CartItemSummary(props: OrderSummaryProps) {
|
|
|
54
54
|
>
|
|
55
55
|
<SectionContainer
|
|
56
56
|
sx={{ '& .SectionHeader': { mt: 0 } }}
|
|
57
|
-
labelLeft={<Trans
|
|
57
|
+
labelLeft={<Trans id='Order summary' />}
|
|
58
58
|
// labelRight={
|
|
59
59
|
// <PageLink href='/download' passHref>
|
|
60
60
|
// <Link color='secondary'>Download invoice</Link>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Money } from '@graphcommerce/magento-store'
|
|
2
2
|
import { iconChevronRight, IconSvg, extendableComponent } from '@graphcommerce/next-ui'
|
|
3
|
-
import { Trans } from '@lingui/
|
|
3
|
+
import { Trans } from '@lingui/react'
|
|
4
4
|
import { Box, Button, SxProps, Theme } from '@mui/material'
|
|
5
5
|
import PageLink from 'next/link'
|
|
6
6
|
import { CartStartCheckoutFragment } from './CartStartCheckout.gql'
|
|
@@ -53,7 +53,7 @@ export function CartStartCheckout(props: CartStartCheckoutProps) {
|
|
|
53
53
|
'& ~ span.MuiButton-endIcon': { marginLeft: '6px' },
|
|
54
54
|
})}
|
|
55
55
|
>
|
|
56
|
-
<Trans
|
|
56
|
+
<Trans id='Start Checkout' />
|
|
57
57
|
</Box>{' '}
|
|
58
58
|
{hasTotals && (
|
|
59
59
|
<span className={classes.checkoutMoney}>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { useHistoryLink } from '@graphcommerce/framer-next-pages'
|
|
2
2
|
import { SectionContainer, extendableComponent } from '@graphcommerce/next-ui'
|
|
3
|
-
import {
|
|
3
|
+
import { i18n } from '@lingui/core'
|
|
4
|
+
import { Trans } from '@lingui/react'
|
|
4
5
|
import { Box, Link, SxProps, Theme, Typography } from '@mui/material'
|
|
5
6
|
import PageLink from 'next/link'
|
|
6
7
|
import React from 'react'
|
|
@@ -59,7 +60,7 @@ export function CartSummary(props: CartSummaryProps) {
|
|
|
59
60
|
<Box>
|
|
60
61
|
<SectionContainer
|
|
61
62
|
variantLeft='h5'
|
|
62
|
-
labelLeft={
|
|
63
|
+
labelLeft={<Trans id='Confirmation + Track & trace' />}
|
|
63
64
|
sx={{ '& .SectionHeader': { marginTop: 0, paddingBottom: '8px' } }}
|
|
64
65
|
/>
|
|
65
66
|
<Typography variant='body1'>{email || ''}</Typography>
|
|
@@ -67,7 +68,7 @@ export function CartSummary(props: CartSummaryProps) {
|
|
|
67
68
|
<Box>
|
|
68
69
|
<SectionContainer
|
|
69
70
|
variantLeft='h5'
|
|
70
|
-
labelLeft={
|
|
71
|
+
labelLeft={<Trans id='Shipping method' />}
|
|
71
72
|
sx={{ '& .SectionHeader': { marginTop: 0, paddingBottom: '8px' } }}
|
|
72
73
|
/>
|
|
73
74
|
<Typography variant='body1'>
|
|
@@ -80,7 +81,7 @@ export function CartSummary(props: CartSummaryProps) {
|
|
|
80
81
|
<Box>
|
|
81
82
|
<SectionContainer
|
|
82
83
|
variantLeft='h5'
|
|
83
|
-
labelLeft={
|
|
84
|
+
labelLeft={<Trans id='Shipping address' />}
|
|
84
85
|
sx={{ '& .SectionHeader': { marginTop: 0, paddingBottom: '8px' } }}
|
|
85
86
|
labelRight={
|
|
86
87
|
editable ? (
|
|
@@ -91,7 +92,7 @@ export function CartSummary(props: CartSummaryProps) {
|
|
|
91
92
|
onClick={historyOnClick}
|
|
92
93
|
underline='hover'
|
|
93
94
|
>
|
|
94
|
-
<Trans
|
|
95
|
+
<Trans id='Edit' />
|
|
95
96
|
</Link>
|
|
96
97
|
</PageLink>
|
|
97
98
|
) : undefined
|
|
@@ -102,13 +103,13 @@ export function CartSummary(props: CartSummaryProps) {
|
|
|
102
103
|
<Box>
|
|
103
104
|
<SectionContainer
|
|
104
105
|
variantLeft='h5'
|
|
105
|
-
labelLeft={
|
|
106
|
+
labelLeft={<Trans id='Billing address' />}
|
|
106
107
|
sx={{ '& .SectionHeader': { marginTop: 0, paddingBottom: '8px' } }}
|
|
107
108
|
labelRight={
|
|
108
109
|
editable ? (
|
|
109
110
|
<PageLink href='/checkout/edit/billing-address' passHref>
|
|
110
111
|
<Link color='secondary' variant='body2' underline='hover'>
|
|
111
|
-
<Trans
|
|
112
|
+
<Trans id='Edit' />
|
|
112
113
|
</Link>
|
|
113
114
|
</PageLink>
|
|
114
115
|
) : undefined
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Money } from '@graphcommerce/magento-store'
|
|
2
2
|
import { AnimatedRow, extendableComponent, responsiveVal } from '@graphcommerce/next-ui'
|
|
3
|
-
import { Trans } from '@lingui/
|
|
3
|
+
import { Trans } from '@lingui/react'
|
|
4
4
|
import { Box, Divider, lighten, SxProps, Theme } from '@mui/material'
|
|
5
5
|
import { AnimatePresence } from 'framer-motion'
|
|
6
6
|
import { useCartQuery, useDisplayInclTax } from '../../hooks'
|
|
@@ -74,7 +74,7 @@ export function CartTotals(props: CartTotalsProps) {
|
|
|
74
74
|
sx={{ display: 'flex', justifyContent: 'space-between', typography: 'subtitle1' }}
|
|
75
75
|
>
|
|
76
76
|
<Box>
|
|
77
|
-
<Trans
|
|
77
|
+
<Trans id='Products' />
|
|
78
78
|
</Box>
|
|
79
79
|
<Box className={classes.money} sx={{ whiteSpace: 'nowrap' }}>
|
|
80
80
|
<Money
|
|
@@ -116,9 +116,10 @@ export function CartTotals(props: CartTotalsProps) {
|
|
|
116
116
|
sx={{ display: 'flex', justifyContent: 'space-between', typography: 'subtitle1' }}
|
|
117
117
|
>
|
|
118
118
|
<Box>
|
|
119
|
-
<Trans
|
|
120
|
-
Shipping ({
|
|
121
|
-
|
|
119
|
+
<Trans
|
|
120
|
+
id='Shipping ({0} {1})'
|
|
121
|
+
values={{ 0: shippingMethod.carrier_title, 1: shippingMethod.method_title }}
|
|
122
|
+
/>
|
|
122
123
|
</Box>
|
|
123
124
|
<Box className={classes.money} sx={{ whiteSpace: 'nowrap' }}>
|
|
124
125
|
<Money
|
|
@@ -160,7 +161,7 @@ export function CartTotals(props: CartTotalsProps) {
|
|
|
160
161
|
})}
|
|
161
162
|
>
|
|
162
163
|
<Box>
|
|
163
|
-
<Trans
|
|
164
|
+
<Trans id='Grand total' />
|
|
164
165
|
</Box>
|
|
165
166
|
<Box className={classes.money} sx={{ whiteSpace: 'nowrap' }}>
|
|
166
167
|
<Money {...prices.grand_total} />
|
|
@@ -182,7 +183,7 @@ export function CartTotals(props: CartTotalsProps) {
|
|
|
182
183
|
}}
|
|
183
184
|
>
|
|
184
185
|
<Box>
|
|
185
|
-
<Trans
|
|
186
|
+
<Trans id='Including {0}' values={{ 0: tax?.label }} />
|
|
186
187
|
</Box>
|
|
187
188
|
<Box className={classes.money} sx={{ whiteSpace: 'nowrap' }}>
|
|
188
189
|
<Money {...tax?.amount} />
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FullPageMessage, IconSvg, iconShoppingBag } from '@graphcommerce/next-ui'
|
|
2
|
-
import { Trans } from '@lingui/
|
|
2
|
+
import { Trans } from '@lingui/react'
|
|
3
3
|
import { Button } from '@mui/material'
|
|
4
4
|
import Link from 'next/link'
|
|
5
5
|
import React from 'react'
|
|
@@ -10,17 +10,17 @@ export function EmptyCart(props: EmptyCartProps) {
|
|
|
10
10
|
|
|
11
11
|
return (
|
|
12
12
|
<FullPageMessage
|
|
13
|
-
title={<Trans
|
|
13
|
+
title={<Trans id='Your cart is empty' />}
|
|
14
14
|
icon={<IconSvg src={iconShoppingBag} size='xxl' />}
|
|
15
15
|
button={
|
|
16
16
|
<Link href='/' passHref>
|
|
17
17
|
<Button variant='pill' color='secondary' size='large'>
|
|
18
|
-
<Trans
|
|
18
|
+
<Trans id='Continue shopping' />
|
|
19
19
|
</Button>
|
|
20
20
|
</Link>
|
|
21
21
|
}
|
|
22
22
|
>
|
|
23
|
-
{children ?? <Trans
|
|
23
|
+
{children ?? <Trans id='Discover our collection and add items to your cart!' />}
|
|
24
24
|
</FullPageMessage>
|
|
25
25
|
)
|
|
26
26
|
}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
IsEmailAvailableDocument,
|
|
6
6
|
} from '@graphcommerce/magento-customer'
|
|
7
7
|
import { Button, FormRow, extendableComponent } from '@graphcommerce/next-ui'
|
|
8
|
-
import { Trans } from '@lingui/
|
|
8
|
+
import { Trans } from '@lingui/react'
|
|
9
9
|
import { Box, SxProps, TextField, Theme, Typography } from '@mui/material'
|
|
10
10
|
import React, { useState } from 'react'
|
|
11
11
|
import { useCartQuery } from '../../hooks/useCartQuery'
|
|
@@ -75,9 +75,9 @@ export function InlineAccount(props: InlineAccountProps) {
|
|
|
75
75
|
>
|
|
76
76
|
<div>
|
|
77
77
|
<Typography variant='h4' className={classes.title} sx={{ paddingBottom: '8px' }}>
|
|
78
|
-
{title ?? <Trans
|
|
78
|
+
{title ?? <Trans id='No account yet?' />}
|
|
79
79
|
</Typography>
|
|
80
|
-
{description ?? <Trans
|
|
80
|
+
{description ?? <Trans id='You can track your order status and much more!' />}
|
|
81
81
|
</div>
|
|
82
82
|
<div>
|
|
83
83
|
{!toggled && (
|
|
@@ -89,7 +89,7 @@ export function InlineAccount(props: InlineAccountProps) {
|
|
|
89
89
|
className={classes.button}
|
|
90
90
|
sx={{ minWidth: 160 }}
|
|
91
91
|
>
|
|
92
|
-
<Trans
|
|
92
|
+
<Trans id='Create an account' />
|
|
93
93
|
</Button>
|
|
94
94
|
)}
|
|
95
95
|
</div>
|
|
@@ -122,9 +122,9 @@ export function InlineAccount(props: InlineAccountProps) {
|
|
|
122
122
|
<Box className={classes.innerContainer}>
|
|
123
123
|
<div>
|
|
124
124
|
<Typography variant='h4' className={classes.title}>
|
|
125
|
-
{title ?? <Trans
|
|
125
|
+
{title ?? <Trans id='Have an account?' />}
|
|
126
126
|
</Typography>
|
|
127
|
-
{description ?? <Trans
|
|
127
|
+
{description ?? <Trans id='You can find your order history in your account!' />}
|
|
128
128
|
</div>
|
|
129
129
|
<div>
|
|
130
130
|
<Button
|
|
@@ -133,7 +133,7 @@ export function InlineAccount(props: InlineAccountProps) {
|
|
|
133
133
|
href={accountHref}
|
|
134
134
|
className={classes.button}
|
|
135
135
|
>
|
|
136
|
-
<Trans
|
|
136
|
+
<Trans id='Account' />
|
|
137
137
|
</Button>
|
|
138
138
|
</div>
|
|
139
139
|
</Box>
|
package/hooks/useCartIdCreate.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useMutation } from '@graphcommerce/graphql'
|
|
2
|
-
import {
|
|
2
|
+
import { i18n } from '@lingui/core'
|
|
3
3
|
import { CreateEmptyCartDocument } from './CreateEmptyCart.gql'
|
|
4
4
|
import { useAssignCurrentCartId } from './useAssignCurrentCartId'
|
|
5
5
|
import { useCurrentCartId } from './useCurrentCartId'
|
|
@@ -13,7 +13,7 @@ export function useCartIdCreate() {
|
|
|
13
13
|
if (cartId) return cartId
|
|
14
14
|
|
|
15
15
|
const { data } = await create()
|
|
16
|
-
if (!data?.createEmptyCart) throw Error(
|
|
16
|
+
if (!data?.createEmptyCart) throw Error(i18n._(/* i18n */ `Could not create an empty cart`))
|
|
17
17
|
|
|
18
18
|
// We store the cartId that is returned as the currentCartId result
|
|
19
19
|
assignCurrentCartId(data.createEmptyCart)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "4.2.
|
|
5
|
+
"version": "4.2.14",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,25 +12,26 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "^4.1.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^4.1.7",
|
|
16
16
|
"@graphcommerce/prettier-config-pwa": "^4.0.6",
|
|
17
|
-
"@graphcommerce/typescript-config-pwa": "^4.0.
|
|
17
|
+
"@graphcommerce/typescript-config-pwa": "^4.0.3",
|
|
18
18
|
"@playwright/test": "^1.21.1"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@graphcommerce/ecommerce-ui": "1.0.
|
|
21
|
+
"@graphcommerce/ecommerce-ui": "1.0.11",
|
|
22
22
|
"@graphcommerce/framer-next-pages": "3.2.1",
|
|
23
|
-
"@graphcommerce/framer-scroller": "2.1.
|
|
24
|
-
"@graphcommerce/graphql": "3.1.
|
|
23
|
+
"@graphcommerce/framer-scroller": "2.1.10",
|
|
24
|
+
"@graphcommerce/graphql": "3.1.3",
|
|
25
25
|
"@graphcommerce/image": "3.1.5",
|
|
26
|
-
"@graphcommerce/magento-customer": "4.2.
|
|
27
|
-
"@graphcommerce/magento-graphql": "3.0.
|
|
28
|
-
"@graphcommerce/magento-store": "4.2.
|
|
29
|
-
"@graphcommerce/next-ui": "4.7.
|
|
30
|
-
"@graphcommerce/react-hook-form": "3.1.
|
|
26
|
+
"@graphcommerce/magento-customer": "4.2.12",
|
|
27
|
+
"@graphcommerce/magento-graphql": "3.0.12",
|
|
28
|
+
"@graphcommerce/magento-store": "4.2.3",
|
|
29
|
+
"@graphcommerce/next-ui": "4.7.2",
|
|
30
|
+
"@graphcommerce/react-hook-form": "3.1.3"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@lingui/
|
|
33
|
+
"@lingui/react": "^3.13.2",
|
|
34
|
+
"@lingui/core": "^3.13.2",
|
|
34
35
|
"@mui/material": "5.5.3",
|
|
35
36
|
"framer-motion": "^6.2.4",
|
|
36
37
|
"next": "12.1.2",
|