@tinacms/app 2.5.6 → 2.5.7
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/package.json +10 -3
- package/src/lib/graphql-reducer.ts +0 -4
- package/CHANGELOG.md +0 -1556
- package/vitest.config.ts +0 -10
package/package.json
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinacms/app",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.7",
|
|
4
4
|
"main": "src/main.tsx",
|
|
5
|
+
"files": [
|
|
6
|
+
"src",
|
|
7
|
+
"index.html",
|
|
8
|
+
"favicon.svg",
|
|
9
|
+
"tsconfig.json",
|
|
10
|
+
"tsconfig.node.json"
|
|
11
|
+
],
|
|
5
12
|
"license": "Apache-2.0",
|
|
6
13
|
"devDependencies": {
|
|
7
14
|
"@types/react": "^18.3.18",
|
|
@@ -29,8 +36,8 @@
|
|
|
29
36
|
"react-router-dom": "^6.30.3",
|
|
30
37
|
"typescript": "^5.7.3",
|
|
31
38
|
"zod": "^3.24.2",
|
|
32
|
-
"@tinacms/mdx": "2.1.
|
|
33
|
-
"tinacms": "3.9.
|
|
39
|
+
"@tinacms/mdx": "2.1.8",
|
|
40
|
+
"tinacms": "3.9.4"
|
|
34
41
|
},
|
|
35
42
|
"repository": {
|
|
36
43
|
"url": "https://github.com/tinacms/tinacms.git",
|
|
@@ -10,7 +10,6 @@ import {
|
|
|
10
10
|
ErrorDialog,
|
|
11
11
|
Form,
|
|
12
12
|
FormOptions,
|
|
13
|
-
GlobalFormPlugin,
|
|
14
13
|
NAMER,
|
|
15
14
|
Template,
|
|
16
15
|
TinaCMS,
|
|
@@ -1089,9 +1088,6 @@ const buildForm = ({
|
|
|
1089
1088
|
// so without this the very first open leaves `form.queries` empty.
|
|
1090
1089
|
form.addQuery(payloadId);
|
|
1091
1090
|
if (shouldRegisterForm) {
|
|
1092
|
-
if (collection.ui?.global) {
|
|
1093
|
-
cms.plugins.add(new GlobalFormPlugin(form));
|
|
1094
|
-
}
|
|
1095
1091
|
cms.dispatch({ type: 'forms:add', value: form });
|
|
1096
1092
|
}
|
|
1097
1093
|
}
|