@tinacms/app 0.0.0-20230504234516 → 0.0.0-20230505000613
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 +3 -3
- package/package.json +3 -3
- package/src/lib/graphql-reducer.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @tinacms/app
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-20230505000613
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 7f95c1ce5: Reorganize the way fields are presented on the form to allow for deep-linking
|
|
8
8
|
- Updated dependencies [7f95c1ce5]
|
|
9
|
-
- @tinacms/toolkit@0.0.0-
|
|
10
|
-
- tinacms@0.0.0-
|
|
9
|
+
- @tinacms/toolkit@0.0.0-20230505000613
|
|
10
|
+
- tinacms@0.0.0-20230505000613
|
|
11
11
|
|
|
12
12
|
## 1.2.11
|
|
13
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinacms/app",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-20230505000613",
|
|
4
4
|
"main": "src/main.tsx",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"typescript": "^4.6.4",
|
|
29
29
|
"zod": "^3.14.3",
|
|
30
30
|
"@tinacms/mdx": "1.3.9",
|
|
31
|
-
"@tinacms/toolkit": "0.0.0-
|
|
32
|
-
"tinacms": "0.0.0-
|
|
31
|
+
"@tinacms/toolkit": "0.0.0-20230505000613",
|
|
32
|
+
"tinacms": "0.0.0-20230505000613"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -643,7 +643,7 @@ const resolveFieldValue = ({
|
|
|
643
643
|
...resolveFormValue({
|
|
644
644
|
fields: templateFields,
|
|
645
645
|
values: item,
|
|
646
|
-
path,
|
|
646
|
+
path: nextPath,
|
|
647
647
|
id,
|
|
648
648
|
}),
|
|
649
649
|
}
|
|
@@ -664,7 +664,7 @@ const resolveFieldValue = ({
|
|
|
664
664
|
...resolveFormValue({
|
|
665
665
|
fields: templateFields,
|
|
666
666
|
values: value as any,
|
|
667
|
-
path,
|
|
667
|
+
path: nextPath,
|
|
668
668
|
id,
|
|
669
669
|
}),
|
|
670
670
|
}
|