@tinacms/app 0.0.0-7148f32-20241003003726 → 0.0.0-756178e-20241111054910

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,11 +1,42 @@
1
1
  # @tinacms/app
2
2
 
3
- ## 0.0.0-7148f32-20241003003726
3
+ ## 0.0.0-756178e-20241111054910
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - Updated dependencies [[`437db59`](https://github.com/tinacms/tinacms/commit/437db590bcc74cf60f49cebd40e455c6231e83e9)]:
8
- - tinacms@0.0.0-7148f32-20241003003726
7
+ - [#5218](https://github.com/tinacms/tinacms/pull/5218) [`03bb823`](https://github.com/tinacms/tinacms/commit/03bb8237df87dab9da503818b839d44209263a48) Thanks [@kldavis4](https://github.com/kldavis4)! - Adds referential integrity for renaming and deleting referenced documents.
8
+
9
+ When a document is renamed, any documents which reference the document will be updated with the new document name. When a document is deleted, the user will be warned and any references to the document will be deleted.
10
+
11
+ - Updated dependencies [[`03bb823`](https://github.com/tinacms/tinacms/commit/03bb8237df87dab9da503818b839d44209263a48), [`60fb710`](https://github.com/tinacms/tinacms/commit/60fb710addd539860eb7ba39196e02f3bb5f08c1), [`9088136`](https://github.com/tinacms/tinacms/commit/9088136891b07fbb520bd782756c161c3e02feb0)]:
12
+ - tinacms@0.0.0-756178e-20241111054910
13
+ - @tinacms/mdx@0.0.0-756178e-20241111054910
14
+
15
+ ## 2.1.11
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [[`9bb408f`](https://github.com/tinacms/tinacms/commit/9bb408f1c45ecb1fd8e39faac652c4b342f74967), [`bbf2f81`](https://github.com/tinacms/tinacms/commit/bbf2f81143eb400faf8aa4dff33b8a58fa5059c8), [`bc59a81`](https://github.com/tinacms/tinacms/commit/bc59a819e1e68e48de027c4fac72551ca109185d)]:
20
+ - tinacms@2.4.0
21
+ - @tinacms/mdx@1.5.1
22
+
23
+ ## 2.1.10
24
+
25
+ ### Patch Changes
26
+
27
+ - [#5004](https://github.com/tinacms/tinacms/pull/5004) [`74014ed`](https://github.com/tinacms/tinacms/commit/74014ed2df67e96e1a5fb2950e973528322671a3) Thanks [@Ben0189](https://github.com/Ben0189)! - Fix toolbar floating icon show up in different screen size
28
+
29
+ - Updated dependencies [[`c5dad82`](https://github.com/tinacms/tinacms/commit/c5dad82a3f1fc4f7686f1503a7894dfacffa8c36), [`ecea7ac`](https://github.com/tinacms/tinacms/commit/ecea7ac5e1c087954eaaf873df3a563ca08f3e47), [`eb519f2`](https://github.com/tinacms/tinacms/commit/eb519f27a4c0fe1b05c361db2c1fe2337e6c4e12), [`00f6525`](https://github.com/tinacms/tinacms/commit/00f6525871c7c6bd40091424337df72c7bfcf783)]:
30
+ - @tinacms/mdx@1.5.0
31
+ - tinacms@2.3.0
32
+
33
+ ## 2.1.9
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies [[`31513bb`](https://github.com/tinacms/tinacms/commit/31513bb473cd1d349a3711ef7c5075cf9d03f121), [`3b2aba8`](https://github.com/tinacms/tinacms/commit/3b2aba80ac14a512592f67a04f9e1792667db9dd)]:
38
+ - tinacms@2.2.9
39
+ - @tinacms/mdx@1.4.5
9
40
 
10
41
  ## 2.1.8
11
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/app",
3
- "version": "0.0.0-7148f32-20241003003726",
3
+ "version": "0.0.0-756178e-20241111054910",
4
4
  "main": "src/main.tsx",
5
5
  "license": "Apache-2.0",
6
6
  "devDependencies": {
@@ -22,7 +22,7 @@
22
22
  "react-router-dom": "6.3.0",
23
23
  "typescript": "^5.6.2",
24
24
  "zod": "^3.23.8",
25
- "@tinacms/mdx": "1.4.4",
26
- "tinacms": "0.0.0-7148f32-20241003003726"
25
+ "@tinacms/mdx": "0.0.0-756178e-20241111054910",
26
+ "tinacms": "0.0.0-756178e-20241111054910"
27
27
  }
28
28
  }
@@ -41,6 +41,7 @@ const sysSchema = z.object({
41
41
  relativePath: z.string(),
42
42
  title: z.string().optional().nullable(),
43
43
  template: z.string(),
44
+ hasReferences: z.boolean().optional().nullable(),
44
45
  collection: z.object({
45
46
  name: z.string(),
46
47
  slug: z.string(),
@@ -838,6 +839,7 @@ _internalSys: _sys {
838
839
  extension
839
840
  relativePath
840
841
  title
842
+ hasReferences
841
843
  template
842
844
  collection {
843
845
  name