@graphcommerce/magento-cart-coupon 9.1.0-canary.18 → 9.1.0-canary.20
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/Api/AppliedCoupon.graphql +3 -0
- package/Api/Coupon.graphql +1 -1
- package/ApplyCouponForm/ApplyCouponForm.tsx +1 -1
- package/CHANGELOG.md +8 -0
- package/package.json +11 -11
package/Api/Coupon.graphql
CHANGED
|
@@ -39,7 +39,7 @@ export function ApplyCouponForm(props: ApplyCouponFormProps) {
|
|
|
39
39
|
variant='outlined'
|
|
40
40
|
type='text'
|
|
41
41
|
error={!!formState.errors.couponCode || !!error}
|
|
42
|
-
required
|
|
42
|
+
required
|
|
43
43
|
name='couponCode'
|
|
44
44
|
rules={{ required: required.couponCode }}
|
|
45
45
|
control={control}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.1.0-canary.20
|
|
4
|
+
|
|
5
|
+
## 9.1.0-canary.19
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`3613b74`](https://github.com/graphcommerce-org/graphcommerce/commit/3613b7412e736c2770654a076ee8fa5f1e77735c) - Split out various Cart related fragments to allow for easier extensibility: AppliedCoupon, CartPrices, CartTaxItem, Discount ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
3
11
|
## 9.1.0-canary.18
|
|
4
12
|
|
|
5
13
|
## 9.1.0-canary.17
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart-coupon",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "9.1.0-canary.
|
|
5
|
+
"version": "9.1.0-canary.20",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^9.1.0-canary.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.
|
|
17
|
-
"@graphcommerce/graphql": "^9.1.0-canary.
|
|
18
|
-
"@graphcommerce/image": "^9.1.0-canary.
|
|
19
|
-
"@graphcommerce/magento-cart": "^9.1.0-canary.
|
|
20
|
-
"@graphcommerce/magento-store": "^9.1.0-canary.
|
|
21
|
-
"@graphcommerce/next-ui": "^9.1.0-canary.
|
|
22
|
-
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.
|
|
23
|
-
"@graphcommerce/react-hook-form": "^9.1.0-canary.
|
|
24
|
-
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.1.0-canary.20",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.20",
|
|
17
|
+
"@graphcommerce/graphql": "^9.1.0-canary.20",
|
|
18
|
+
"@graphcommerce/image": "^9.1.0-canary.20",
|
|
19
|
+
"@graphcommerce/magento-cart": "^9.1.0-canary.20",
|
|
20
|
+
"@graphcommerce/magento-store": "^9.1.0-canary.20",
|
|
21
|
+
"@graphcommerce/next-ui": "^9.1.0-canary.20",
|
|
22
|
+
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.20",
|
|
23
|
+
"@graphcommerce/react-hook-form": "^9.1.0-canary.20",
|
|
24
|
+
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.20",
|
|
25
25
|
"@lingui/core": "^4.2.1",
|
|
26
26
|
"@lingui/macro": "^4.2.1",
|
|
27
27
|
"@lingui/react": "^4.2.1",
|