@graphcommerce/magento-product 9.0.0-canary.103 → 9.0.0-canary.105
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 +6 -2
- package/components/AddProductsToCart/AddProductsToCartFab.tsx +1 -1
- package/components/AddProductsToCart/AddProductsToCartForm.tsx +1 -1
- package/components/AddProductsToCart/AddProductsToCartSnackbarMessage.tsx +2 -2
- package/components/AddProductsToCart/useFormAddProductsToCart.ts +1 -1
- package/components/ProductAddToCart/ProductAddToCart.tsx +3 -3
- package/components/ProductCustomizable/CustomizableCheckboxOption.tsx +1 -1
- package/components/ProductCustomizable/CustomizableMultipleOption.tsx +1 -1
- package/components/ProductCustomizable/CustomizableRadioOption.tsx +1 -1
- package/components/ProductCustomizable/ProductCustomizable.tsx +1 -1
- package/components/ProductFiltersPro/ProductFilterEqualChip.tsx +1 -1
- package/components/ProductFiltersPro/ProductFilterEqualSection.tsx +1 -1
- package/components/ProductFiltersPro/ProductFilterRangeChip.tsx +1 -1
- package/components/ProductFiltersPro/ProductFiltersProLayoutSidebar.tsx +1 -1
- package/components/ProductListFilters/FilterCheckboxType.tsx +1 -1
- package/components/ProductListFilters/FilterEqualType.tsx +2 -3
- package/components/ProductListFiltersContainer/ProductListFiltersContainer.tsx +2 -2
- package/components/ProductListItem/ProductDiscountLabel.tsx +1 -1
- package/components/ProductListItem/ProductListItem.tsx +2 -2
- package/components/ProductListItem/ProductListItemImageContainer.tsx +1 -1
- package/components/ProductListItems/ProductListParamsProvider.tsx +1 -1
- package/components/ProductListItems/filterTypes.tsx +4 -4
- package/components/ProductListPagination/ProductListPagination.tsx +1 -1
- package/components/ProductListSort/ProductListSort.tsx +1 -1
- package/components/ProductPageDescription/ProductPageDescription.tsx +2 -2
- package/components/ProductPageGallery/ProductPageGallery.tsx +1 -1
- package/components/ProductPagePrice/useCustomizableOptionPrice.ts +1 -1
- package/components/ProductScroller/ProductScroller.tsx +4 -2
- package/components/ProductSidebarDelivery/ProductSidebarDelivery.tsx +1 -1
- package/components/ProductSpecs/ProductSpecs.tsx +1 -1
- package/components/ProductSpecs/ProductSpecsCustomAttributes.tsx +1 -1
- package/components/ProductWeight/ProductWeight.tsx +1 -5
- package/hooks/useProductList.ts +2 -2
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 9.0.0-canary.105
|
4
|
+
|
5
|
+
## 9.0.0-canary.104
|
6
|
+
|
3
7
|
## 9.0.0-canary.103
|
4
8
|
|
5
9
|
## 9.0.0-canary.91
|
@@ -907,7 +911,7 @@
|
|
907
911
|
All occurences of `<Trans>` and `t` need to be replaced:
|
908
912
|
|
909
913
|
```tsx
|
910
|
-
import {
|
914
|
+
import { t, Trans } from '@lingui/macro'
|
911
915
|
|
912
916
|
function MyComponent() {
|
913
917
|
const foo = 'bar'
|
@@ -922,8 +926,8 @@
|
|
922
926
|
Needs to be replaced with:
|
923
927
|
|
924
928
|
```tsx
|
925
|
-
import { Trans } from '@lingui/react'
|
926
929
|
import { i18n } from '@lingui/core'
|
930
|
+
import { Trans } from '@lingui/react'
|
927
931
|
|
928
932
|
function MyComponent() {
|
929
933
|
const foo = 'bar'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { useCartEnabled } from '@graphcommerce/magento-cart'
|
2
2
|
import type { FabProps } from '@graphcommerce/next-ui'
|
3
|
-
import { Fab,
|
3
|
+
import { Fab, iconCheckmark, iconShoppingBag } from '@graphcommerce/next-ui'
|
4
4
|
import { t } from '@lingui/macro'
|
5
5
|
import type { SxProps, Theme } from '@mui/material'
|
6
6
|
import type { UseAddProductsToCartActionProps } from './useAddProductsToCartAction'
|
@@ -2,7 +2,7 @@ import type { UseFormGraphQlOptions } from '@graphcommerce/ecommerce-ui'
|
|
2
2
|
import type { ApolloQueryResult } from '@graphcommerce/graphql'
|
3
3
|
import { useApolloClient } from '@graphcommerce/graphql'
|
4
4
|
import type { CrosssellsQuery } from '@graphcommerce/magento-cart'
|
5
|
-
import {
|
5
|
+
import { CrosssellsDocument, useFormGqlMutationCart } from '@graphcommerce/magento-cart'
|
6
6
|
import type { ErrorSnackbarProps, MessageSnackbarProps } from '@graphcommerce/next-ui'
|
7
7
|
import { nonNullable } from '@graphcommerce/next-ui'
|
8
8
|
import type { SxProps, Theme } from '@mui/material'
|
@@ -61,7 +61,7 @@ export function AddProductsToCartSnackbarMessage(props: AddProductsToCartSnackba
|
|
61
61
|
one={
|
62
62
|
<Trans>
|
63
63
|
<ListFormat listStyle='long' type='conjunction'>
|
64
|
-
{addedItems
|
64
|
+
{addedItems}
|
65
65
|
</ListFormat>{' '}
|
66
66
|
has been added to your shopping cart
|
67
67
|
</Trans>
|
@@ -69,7 +69,7 @@ export function AddProductsToCartSnackbarMessage(props: AddProductsToCartSnackba
|
|
69
69
|
two={
|
70
70
|
<Trans>
|
71
71
|
<ListFormat listStyle='long' type='conjunction'>
|
72
|
-
{addedItems
|
72
|
+
{addedItems}
|
73
73
|
</ListFormat>{' '}
|
74
74
|
have been added to your shopping cart!
|
75
75
|
</Trans>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import type { UseFormGqlMutationReturn } from '@graphcommerce/ecommerce-ui'
|
2
2
|
import { createContext, useContext } from 'react'
|
3
|
-
import type {
|
3
|
+
import type { LiteralUnion, Simplify } from 'type-fest'
|
4
4
|
import type {
|
5
5
|
AddProductsToCartMutation,
|
6
6
|
AddProductsToCartMutationVariables,
|
@@ -5,14 +5,14 @@ import type { MoneyProps } from '@graphcommerce/magento-store'
|
|
5
5
|
import { Money } from '@graphcommerce/magento-store'
|
6
6
|
import {
|
7
7
|
Button,
|
8
|
-
MessageSnackbar,
|
9
|
-
iconChevronRight,
|
10
8
|
IconSvg,
|
9
|
+
MessageSnackbar,
|
11
10
|
extendableComponent,
|
11
|
+
iconChevronRight,
|
12
12
|
} from '@graphcommerce/next-ui'
|
13
13
|
import { Trans } from '@lingui/macro'
|
14
14
|
import type { ButtonProps } from '@mui/material'
|
15
|
-
import {
|
15
|
+
import { Alert, Box, Divider, Typography } from '@mui/material'
|
16
16
|
import React from 'react'
|
17
17
|
import type { ProductAddToCartMutationVariables } from './ProductAddToCart.gql'
|
18
18
|
import { ProductAddToCartDocument } from './ProductAddToCart.gql'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ActionCardListForm } from '@graphcommerce/ecommerce-ui'
|
2
2
|
import { Money } from '@graphcommerce/magento-store'
|
3
3
|
import type { ActionCardProps } from '@graphcommerce/next-ui'
|
4
|
-
import { ActionCard,
|
4
|
+
import { ActionCard, SectionHeader, filterNonNullableKeys } from '@graphcommerce/next-ui'
|
5
5
|
import { i18n } from '@lingui/core'
|
6
6
|
import { Box, Checkbox } from '@mui/material'
|
7
7
|
import { useFormAddProductsToCart } from '../AddProductsToCart'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ActionCardListForm } from '@graphcommerce/ecommerce-ui'
|
2
2
|
import { Money } from '@graphcommerce/magento-store'
|
3
3
|
import type { ActionCardProps } from '@graphcommerce/next-ui'
|
4
|
-
import { ActionCard,
|
4
|
+
import { ActionCard, SectionHeader, filterNonNullableKeys } from '@graphcommerce/next-ui'
|
5
5
|
import { i18n } from '@lingui/core'
|
6
6
|
import { Box } from '@mui/material'
|
7
7
|
import { useFormAddProductsToCart } from '../AddProductsToCart'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ActionCardListForm } from '@graphcommerce/ecommerce-ui'
|
2
2
|
import { Money } from '@graphcommerce/magento-store'
|
3
3
|
import type { ActionCardProps } from '@graphcommerce/next-ui'
|
4
|
-
import { ActionCard,
|
4
|
+
import { ActionCard, SectionHeader, filterNonNullableKeys } from '@graphcommerce/next-ui'
|
5
5
|
import { i18n } from '@lingui/core'
|
6
6
|
import { Box } from '@mui/material'
|
7
7
|
import { useFormAddProductsToCart } from '../AddProductsToCart'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { RenderType, filterNonNullableKeys } from '@graphcommerce/next-ui'
|
2
2
|
import type { AddToCartItemSelector } from '../AddProductsToCart'
|
3
3
|
import type { ProductPagePriceFragment } from '../ProductPagePrice'
|
4
4
|
import type { OptionTypeRenderer } from './CustomizableAreaOption'
|
@@ -3,9 +3,9 @@ import type { ProductAttributeFilterInput } from '@graphcommerce/graphql-mesh'
|
|
3
3
|
import {
|
4
4
|
ActionCard,
|
5
5
|
ChipOverlayOrPopper,
|
6
|
+
IconSvg,
|
6
7
|
filterNonNullableKeys,
|
7
8
|
iconCirle,
|
8
|
-
IconSvg,
|
9
9
|
} from '@graphcommerce/next-ui'
|
10
10
|
import { Box } from '@mui/material'
|
11
11
|
import { useMemo } from 'react'
|
@@ -3,7 +3,7 @@ import type { ProductAttributeFilterInput } from '@graphcommerce/graphql-mesh'
|
|
3
3
|
import { Money } from '@graphcommerce/magento-store'
|
4
4
|
import { ChipOverlayOrPopper, extendableComponent } from '@graphcommerce/next-ui'
|
5
5
|
import { isFilterTypeRange } from '../ProductListItems/filterTypes'
|
6
|
-
import {
|
6
|
+
import { PriceSlider, getMinMaxFromOptions } from './PriceSlider'
|
7
7
|
import { useProductFiltersPro } from './ProductFiltersPro'
|
8
8
|
import type { FilterProps } from './ProductFiltersProAggregations'
|
9
9
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { FormAutoSubmit } from '@graphcommerce/ecommerce-ui'
|
2
|
-
import {
|
2
|
+
import { StickyBelowHeader, extendableComponent } from '@graphcommerce/next-ui'
|
3
3
|
import type { Theme } from '@mui/material'
|
4
4
|
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
5
5
|
import { Box, Container, useMediaQuery } from '@mui/material'
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { cloneDeep } from '@graphcommerce/graphql'
|
2
|
-
import {
|
2
|
+
import { IconSvg, iconCancelAlt } from '@graphcommerce/next-ui'
|
3
3
|
import type { ChipProps, SxProps, Theme } from '@mui/material'
|
4
4
|
import { Chip } from '@mui/material'
|
5
5
|
import { useProductListLinkReplace } from '../../hooks/useProductListLinkReplace'
|
@@ -1,10 +1,9 @@
|
|
1
1
|
import { cloneDeep } from '@graphcommerce/graphql'
|
2
2
|
import type { FilterEqualTypeInput } from '@graphcommerce/graphql-mesh'
|
3
3
|
import type { ChipMenuProps } from '@graphcommerce/next-ui'
|
4
|
-
import {
|
4
|
+
import { ChipMenu, extendableComponent, responsiveVal } from '@graphcommerce/next-ui'
|
5
5
|
import {
|
6
|
-
Box,
|
7
|
-
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
6
|
+
Box, // eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
8
7
|
Checkbox,
|
9
8
|
ListItem,
|
10
9
|
ListItemSecondaryAction,
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { Scroller, ScrollerButton, ScrollerProvider } from '@graphcommerce/framer-scroller'
|
2
2
|
import {
|
3
|
+
IconSvg,
|
4
|
+
extendableComponent,
|
3
5
|
iconChevronLeft,
|
4
6
|
iconChevronRight,
|
5
|
-
IconSvg,
|
6
7
|
useScrollY,
|
7
|
-
extendableComponent,
|
8
8
|
} from '@graphcommerce/next-ui'
|
9
9
|
import type { SxProps, Theme } from '@mui/material'
|
10
10
|
import { Box, styled } from '@mui/material'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import type { ImageProps } from '@graphcommerce/image'
|
2
2
|
import { extendableComponent } from '@graphcommerce/next-ui'
|
3
3
|
import type { SxProps, Theme } from '@mui/material'
|
4
|
-
import {
|
4
|
+
import { Skeleton, useEventCallback } from '@mui/material'
|
5
5
|
import React from 'react'
|
6
6
|
import type { ProductListItemFragment } from '../../Api/ProductListItem.gql'
|
7
7
|
import { productLink } from '../../hooks/useProductLink'
|
@@ -13,7 +13,7 @@ import type {
|
|
13
13
|
ProductListItemImageAreaKeys,
|
14
14
|
ProductListsItemImageAreaProps,
|
15
15
|
} from './ProductListItemImageContainer'
|
16
|
-
import {
|
16
|
+
import { ProductImageContainer, ProductListItemImageAreas } from './ProductListItemImageContainer'
|
17
17
|
import { ProductListItemLinkOrDiv } from './ProductListItemLinkOrDiv'
|
18
18
|
import type { ProductListItemTitleAndPriceProps } from './ProductListItemTitleAndPrice'
|
19
19
|
import { ProductListItemTitleAndPrice } from './ProductListItemTitleAndPrice'
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import type {
|
2
|
-
Maybe,
|
3
|
-
Scalars,
|
4
|
-
ProductAttributeFilterInput,
|
5
|
-
ProductAttributeSortInput,
|
6
2
|
FilterEqualTypeInput,
|
7
3
|
FilterMatchTypeInput,
|
8
4
|
FilterRangeTypeInput,
|
5
|
+
Maybe,
|
6
|
+
ProductAttributeFilterInput,
|
7
|
+
ProductAttributeSortInput,
|
8
|
+
Scalars,
|
9
9
|
SortEnum,
|
10
10
|
} from '@graphcommerce/graphql-mesh'
|
11
11
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { NextLink,
|
1
|
+
import { NextLink, Pagination, PaginationExtended } from '@graphcommerce/next-ui'
|
2
2
|
import type { PaginationProps } from '@mui/material'
|
3
3
|
import { Link } from '@mui/material'
|
4
4
|
import { productListLink } from '../../hooks/useProductListLink'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { cloneDeep, useQuery } from '@graphcommerce/graphql'
|
2
2
|
import { StoreConfigDocument } from '@graphcommerce/magento-store'
|
3
3
|
import type { ChipMenuProps } from '@graphcommerce/next-ui'
|
4
4
|
import { ChipMenu, extendableComponent } from '@graphcommerce/next-ui'
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import type { ColumnTwoWithTopProps } from '@graphcommerce/next-ui'
|
2
2
|
import {
|
3
3
|
ColumnTwoWithTop,
|
4
|
-
extendableComponent,
|
5
|
-
breakpointVal,
|
6
4
|
LazyHydrate,
|
5
|
+
breakpointVal,
|
6
|
+
extendableComponent,
|
7
7
|
} from '@graphcommerce/next-ui'
|
8
8
|
import type { SxProps, Theme } from '@mui/material'
|
9
9
|
import { Box, Typography } from '@mui/material'
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { SidebarGalleryProps, TypeRenderer } from '@graphcommerce/next-ui'
|
2
|
-
import {
|
2
|
+
import { SidebarGallery, nonNullable } from '@graphcommerce/next-ui'
|
3
3
|
import type { ProductPageGalleryFragment } from './ProductPageGallery.gql'
|
4
4
|
|
5
5
|
export type ProductPageGalleryRenderers = TypeRenderer<
|
@@ -4,9 +4,9 @@ import { filterNonNullableKeys, isTypename, nonNullable } from '@graphcommerce/n
|
|
4
4
|
import type { AddToCartItemSelector } from '../AddProductsToCart'
|
5
5
|
import { useFormAddProductsToCart } from '../AddProductsToCart'
|
6
6
|
import type {
|
7
|
+
AnyOption,
|
7
8
|
CustomizableProductOptionBase,
|
8
9
|
OptionValueSelector,
|
9
|
-
AnyOption,
|
10
10
|
SelectorsProp,
|
11
11
|
} from '../ProductCustomizable/productCustomizableSelectors'
|
12
12
|
import { productCustomizableSelectors } from '../ProductCustomizable/productCustomizableSelectors'
|
@@ -15,7 +15,8 @@ export type ProductScrollerProps = {
|
|
15
15
|
sx?: SxProps<Theme>
|
16
16
|
containerProps?: ContainerProps
|
17
17
|
titleProps?: TypographyProps
|
18
|
-
itemScrollerProps?: ItemScrollerProps
|
18
|
+
itemScrollerProps?: Omit<ItemScrollerProps, 'children'>
|
19
|
+
sizes?: string
|
19
20
|
}
|
20
21
|
export const ProductScroller = forwardRef<HTMLDivElement, ProductScrollerProps>(
|
21
22
|
(props: ProductScrollerProps, ref) => {
|
@@ -28,6 +29,7 @@ export const ProductScroller = forwardRef<HTMLDivElement, ProductScrollerProps>(
|
|
28
29
|
containerProps,
|
29
30
|
titleProps,
|
30
31
|
itemScrollerProps,
|
32
|
+
sizes = responsiveVal(200, 300),
|
31
33
|
} = props
|
32
34
|
|
33
35
|
const theme = useTheme()
|
@@ -54,7 +56,7 @@ export const ProductScroller = forwardRef<HTMLDivElement, ProductScrollerProps>(
|
|
54
56
|
renderer={productListRenderer}
|
55
57
|
{...item}
|
56
58
|
imageOnly={imageOnly}
|
57
|
-
sizes={
|
59
|
+
sizes={sizes}
|
58
60
|
/>
|
59
61
|
))}
|
60
62
|
</ItemScroller>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { breakpointVal, iconOrderBefore
|
1
|
+
import { IconSvg, breakpointVal, iconOrderBefore } from '@graphcommerce/next-ui'
|
2
2
|
import { Trans } from '@lingui/react'
|
3
3
|
import { Box, darken, lighten } from '@mui/material'
|
4
4
|
import type { UseAddProductsToCartActionFragment } from '../AddProductsToCart/UseAddProductsToCartAction.gql'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { Row, SectionContainer, extendableComponent, responsiveVal } from '@graphcommerce/next-ui'
|
2
2
|
import type { SxProps, Theme } from '@mui/material'
|
3
3
|
import { Box } from '@mui/material'
|
4
4
|
import type { ProductSpecsFragment } from './ProductSpecs.gql'
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { useQuery } from '@graphcommerce/graphql'
|
2
|
-
import {
|
2
|
+
import { ListFormat, extendableComponent } from '@graphcommerce/next-ui'
|
3
3
|
import { Box } from '@mui/material'
|
4
4
|
import type { ProductSpecsFragment } from './ProductSpecs.gql'
|
5
5
|
import { ProductSpecsTypesDocument } from './ProductSpecsTypes.gql'
|
@@ -15,9 +15,5 @@ export function ProductWeight(props: ProductWeightProps) {
|
|
15
15
|
|
16
16
|
const unit = conf?.storeConfig?.weight_unit === 'lbs' ? 'pound' : 'kilogram'
|
17
17
|
|
18
|
-
return
|
19
|
-
<UnitFormat unit={unit} {...rest}>
|
20
|
-
{product.weight}
|
21
|
-
</UnitFormat>
|
22
|
-
)
|
18
|
+
return <UnitFormat unit={unit} {...rest} value={product.weight} />
|
23
19
|
}
|
package/hooks/useProductList.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { debounce } from '@graphcommerce/ecommerce-ui'
|
2
2
|
import type { ApolloClient } from '@graphcommerce/graphql'
|
3
|
-
import {
|
3
|
+
import { getInContextInput, useInContextQuery, useQuery } from '@graphcommerce/graphql'
|
4
4
|
import { StoreConfigDocument } from '@graphcommerce/magento-store'
|
5
5
|
import { showPageLoadIndicator } from '@graphcommerce/next-ui'
|
6
6
|
import { useEventCallback } from '@mui/material'
|
@@ -20,8 +20,8 @@ import type { ProductListParams } from '../components/ProductListItems/filterTyp
|
|
20
20
|
import { toProductListParams } from '../components/ProductListItems/filterTypes'
|
21
21
|
import { useRouterFilterParams } from '../components/ProductListItems/filteredProductList'
|
22
22
|
import {
|
23
|
-
productListApplyCategoryDefaults,
|
24
23
|
categoryDefaultsToProductListFilters,
|
24
|
+
productListApplyCategoryDefaults,
|
25
25
|
useProductListApplyCategoryDefaults,
|
26
26
|
} from '../components/ProductListItems/productListApplyCategoryDefaults'
|
27
27
|
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@graphcommerce/magento-product",
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
5
|
-
"version": "9.0.0-canary.
|
5
|
+
"version": "9.0.0-canary.105",
|
6
6
|
"sideEffects": false,
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
8
8
|
"eslintConfig": {
|
@@ -18,18 +18,18 @@
|
|
18
18
|
"typescript": "5.6.2"
|
19
19
|
},
|
20
20
|
"peerDependencies": {
|
21
|
-
"@graphcommerce/ecommerce-ui": "^9.0.0-canary.
|
22
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
23
|
-
"@graphcommerce/framer-next-pages": "^9.0.0-canary.
|
24
|
-
"@graphcommerce/framer-scroller": "^9.0.0-canary.
|
25
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
26
|
-
"@graphcommerce/graphql-mesh": "^9.0.0-canary.
|
27
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
28
|
-
"@graphcommerce/magento-cart": "^9.0.0-canary.
|
29
|
-
"@graphcommerce/magento-store": "^9.0.0-canary.
|
30
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
31
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
32
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
21
|
+
"@graphcommerce/ecommerce-ui": "^9.0.0-canary.105",
|
22
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.105",
|
23
|
+
"@graphcommerce/framer-next-pages": "^9.0.0-canary.105",
|
24
|
+
"@graphcommerce/framer-scroller": "^9.0.0-canary.105",
|
25
|
+
"@graphcommerce/graphql": "^9.0.0-canary.105",
|
26
|
+
"@graphcommerce/graphql-mesh": "^9.0.0-canary.105",
|
27
|
+
"@graphcommerce/image": "^9.0.0-canary.105",
|
28
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.105",
|
29
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.105",
|
30
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.105",
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.105",
|
32
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.105",
|
33
33
|
"@lingui/core": "^4.2.1",
|
34
34
|
"@lingui/macro": "^4.2.1",
|
35
35
|
"@lingui/react": "^4.2.1",
|