@dbx-tools/ui-mastra 0.3.39 → 0.3.40
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/package.json +8 -8
- package/src/react/bubbles.tsx +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/reggie-db/dbx-tools.git",
|
|
6
|
-
"directory": "
|
|
6
|
+
"directory": "packages/ui/mastra"
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@types/node": "^24.6.0",
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"shiki": "^3.0.0",
|
|
26
26
|
"sql-formatter": "^15.6.9",
|
|
27
27
|
"streamdown": "^2.5.0",
|
|
28
|
-
"@dbx-tools/shared-core": "0.3.
|
|
29
|
-
"@dbx-tools/shared-
|
|
30
|
-
"@dbx-tools/shared-genie": "0.3.
|
|
31
|
-
"@dbx-tools/
|
|
32
|
-
"@dbx-tools/ui-
|
|
33
|
-
"@dbx-tools/
|
|
28
|
+
"@dbx-tools/shared-core": "0.3.40",
|
|
29
|
+
"@dbx-tools/shared-model": "0.3.40",
|
|
30
|
+
"@dbx-tools/shared-genie": "0.3.40",
|
|
31
|
+
"@dbx-tools/ui-appkit": "0.3.40",
|
|
32
|
+
"@dbx-tools/ui-branding": "0.3.40",
|
|
33
|
+
"@dbx-tools/shared-mastra": "0.3.40"
|
|
34
34
|
},
|
|
35
35
|
"license": "UNLICENSED",
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"version": "0.3.
|
|
39
|
+
"version": "0.3.40",
|
|
40
40
|
"type": "module",
|
|
41
41
|
"exports": {
|
|
42
42
|
"./react": "./src/react/index.ts",
|
package/src/react/bubbles.tsx
CHANGED
|
@@ -27,7 +27,6 @@ import { useState } from "react";
|
|
|
27
27
|
import { MarkdownWithEmbeds } from "./embed-slots";
|
|
28
28
|
import { ExportMenu } from "./export-menu";
|
|
29
29
|
import { FeedbackControls } from "./feedback-controls";
|
|
30
|
-
import { copyText } from "../support/clipboard";
|
|
31
30
|
import { ToolMarkdown } from "./markdown";
|
|
32
31
|
import { SuggestionPills } from "./suggestion-pills";
|
|
33
32
|
import { collectSuggestions } from "./suggestions";
|
|
@@ -41,6 +40,7 @@ import type {
|
|
|
41
40
|
PendingApproval,
|
|
42
41
|
ToolEvent,
|
|
43
42
|
} from "./types";
|
|
43
|
+
import { copyText } from "../support/clipboard";
|
|
44
44
|
|
|
45
45
|
// User / assistant message bubbles plus the inline approval card and
|
|
46
46
|
// the helpers that surface approval-gated tool calls out of a message's
|