@graphcommerce/hygraph-dynamic-rows-ui 9.0.4-canary.8 → 9.0.4
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 +7 -11
- package/components/PropertyPicker.tsx +1 -1
- package/components/Setup.tsx +1 -1
- package/package.json +6 -6
- package/pages/property-picker.tsx +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,18 @@
|
|
|
1
1
|
# @graphcommerce/hygraph-dynamic-rows-ui
|
|
2
2
|
|
|
3
|
-
## 9.0.4
|
|
3
|
+
## 9.0.4
|
|
4
4
|
|
|
5
|
-
## 9.0.
|
|
5
|
+
## 9.0.3
|
|
6
6
|
|
|
7
|
-
## 9.0.
|
|
7
|
+
## 9.0.3-canary.0
|
|
8
8
|
|
|
9
|
-
## 9.0.
|
|
9
|
+
## 9.0.2
|
|
10
10
|
|
|
11
|
-
## 9.0.
|
|
11
|
+
## 9.0.2-canary.0
|
|
12
12
|
|
|
13
|
-
## 9.0.
|
|
13
|
+
## 9.0.1
|
|
14
14
|
|
|
15
|
-
## 9.0.
|
|
16
|
-
|
|
17
|
-
## 9.0.4-canary.1
|
|
18
|
-
|
|
19
|
-
## 9.0.4-canary.0
|
|
15
|
+
## 9.0.1-canary.1
|
|
20
16
|
|
|
21
17
|
## 9.0.0
|
|
22
18
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ApolloClient,
|
|
1
|
+
import { ApolloClient, InMemoryCache, gql, useQuery } from '@apollo/client'
|
|
2
2
|
import type { FieldExtensionProps } from '@hygraph/app-sdk-react'
|
|
3
3
|
import { useFieldExtension } from '@hygraph/app-sdk-react'
|
|
4
4
|
import { TextField } from '@mui/material'
|
package/components/Setup.tsx
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.4
|
|
5
|
+
"version": "9.0.4",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"type": "commonjs",
|
|
8
8
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@apollo/client": "~3.12.3",
|
|
20
|
-
"@graphcommerce/next-config": "9.0.4
|
|
20
|
+
"@graphcommerce/next-config": "9.0.4",
|
|
21
21
|
"@hygraph/app-sdk-react": "^0.0.5",
|
|
22
22
|
"@lingui/conf": "4.14.1",
|
|
23
23
|
"@lingui/core": "4.14.1",
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
"cross-env": "^7.0.3",
|
|
30
30
|
"dotenv": "16.4.7",
|
|
31
31
|
"graphql": "^16.10.0",
|
|
32
|
-
"next": "15.1.
|
|
32
|
+
"next": "15.1.0",
|
|
33
33
|
"react": "^18.3.1",
|
|
34
34
|
"react-dom": "^18.3.1",
|
|
35
35
|
"webpack": "^5.97.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@graphcommerce/eslint-config-pwa": "9.0.4
|
|
39
|
-
"@graphcommerce/prettier-config-pwa": "9.0.4
|
|
40
|
-
"@graphcommerce/typescript-config-pwa": "9.0.4
|
|
38
|
+
"@graphcommerce/eslint-config-pwa": "9.0.4",
|
|
39
|
+
"@graphcommerce/prettier-config-pwa": "9.0.4",
|
|
40
|
+
"@graphcommerce/typescript-config-pwa": "9.0.4",
|
|
41
41
|
"@types/react": "^18.3.17",
|
|
42
42
|
"@types/react-dom": "^18.3.5",
|
|
43
43
|
"@types/react-is": "^18.3.1",
|
|
@@ -7,8 +7,7 @@ export default function DRPropertyPicker() {
|
|
|
7
7
|
|
|
8
8
|
useEffect(() => {
|
|
9
9
|
/**
|
|
10
|
-
* Some styling is being undone here to resolve conflicts between Hygraph App SDK and
|
|
11
|
-
* CssAndFramerMotionProvider.
|
|
10
|
+
* Some styling is being undone here to resolve conflicts between Hygraph App SDK and CssAndFramerMotionProvider.
|
|
12
11
|
*/
|
|
13
12
|
const frameBox1 = fieldContainer?.current?.parentElement
|
|
14
13
|
if (frameBox1) {
|