@mastra/playground-ui 7.0.0-beta.0 → 7.0.0-beta.2

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist/index.cjs.js +357 -606
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.es.js +361 -600
  5. package/dist/index.es.js.map +1 -1
  6. package/dist/src/components/syntax-highlighter.d.ts +2 -1
  7. package/dist/src/components/ui/elements/form-fields/index.d.ts +0 -4
  8. package/dist/src/components/ui/elements/headers/index.d.ts +0 -1
  9. package/dist/src/components/ui/elements/main-sidebar/main-sidebar.d.ts +1 -1
  10. package/dist/src/components/ui/input.d.ts +1 -1
  11. package/dist/src/components/ui/syntax-highlighter.d.ts +1 -1
  12. package/dist/src/components/ui/textarea.d.ts +1 -1
  13. package/dist/src/domains/agents/context/index.d.ts +0 -1
  14. package/dist/src/domains/agents/context/model-reset-context.d.ts +0 -4
  15. package/dist/src/domains/scores/hooks/use-scorers.d.ts +2 -6
  16. package/dist/src/domains/scores/index.d.ts +1 -1
  17. package/dist/src/domains/tools/components/ToolExecutor.d.ts +1 -1
  18. package/dist/src/domains/workflows/context/use-current-run.d.ts +2 -0
  19. package/dist/src/domains/workflows/workflow/workflow-default-node.d.ts +4 -0
  20. package/dist/src/domains/workflows/workflow/workflow-nested-node.d.ts +4 -0
  21. package/dist/src/domains/workflows/workflow/workflow-node-badges.d.ts +55 -0
  22. package/dist/src/domains/workflows/workflow/workflow-step-action-bar.d.ts +3 -1
  23. package/dist/src/ds/components/Table/Cells.d.ts +0 -3
  24. package/dist/src/index.d.ts +1 -2
  25. package/package.json +12 -10
  26. package/dist/src/components/assistant-ui/thread-list.d.ts +0 -2
  27. package/dist/src/components/assistant-ui/tools/tool-approval.d.ts +0 -8
  28. package/dist/src/components/icons/agent-icon.d.ts +0 -3
  29. package/dist/src/components/icons/automation-icon.d.ts +0 -3
  30. package/dist/src/components/ui/copyable-content.d.ts +0 -7
  31. package/dist/src/components/ui/dropdown-menu.d.ts +0 -42
  32. package/dist/src/components/ui/elements/entry-list/entry-list-toolbar.d.ts +0 -6
  33. package/dist/src/components/ui/elements/form-fields/form-actions.d.ts +0 -12
  34. package/dist/src/components/ui/elements/form-fields/radio-group-field.d.ts +0 -21
  35. package/dist/src/components/ui/elements/form-fields/slider-field.d.ts +0 -15
  36. package/dist/src/components/ui/elements/form-fields/textarea-field.d.ts +0 -11
  37. package/dist/src/components/ui/elements/headers/entity-main-header.d.ts +0 -11
  38. package/dist/src/components/ui/elements/side-dialog/side-dialog-footer.d.ts +0 -10
  39. package/dist/src/components/ui/formatted-date.d.ts +0 -3
  40. package/dist/src/components/ui/resizable.d.ts +0 -23
  41. package/dist/src/components/ui/score-indicator.d.ts +0 -3
  42. package/dist/src/components/ui/toggle.d.ts +0 -12
  43. package/dist/src/domains/agents/components/agent-metadata/connection-dot.d.ts +0 -6
  44. package/dist/src/domains/agents/components/agent-metadata/models.d.ts +0 -5
  45. package/dist/src/domains/agents/components/agent-metadata/provider-status-indicator.d.ts +0 -7
  46. package/dist/src/domains/resizable-panel.d.ts +0 -11
  47. package/dist/src/domains/scores/components/score-table.d.ts +0 -11
  48. package/dist/src/domains/tools/components/tool-table/types.d.ts +0 -2
  49. package/dist/src/domains/workflows/workflow/workflow-result.d.ts +0 -5
  50. package/dist/src/hooks/use-resize-column.d.ts +0 -12
  51. package/dist/src/lib/mastra-client.d.ts +0 -2
  52. package/dist/src/lib/pagination/types.d.ts +0 -11
  53. package/dist/src/lib/polls.d.ts +0 -36
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 7.0.0-beta.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Make suspendPayload optional when calling `suspend()` ([#9926](https://github.com/mastra-ai/mastra/pull/9926))
8
+ Save value returned as `suspendOutput` if user returns data still after calling `suspend()`
9
+ Automatically call `commit()` on uncommitted workflows when registering in Mastra instance
10
+ Show actual suspendPayload on Studio in suspend/resume flow
11
+ - Updated dependencies [[`627067b`](https://github.com/mastra-ai/mastra/commit/627067b22eeb26601f65fee3646ba17fc0c91501), [`465ac05`](https://github.com/mastra-ai/mastra/commit/465ac0526a91d175542091c675181f1a96c98c46)]:
12
+ - @mastra/ai-sdk@1.0.0-beta.1
13
+ - @mastra/core@1.0.0-beta.2
14
+ - @mastra/client-js@1.0.0-beta.2
15
+ - @mastra/react@0.1.0-beta.2
16
+
17
+ ## 7.0.0-beta.1
18
+
19
+ ### Patch Changes
20
+
21
+ - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
22
+
23
+ - Removing uneeded files ([#9877](https://github.com/mastra-ai/mastra/pull/9877))
24
+
25
+ - Explicitly set color of line number in CodeMirror ([#9878](https://github.com/mastra-ai/mastra/pull/9878))
26
+
27
+ - Add visual styles and labels for more workflow node types ([#9777](https://github.com/mastra-ai/mastra/pull/9777))
28
+
29
+ - Updated dependencies [[`910db9e`](https://github.com/mastra-ai/mastra/commit/910db9e0312888495eb5617b567f247d03303814), [`dbd9db0`](https://github.com/mastra-ai/mastra/commit/dbd9db0d5c2797a210b9098e7e3e613718e5442f), [`e7266a2`](https://github.com/mastra-ai/mastra/commit/e7266a278db02035c97a5e9cd9d1669a6b7a535d)]:
30
+ - @mastra/core@1.0.0-beta.1
31
+ - @mastra/client-js@1.0.0-beta.1
32
+ - @mastra/react@0.1.0-beta.1
33
+
3
34
  ## 7.0.0-beta.0
4
35
 
5
36
  ### Major Changes