@tinacms/graphql 0.55.0 → 0.56.1
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 +29 -0
- package/dist/index.js +21648 -1744
- package/dist/primitives/ast-builder/index.d.ts +1 -0
- package/dist/primitives/builder/index.d.ts +8 -0
- package/dist/primitives/mdx/index.d.ts +21 -0
- package/dist/primitives/mdx/parse.d.ts +229 -0
- package/dist/primitives/mdx/stringify.d.ts +24 -0
- package/dist/primitives/resolver/index.d.ts +90 -9
- package/dist/primitives/spec/setup.d.ts +8 -4
- package/dist/primitives/types.d.ts +18 -2
- package/package.json +44 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# tina-graphql
|
|
2
2
|
|
|
3
|
+
## 0.56.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4b7795612: Adds support for collection.templates to TinaAdmin
|
|
8
|
+
|
|
9
|
+
## 0.56.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- b99baebf1: Add rich-text editor based on mdx, bump React dependency requirement to 16.14
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 891623c7c: Adds support for List and Update to TinaAdmin
|
|
18
|
+
|
|
19
|
+
## 0.55.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 9ecb392ca: Fix bug which would set markdown body to undefined when the payload was emptry"
|
|
24
|
+
|
|
25
|
+
## 0.55.1
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- ff4446c8e: Adds `getDocumentFields()` query for use with Tina Admin
|
|
30
|
+
- 667c33e2a: Add support for rich-text field, update build script to work with unified packages, which are ESM-only
|
|
31
|
+
|
|
3
32
|
## 0.55.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|