@tinacms/app 0.0.0-984566a-20250219181559 → 0.0.0-99bb59f-20250220002800

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,18 @@
1
1
  # @tinacms/app
2
2
 
3
- ## 0.0.0-984566a-20250219181559
3
+ ## 0.0.0-99bb59f-20250220002800
4
+
5
+ ### Minor Changes
6
+
7
+ - [#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
8
 
5
9
  ### Patch Changes
6
10
 
7
11
  - [#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
12
 
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
13
+ - 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)]:
14
+ - tinacms@0.0.0-99bb59f-20250220002800
15
+ - @tinacms/mdx@0.0.0-99bb59f-20250220002800
12
16
 
13
17
  ## 2.1.19
14
18
 
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-99bb59f-20250220002800",
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": "0.0.0-99bb59f-20250220002800",
26
+ "@tinacms/mdx": "0.0.0-99bb59f-20250220002800"
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