@mastra/playground-ui 6.1.4-alpha.2 → 6.2.0-alpha.3
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 +22 -0
- package/dist/index.cjs.js +340 -783
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +340 -783
- package/dist/index.es.js.map +1 -1
- package/dist/src/domains/agents/components/agent-metadata/agent-metadata.d.ts +9 -1
- package/dist/src/domains/networks/components/network-table/network-table.d.ts +3 -4
- package/dist/src/domains/networks/components/network-table/types.d.ts +0 -1
- package/dist/src/domains/networks/index.d.ts +0 -1
- package/dist/src/domains/scores/components/scorers-table/columns.d.ts +3 -0
- package/dist/src/domains/scores/components/scorers-table/scorers-table.d.ts +9 -0
- package/dist/src/domains/scores/components/scorers-table/types.d.ts +5 -0
- package/dist/src/domains/scores/index.d.ts +1 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/src/store/playground-store.d.ts +5 -3
- package/package.json +6 -6
- package/dist/src/components/ui/data-table.d.ts +0 -39
- package/dist/src/domains/networks/network-chat.d.ts +0 -2
- package/dist/src/domains/scores/components/scorer-list.d.ts +0 -7
- package/dist/src/services/network-runtime-provider.d.ts +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @mastra/playground-ui
|
|
2
2
|
|
|
3
|
+
## 6.2.0-alpha.3
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Remove original AgentNetwork ([#7919](https://github.com/mastra-ai/mastra/pull/7919))
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- dependencies updates: ([#7908](https://github.com/mastra-ai/mastra/pull/7908))
|
|
12
|
+
- Updated dependency [`use-debounce@^10.0.6` ↗︎](https://www.npmjs.com/package/use-debounce/v/10.0.6) (from `^10.0.5`, in `dependencies`)
|
|
13
|
+
|
|
14
|
+
- dependencies updates: ([#7912](https://github.com/mastra-ai/mastra/pull/7912))
|
|
15
|
+
- Updated dependency [`zustand@^5.0.8` ↗︎](https://www.npmjs.com/package/zustand/v/5.0.8) (from `^5.0.7`, in `dependencies`)
|
|
16
|
+
|
|
17
|
+
- fix scorers table link full row ([#7915](https://github.com/mastra-ai/mastra/pull/7915))
|
|
18
|
+
|
|
19
|
+
- adjust the way we display scorers in agent metadata ([#7910](https://github.com/mastra-ai/mastra/pull/7910))
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e)]:
|
|
22
|
+
- @mastra/core@0.17.0-alpha.6
|
|
23
|
+
- @mastra/client-js@0.13.0-alpha.6
|
|
24
|
+
|
|
3
25
|
## 6.1.4-alpha.2
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|