@graphcommerce/hygraph-dynamic-rows-ui 9.0.0-canary.114 → 9.0.0-canary.116
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 +4 -0
- package/package.json +18 -13
- package/types/index.ts +0 -38
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/hygraph-dynamic-rows-ui",
|
|
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.116",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"type": "commonjs",
|
|
8
8
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
@@ -16,25 +16,30 @@
|
|
|
16
16
|
"dev": "next dev"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@apollo/client": "~3.
|
|
20
|
-
"@graphcommerce/next-config": "9.0.0-canary.
|
|
19
|
+
"@apollo/client": "~3.12.3",
|
|
20
|
+
"@graphcommerce/next-config": "9.0.0-canary.116",
|
|
21
21
|
"@hygraph/app-sdk-react": "^0.0.5",
|
|
22
|
-
"@lingui/
|
|
23
|
-
"@lingui/
|
|
24
|
-
"@lingui/
|
|
22
|
+
"@lingui/conf": "4.14.1",
|
|
23
|
+
"@lingui/core": "4.14.1",
|
|
24
|
+
"@lingui/loader": "4.14.1",
|
|
25
|
+
"@lingui/macro": "4.14.1",
|
|
26
|
+
"@lingui/react": "4.14.1",
|
|
27
|
+
"@lingui/swc-plugin": "4.1.0",
|
|
25
28
|
"@mui/material": "5.16.8",
|
|
26
29
|
"cross-env": "^7.0.3",
|
|
27
|
-
"dotenv": "16.4.
|
|
28
|
-
"graphql": "^16.
|
|
29
|
-
"next": "15.0
|
|
30
|
+
"dotenv": "16.4.7",
|
|
31
|
+
"graphql": "^16.10.0",
|
|
32
|
+
"next": "15.1.0",
|
|
30
33
|
"react": "^18.3.1",
|
|
31
34
|
"react-dom": "^18.3.1",
|
|
32
|
-
"webpack": "^5.
|
|
35
|
+
"webpack": "^5.97.1"
|
|
33
36
|
},
|
|
34
37
|
"devDependencies": {
|
|
35
|
-
"@graphcommerce/eslint-config-pwa": "9.0.0-canary.
|
|
36
|
-
"@graphcommerce/prettier-config-pwa": "9.0.0-canary.
|
|
37
|
-
"@graphcommerce/typescript-config-pwa": "9.0.0-canary.
|
|
38
|
+
"@graphcommerce/eslint-config-pwa": "9.0.0-canary.116",
|
|
39
|
+
"@graphcommerce/prettier-config-pwa": "9.0.0-canary.116",
|
|
40
|
+
"@graphcommerce/typescript-config-pwa": "9.0.0-canary.116",
|
|
41
|
+
"@types/react": "^18.3.17",
|
|
42
|
+
"@types/react-dom": "^18.3.5",
|
|
38
43
|
"@types/react-is": "^18.3.1",
|
|
39
44
|
"babel-plugin-macros": "^3.1.0",
|
|
40
45
|
"eslint": "^8.57.1",
|
package/types/index.ts
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
export type ProductProperty = {
|
|
2
|
-
label: string
|
|
3
|
-
id: string
|
|
4
|
-
type?: string
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
export type Interface = {
|
|
8
|
-
__type: __Type
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export type __Type = {
|
|
12
|
-
kind?: __TypeKind
|
|
13
|
-
name?: string
|
|
14
|
-
description?: string
|
|
15
|
-
fields: __Field[]
|
|
16
|
-
ofType?: { name?: string; fields: __Field[] }
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export type __TypeKind =
|
|
20
|
-
| 'SCALAR'
|
|
21
|
-
| 'OBJECT'
|
|
22
|
-
| 'INTERFACE'
|
|
23
|
-
| 'UNION'
|
|
24
|
-
| 'ENUM'
|
|
25
|
-
| 'INPUT_OBJECT'
|
|
26
|
-
| 'LIST'
|
|
27
|
-
| 'NON_NULL'
|
|
28
|
-
|
|
29
|
-
export type __Field = {
|
|
30
|
-
name: string
|
|
31
|
-
type: __Type
|
|
32
|
-
isDeprecated: boolean
|
|
33
|
-
description?: string
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export type Option = { id: string; label: string }
|
|
37
|
-
|
|
38
|
-
export type Options = { text: Option[]; number: Option[] }
|