@tinacms/app 2.1.5 → 2.1.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @tinacms/app
|
|
2
2
|
|
|
3
|
+
## 2.1.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`113f4db`](https://github.com/tinacms/tinacms/commit/113f4db4b5d5b7d4b95d612eca56f815f41b4f8c)]:
|
|
8
|
+
- tinacms@2.2.7
|
|
9
|
+
|
|
10
|
+
## 2.1.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [#4818](https://github.com/tinacms/tinacms/pull/4818) [`96bdcb7`](https://github.com/tinacms/tinacms/commit/96bdcb79b30e96056c7b19614be260a6c3ef00da) Thanks [@JackDevAU](https://github.com/JackDevAU)! - lock headlessui to version 2.1.8
|
|
15
|
+
|
|
16
|
+
- [#4804](https://github.com/tinacms/tinacms/pull/4804) [`d08053e`](https://github.com/tinacms/tinacms/commit/d08053e758b6910afa8ab8952a40984921cccbc4) Thanks [@dependabot](https://github.com/apps/dependabot)! - ⬆️ Updates Typescript to v5.5, @types/node to v22.x, next.js to latest version 14.x, and removes node-fetch
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [[`b64b046`](https://github.com/tinacms/tinacms/commit/b64b046dc67ae948513057f855b156ce0cf250d8), [`6cd3596`](https://github.com/tinacms/tinacms/commit/6cd35967ab0d34851be44199bc9821b128fcfc75), [`96bdcb7`](https://github.com/tinacms/tinacms/commit/96bdcb79b30e96056c7b19614be260a6c3ef00da), [`a6a7735`](https://github.com/tinacms/tinacms/commit/a6a77351b97589c60de69445a9eb2ea57beb4343), [`d08053e`](https://github.com/tinacms/tinacms/commit/d08053e758b6910afa8ab8952a40984921cccbc4)]:
|
|
19
|
+
- tinacms@2.2.6
|
|
20
|
+
- @tinacms/mdx@1.4.3
|
|
21
|
+
|
|
3
22
|
## 2.1.5
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinacms/app",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"main": "src/main.tsx",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
7
|
"@types/react": "^18.3.3",
|
|
8
8
|
"@types/react-dom": "^18.3.0",
|
|
9
|
-
"typescript": "^5.
|
|
9
|
+
"typescript": "^5.6.2"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@graphiql/toolkit": "0.8.4",
|
|
13
|
-
"@headlessui/react": "
|
|
13
|
+
"@headlessui/react": "2.1.8",
|
|
14
14
|
"@heroicons/react": "^1.0.6",
|
|
15
15
|
"@monaco-editor/react": "4.4.5",
|
|
16
16
|
"final-form": "4.20.10",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"react": "^18.3.1",
|
|
21
21
|
"react-dom": "^18.3.1",
|
|
22
22
|
"react-router-dom": "6.3.0",
|
|
23
|
-
"typescript": "^5.
|
|
23
|
+
"typescript": "^5.6.2",
|
|
24
24
|
"zod": "^3.14.3",
|
|
25
|
-
"@tinacms/mdx": "1.4.
|
|
26
|
-
"tinacms": "2.2.
|
|
25
|
+
"@tinacms/mdx": "1.4.3",
|
|
26
|
+
"tinacms": "2.2.7"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -84,7 +84,6 @@ export function ErrorMessage({ error }: { error: InvalidMarkdownElement }) {
|
|
|
84
84
|
<XCircleIcon className="h-5 w-5 text-red-400" aria-hidden="true" />
|
|
85
85
|
</PopoverButton>
|
|
86
86
|
<Transition
|
|
87
|
-
as={Fragment}
|
|
88
87
|
enter="transition ease-out duration-200"
|
|
89
88
|
enterFrom="opacity-0 translate-y-1"
|
|
90
89
|
enterTo="opacity-100 translate-y-0"
|