@graphcommerce/react-hook-form 8.0.1 → 8.0.2-canary.2

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
+ ## 8.0.2-canary.2
4
+
5
+ ## 8.0.2-canary.1
6
+
7
+ ## 8.0.2-canary.0
8
+
3
9
  ## 8.0.1
4
10
 
5
11
  ## 8.0.1-canary.4
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/react-hook-form",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "8.0.1",
5
+ "version": "8.0.2-canary.2",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -16,9 +16,9 @@
16
16
  },
17
17
  "peerDependencies": {
18
18
  "@apollo/client": "^3",
19
- "@graphcommerce/eslint-config-pwa": "^8.0.1",
20
- "@graphcommerce/prettier-config-pwa": "^8.0.1",
21
- "@graphcommerce/typescript-config-pwa": "^8.0.1",
19
+ "@graphcommerce/eslint-config-pwa": "^8.0.2-canary.2",
20
+ "@graphcommerce/prettier-config-pwa": "^8.0.2-canary.2",
21
+ "@graphcommerce/typescript-config-pwa": "^8.0.2-canary.2",
22
22
  "graphql": "^16.6.0",
23
23
  "react": "^18.2.0",
24
24
  "react-dom": "^18.2.0",
@@ -48,8 +48,8 @@ export type DeepIsRequired<V> = {
48
48
  [k in keyof V]-?: undefined extends V[k]
49
49
  ? false
50
50
  : V[k] extends Record<string, unknown>
51
- ? DeepIsRequired<V[k]>
52
- : true
51
+ ? DeepIsRequired<V[k]>
52
+ : true
53
53
  }
54
54
 
55
55
  type DeepStringify<V> = {
@@ -57,8 +57,8 @@ type DeepStringify<V> = {
57
57
  [k in keyof V]?: V[k] extends (infer U)[]
58
58
  ? string[]
59
59
  : V[k] extends Record<string, unknown>
60
- ? DeepStringify<V[k]>
61
- : string
60
+ ? DeepStringify<V[k]>
61
+ : string
62
62
  }
63
63
 
64
64
  type FieldTypes = LiteralUnion<keyof Scalars, string> | FieldTypes[]