@tinacms/app 0.0.0-984566a-20250219181559 → 0.0.0-98df118-20250227044321

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,14 +1,33 @@
1
1
  # @tinacms/app
2
2
 
3
- ## 0.0.0-984566a-20250219181559
3
+ ## 0.0.0-98df118-20250227044321
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`602b4d0`](https://github.com/tinacms/tinacms/commit/602b4d07f94de4c10d5bb059a5edc49546a2031c)]:
8
+ - tinacms@0.0.0-98df118-20250227044321
9
+ - @tinacms/mdx@0.0.0-98df118-20250227044321
10
+
11
+ ## 2.2.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`74513b3`](https://github.com/tinacms/tinacms/commit/74513b357aa27165aa86f7b3218c697c663539e8), [`06c1716`](https://github.com/tinacms/tinacms/commit/06c17163b558a96275b0ef66c746b005a6f90d13)]:
16
+ - tinacms@2.7.1
17
+
18
+ ## 2.2.0
19
+
20
+ ### Minor Changes
21
+
22
+ - [#5503](https://github.com/tinacms/tinacms/pull/5503) [`99bb59f`](https://github.com/tinacms/tinacms/commit/99bb59ff7b9f3cf27a1382b91826eb81831ecb95) Thanks [@JackDevAU](https://github.com/JackDevAU)! - feat: add experimental user form select to the useTina hook
4
23
 
5
24
  ### Patch Changes
6
25
 
7
26
  - [#5486](https://github.com/tinacms/tinacms/pull/5486) [`d7c5ec1`](https://github.com/tinacms/tinacms/commit/d7c5ec1b174419dcc6ddba3cfb3684dd469da571) Thanks [@JackDevAU](https://github.com/JackDevAU)! - Update dependencies across packages
8
27
 
9
- - Updated dependencies [[`3974aa7`](https://github.com/tinacms/tinacms/commit/3974aa759192713140733b99ee0254a1a056e124), [`7541614`](https://github.com/tinacms/tinacms/commit/7541614527a02268ea453b23ce84637f978dcf2d), [`d7c5ec1`](https://github.com/tinacms/tinacms/commit/d7c5ec1b174419dcc6ddba3cfb3684dd469da571), [`cbc7476`](https://github.com/tinacms/tinacms/commit/cbc7476bbc4cb08a8ec4a319abbe1d2c2ca14a48)]:
10
- - tinacms@0.0.0-984566a-20250219181559
11
- - @tinacms/mdx@0.0.0-984566a-20250219181559
28
+ - Updated dependencies [[`3974aa7`](https://github.com/tinacms/tinacms/commit/3974aa759192713140733b99ee0254a1a056e124), [`7541614`](https://github.com/tinacms/tinacms/commit/7541614527a02268ea453b23ce84637f978dcf2d), [`d7c5ec1`](https://github.com/tinacms/tinacms/commit/d7c5ec1b174419dcc6ddba3cfb3684dd469da571), [`99bb59f`](https://github.com/tinacms/tinacms/commit/99bb59ff7b9f3cf27a1382b91826eb81831ecb95)]:
29
+ - tinacms@2.7.0
30
+ - @tinacms/mdx@1.6.0
12
31
 
13
32
  ## 2.1.19
14
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/app",
3
- "version": "0.0.0-984566a-20250219181559",
3
+ "version": "0.0.0-98df118-20250227044321",
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.7.3",
24
24
  "zod": "^3.24.2",
25
- "@tinacms/mdx": "0.0.0-984566a-20250219181559",
26
- "tinacms": "0.0.0-984566a-20250219181559"
25
+ "@tinacms/mdx": "0.0.0-98df118-20250227044321",
26
+ "tinacms": "0.0.0-98df118-20250227044321"
27
27
  }
28
28
  }
@@ -495,6 +495,13 @@ export const useGraphQLReducer = (
495
495
 
496
496
  const handleMessage = React.useCallback(
497
497
  (event: MessageEvent<PostMessage>) => {
498
+ if (event.data.type === 'user-select-form') {
499
+ cms.dispatch({
500
+ type: 'forms:set-active-form-id',
501
+ value: event.data.formId,
502
+ })
503
+ }
504
+
498
505
  if (event?.data?.type === 'quick-edit') {
499
506
  cms.dispatch({
500
507
  type: 'set-quick-editing-supported',
package/src/lib/types.ts CHANGED
@@ -6,6 +6,7 @@ export type PostMessage =
6
6
  }
7
7
  | { type: 'field:selected'; fieldName: string }
8
8
  | { type: 'quick-edit'; value: boolean }
9
+ | { type: 'user-select-form'; formId: string }
9
10
 
10
11
  export type Payload = {
11
12
  id: string