@tinacms/app 0.0.0-6eded85-20250401064636 → 0.0.0-6fcee13-20250402050404
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 +8 -5
- package/package.json +5 -7
- package/src/Playground.tsx +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# @tinacms/app
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-6fcee13-20250402050404
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- [#
|
|
7
|
+
- [#5602](https://github.com/tinacms/tinacms/pull/5602) [`ab43169`](https://github.com/tinacms/tinacms/commit/ab43169af5a95f31fa27bb0236623a031883a1fd) Thanks [@wicksipedia](https://github.com/wicksipedia)! - fix naming of TinaCloud
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
9
|
+
- [#5588](https://github.com/tinacms/tinacms/pull/5588) [`a506cfb`](https://github.com/tinacms/tinacms/commit/a506cfba1afbaa3fa4448ff2198c4dc38550c001) Thanks [@JackDevAU](https://github.com/JackDevAU)! - - Fix server-side branch queries by storing the active branch in a cookie and passing it via the x-branch header.
|
|
10
|
+
- Ensure GraphQL playground correctly updates when switching branches.
|
|
11
|
+
- Updated dependencies [[`921f235`](https://github.com/tinacms/tinacms/commit/921f2356e4615d532d02eefa7103fdb70f83b97a), [`ab43169`](https://github.com/tinacms/tinacms/commit/ab43169af5a95f31fa27bb0236623a031883a1fd), [`b551232`](https://github.com/tinacms/tinacms/commit/b5512326ad0ad9855bc75e2073a3ab2a8ec4c064), [`ea204c9`](https://github.com/tinacms/tinacms/commit/ea204c9045451f3ebea04f503e6158d2016613e4), [`a506cfb`](https://github.com/tinacms/tinacms/commit/a506cfba1afbaa3fa4448ff2198c4dc38550c001)]:
|
|
12
|
+
- tinacms@0.0.0-6fcee13-20250402050404
|
|
13
|
+
- @tinacms/mdx@0.0.0-6fcee13-20250402050404
|
|
11
14
|
|
|
12
15
|
## 2.2.3
|
|
13
16
|
|
|
@@ -470,7 +473,7 @@
|
|
|
470
473
|
|
|
471
474
|
fix: Use clean page-sizes on media manager (to make pagination more obvious)
|
|
472
475
|
|
|
473
|
-
Fix issue with uploading media in a folder with
|
|
476
|
+
Fix issue with uploading media in a folder with TinaCloud
|
|
474
477
|
|
|
475
478
|
- Updated dependencies [9c27087fb]
|
|
476
479
|
- Updated dependencies [65d0a701f]
|
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-6fcee13-20250402050404",
|
|
4
4
|
"main": "src/main.tsx",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
"@types/react-dom": "^18.3.5",
|
|
9
9
|
"typescript": "^5.7.3"
|
|
10
10
|
},
|
|
11
|
-
"peerDependencies": {
|
|
12
|
-
"react": ">=18.3.1 <20.0.0",
|
|
13
|
-
"react-dom": ">=18.3.1 <20.0.0"
|
|
14
|
-
},
|
|
15
11
|
"dependencies": {
|
|
16
12
|
"@graphiql/toolkit": "0.8.4",
|
|
17
13
|
"@headlessui/react": "2.1.8",
|
|
@@ -21,10 +17,12 @@
|
|
|
21
17
|
"graphiql": "3.0.0-alpha.1",
|
|
22
18
|
"graphql": "15.8.0",
|
|
23
19
|
"monaco-editor": "0.31.0",
|
|
20
|
+
"react": "^18.3.1",
|
|
21
|
+
"react-dom": "^18.3.1",
|
|
24
22
|
"react-router-dom": "6.3.0",
|
|
25
23
|
"typescript": "^5.7.3",
|
|
26
24
|
"zod": "^3.24.2",
|
|
27
|
-
"@tinacms/mdx": "
|
|
28
|
-
"tinacms": "0.0.0-
|
|
25
|
+
"@tinacms/mdx": "0.0.0-6fcee13-20250402050404",
|
|
26
|
+
"tinacms": "0.0.0-6fcee13-20250402050404"
|
|
29
27
|
}
|
|
30
28
|
}
|
package/src/Playground.tsx
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createGraphiQLFetcher } from '@graphiql/toolkit';
|
|
2
|
+
import { FolderIcon } from '@heroicons/react/outline';
|
|
3
|
+
import { queries } from 'CLIENT_IMPORT';
|
|
2
4
|
import { GraphiQL } from 'graphiql';
|
|
3
5
|
import { parse, print } from 'graphql';
|
|
4
6
|
import React from 'react';
|
|
5
7
|
import { useCMS } from 'tinacms';
|
|
6
|
-
import { FolderIcon } from '@heroicons/react/outline';
|
|
7
|
-
import { queries } from 'CLIENT_IMPORT';
|
|
8
8
|
|
|
9
9
|
import 'graphiql/graphiql.min.css';
|
|
10
10
|
|
|
@@ -134,7 +134,7 @@ const Playground = () => {
|
|
|
134
134
|
<GraphiQL
|
|
135
135
|
fetcher={async (params, options) => {
|
|
136
136
|
const fetcher = createGraphiQLFetcher({
|
|
137
|
-
url: __API_URL__,
|
|
137
|
+
url: cms.api.tina.contentApiUrl || __API_URL__,
|
|
138
138
|
headers: { Authorization: `Bearer ${getToken()}` },
|
|
139
139
|
});
|
|
140
140
|
return fetcher(params, options);
|