@graphcommerce/magento-review 9.0.0-canary.107 → 9.0.0-canary.108

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.108
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`cb8d2f0`](https://github.com/graphcommerce-org/graphcommerce/commit/cb8d2f0059d64242260e30ce34655868f204ef4c) - Made all component prop types exported ([@bramvanderholst](https://github.com/bramvanderholst))
8
+
3
9
  ## 9.0.0-canary.107
4
10
 
5
11
  ## 9.0.0-canary.106
@@ -3,7 +3,7 @@ import { Box } from '@mui/material'
3
3
  import { CustomerReview } from '../CustomerReview/CustomerReview'
4
4
  import type { AccountReviewsFragment } from './AccountReviews.gql'
5
5
 
6
- type AccountReviewsProps = AccountReviewsFragment
6
+ export type AccountReviewsProps = AccountReviewsFragment
7
7
 
8
8
  const { classes } = extendableComponent('AccountReviews', ['root', 'older'] as const)
9
9
 
@@ -20,7 +20,7 @@ import { useEffect, useState } from 'react'
20
20
  import { CreateProductReviewDocument } from './CreateProductReview.gql'
21
21
  import { ProductReviewRatingsMetadataDocument } from './ProductReviewRatingsMetadata.gql'
22
22
 
23
- type CreateProductReviewFormProps = {
23
+ export type CreateProductReviewFormProps = {
24
24
  sku: string
25
25
  nickname?: string
26
26
  sx?: SxProps<Theme>
@@ -6,7 +6,7 @@ import type { CustomerReviewFragment } from './CustomerReview.gql'
6
6
  import filledStar from './review_star_filled.svg'
7
7
  import outlinedStar from './review_star_outlined.svg'
8
8
 
9
- type CustomerReviewProps = CustomerReviewFragment & { sx?: SxProps<Theme> }
9
+ export type CustomerReviewProps = CustomerReviewFragment & { sx?: SxProps<Theme> }
10
10
 
11
11
  const { classes } = extendableComponent('ScrollerDots', [
12
12
  'container',
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-review",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "9.0.0-canary.107",
5
+ "version": "9.0.0-canary.108",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -18,18 +18,18 @@
18
18
  "typescript": "5.7.2"
19
19
  },
20
20
  "peerDependencies": {
21
- "@graphcommerce/ecommerce-ui": "^9.0.0-canary.107",
22
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.107",
23
- "@graphcommerce/graphql": "^9.0.0-canary.107",
24
- "@graphcommerce/graphql-mesh": "^9.0.0-canary.107",
25
- "@graphcommerce/image": "^9.0.0-canary.107",
26
- "@graphcommerce/magento-customer": "^9.0.0-canary.107",
27
- "@graphcommerce/magento-product": "^9.0.0-canary.107",
28
- "@graphcommerce/magento-store": "^9.0.0-canary.107",
29
- "@graphcommerce/next-ui": "^9.0.0-canary.107",
30
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.107",
31
- "@graphcommerce/react-hook-form": "^9.0.0-canary.107",
32
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.107",
21
+ "@graphcommerce/ecommerce-ui": "^9.0.0-canary.108",
22
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.108",
23
+ "@graphcommerce/graphql": "^9.0.0-canary.108",
24
+ "@graphcommerce/graphql-mesh": "^9.0.0-canary.108",
25
+ "@graphcommerce/image": "^9.0.0-canary.108",
26
+ "@graphcommerce/magento-customer": "^9.0.0-canary.108",
27
+ "@graphcommerce/magento-product": "^9.0.0-canary.108",
28
+ "@graphcommerce/magento-store": "^9.0.0-canary.108",
29
+ "@graphcommerce/next-ui": "^9.0.0-canary.108",
30
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.108",
31
+ "@graphcommerce/react-hook-form": "^9.0.0-canary.108",
32
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.108",
33
33
  "@lingui/core": "^4.2.1",
34
34
  "@lingui/macro": "^4.2.1",
35
35
  "@lingui/react": "^4.2.1",