@mastra/react 0.0.0-sidebar-window-undefined-fix-20251029233656 → 0.0.0-trace-timeline-update-20251121092347
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 +60 -3
- package/dist/index.cjs +13 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +13 -12
- package/dist/index.js.map +1 -1
- package/dist/react.css +1 -1
- package/dist/src/agent/hooks.d.ts +2 -2
- package/dist/src/lib/ai-sdk/utils/fromCoreUserMessageToUIMessage.d.ts +1 -1
- package/package.json +11 -8
package/dist/react.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties {
|
|
3
3
|
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
4
4
|
*, :before, :after, ::backdrop {
|
|
@@ -2,7 +2,7 @@ import { ModelSettings } from './types';
|
|
|
2
2
|
import { UIMessage } from '@ai-sdk/react';
|
|
3
3
|
import { MastraUIMessage } from '../lib/ai-sdk';
|
|
4
4
|
import { CoreUserMessage } from '@mastra/core/llm';
|
|
5
|
-
import {
|
|
5
|
+
import { RequestContext } from '@mastra/core/request-context';
|
|
6
6
|
import { ChunkType, NetworkChunkType } from '@mastra/core/stream';
|
|
7
7
|
export interface MastraChatProps {
|
|
8
8
|
agentId: string;
|
|
@@ -10,7 +10,7 @@ export interface MastraChatProps {
|
|
|
10
10
|
}
|
|
11
11
|
interface SharedArgs {
|
|
12
12
|
coreUserMessages: CoreUserMessage[];
|
|
13
|
-
|
|
13
|
+
requestContext?: RequestContext;
|
|
14
14
|
threadId?: string;
|
|
15
15
|
modelSettings?: ModelSettings;
|
|
16
16
|
signal?: AbortSignal;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/react",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-trace-timeline-update-20251121092347",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/mastra-ai/mastra.git",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"lucide-react": "^0.522.0",
|
|
39
39
|
"shiki": "^1.29.2",
|
|
40
40
|
"tailwind-merge": "^3.3.1",
|
|
41
|
-
"@mastra/client-js": "0.0.0-
|
|
41
|
+
"@mastra/client-js": "0.0.0-trace-timeline-update-20251121092347"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": ">=19.0.0",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@ai-sdk/react": "^2.0.57",
|
|
49
49
|
"@assistant-ui/react": "^0.10.45",
|
|
50
|
-
"@storybook/react-vite": "^9.1.
|
|
51
|
-
"@tailwindcss/vite": "^4.1.
|
|
50
|
+
"@storybook/react-vite": "^9.1.16",
|
|
51
|
+
"@tailwindcss/vite": "^4.1.17",
|
|
52
52
|
"@types/react": "^19.1.13",
|
|
53
53
|
"@types/react-dom": "^19.1.9",
|
|
54
54
|
"@vitejs/plugin-react": "^5.0.4",
|
|
55
|
-
"@vitest/coverage-v8": "
|
|
56
|
-
"@vitest/ui": "
|
|
55
|
+
"@vitest/coverage-v8": "4.0.12",
|
|
56
|
+
"@vitest/ui": "4.0.12",
|
|
57
57
|
"eslint": "^9.37.0",
|
|
58
58
|
"eslint-plugin-storybook": "^9.1.12",
|
|
59
59
|
"react": ">=19.0.0",
|
|
@@ -64,14 +64,17 @@
|
|
|
64
64
|
"typescript": "^5.8.3",
|
|
65
65
|
"vite": "^7.1.9",
|
|
66
66
|
"vite-plugin-dts": "^4.5.4",
|
|
67
|
-
"vitest": "
|
|
68
|
-
"@mastra/core": "0.0.0-
|
|
67
|
+
"vitest": "4.0.12",
|
|
68
|
+
"@mastra/core": "0.0.0-trace-timeline-update-20251121092347"
|
|
69
69
|
},
|
|
70
70
|
"eslintConfig": {
|
|
71
71
|
"extends": [
|
|
72
72
|
"plugin:storybook/recommended"
|
|
73
73
|
]
|
|
74
74
|
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=22.13.0"
|
|
77
|
+
},
|
|
75
78
|
"scripts": {
|
|
76
79
|
"build": "vite build",
|
|
77
80
|
"dev": "vite build --watch",
|