@tangle-network/sandbox-ui 0.3.6 → 0.3.10
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/dist/active-sessions-store-CeOmXgv5.d.ts +85 -0
- package/dist/artifact-pane-Bh45Ssco.d.ts +24 -0
- package/dist/{chat-container-C8eHLw8z.d.ts → chat-container-Dn1jWtWo.d.ts} +20 -3
- package/dist/chat.d.ts +17 -4
- package/dist/chat.js +6 -2
- package/dist/{chunk-4F2GJRGU.js → chunk-6H3EFUUC.js} +196 -77
- package/dist/{chunk-WUR652Y3.js → chunk-72UEKFZ2.js} +113 -89
- package/dist/{chunk-TXI4MZAZ.js → chunk-CSIXZEKN.js} +152 -1
- package/dist/{chunk-5LV6DZZF.js → chunk-FOQTE67I.js} +278 -21
- package/dist/chunk-MGCVTFKB.js +10910 -0
- package/dist/chunk-OEX7NZE3.js +321 -0
- package/dist/chunk-Q56BYXQF.js +61 -0
- package/dist/{chunk-QGI5E7JD.js → chunk-RQOX5JRR.js} +541 -76
- package/dist/{chunk-PDV7W4NY.js → chunk-SULQQJPB.js} +1 -56
- package/dist/chunk-W4LM3QYZ.js +54 -0
- package/dist/{chunk-JF6E2DS5.js → chunk-ZYGWTIWO.js} +171 -155
- package/dist/document-editor-pane-Bk-9MQmw.d.ts +116 -0
- package/dist/document-editor-pane-GRIQOJHB.js +11 -0
- package/dist/editor.d.ts +7 -84
- package/dist/editor.js +18 -699
- package/dist/{expanded-tool-detail-BDi_h_dZ.d.ts → expanded-tool-detail-DM5M_T9h.d.ts} +10 -2
- package/dist/{file-tabs-CmaoDVBI.d.ts → file-tabs-BLfxfmAH.d.ts} +1 -22
- package/dist/files.d.ts +25 -3
- package/dist/files.js +2 -1
- package/dist/hooks.d.ts +3 -1
- package/dist/hooks.js +6 -1
- package/dist/index.d.ts +13 -7
- package/dist/index.js +26 -9
- package/dist/pages.js +4 -2
- package/dist/primitives.d.ts +45 -1
- package/dist/primitives.js +9 -3
- package/dist/run.d.ts +1 -1
- package/dist/run.js +1 -1
- package/dist/sdk-hooks.d.ts +32 -1
- package/dist/sdk-hooks.js +6 -1
- package/dist/stores.d.ts +1 -0
- package/dist/stores.js +60 -1
- package/dist/types.d.ts +2 -0
- package/dist/workspace.d.ts +84 -6
- package/dist/workspace.js +10 -4
- package/package.json +17 -6
package/dist/stores.js
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
activeSessionsAtom,
|
|
3
|
+
bumpActiveSessionActivity,
|
|
4
|
+
getActiveSession,
|
|
5
|
+
getAllActiveSessions,
|
|
6
|
+
getAllProjectActivity,
|
|
7
|
+
getSessionsByActivity,
|
|
8
|
+
getSessionsForNavbar,
|
|
9
|
+
getSessionsForProject,
|
|
10
|
+
getTotalRunningSessionCount,
|
|
11
|
+
hasBackgroundRunningSessions,
|
|
12
|
+
registerActiveSession,
|
|
13
|
+
resetActiveSessions,
|
|
14
|
+
setActiveSessionAttention,
|
|
15
|
+
setActiveSessionConnection,
|
|
16
|
+
setActiveSessionError,
|
|
17
|
+
setActiveSessionRunning,
|
|
18
|
+
setForegroundActiveSession,
|
|
19
|
+
unregisterActiveSession,
|
|
20
|
+
updateActiveSessionMeta,
|
|
21
|
+
useActiveSession,
|
|
22
|
+
useActiveSessions,
|
|
23
|
+
useActiveSessionsState,
|
|
24
|
+
useHasBackgroundRunningSessions,
|
|
25
|
+
useNavbarSessions,
|
|
26
|
+
useProjectActivity,
|
|
27
|
+
useProjectSessions,
|
|
28
|
+
useSessionsByActivity,
|
|
29
|
+
useTotalRunningSessions
|
|
30
|
+
} from "./chunk-OEX7NZE3.js";
|
|
31
|
+
|
|
1
32
|
// src/stores/session-store.ts
|
|
2
33
|
import { atom } from "nanostores";
|
|
3
34
|
var sessionAtom = atom(null);
|
|
@@ -36,14 +67,42 @@ function clearChat() {
|
|
|
36
67
|
insertionCounter = 0;
|
|
37
68
|
}
|
|
38
69
|
export {
|
|
70
|
+
activeSessionsAtom,
|
|
39
71
|
addMessage,
|
|
40
72
|
addParts,
|
|
73
|
+
bumpActiveSessionActivity,
|
|
41
74
|
clearChat,
|
|
42
75
|
connectSession,
|
|
43
76
|
disconnectSession,
|
|
77
|
+
getActiveSession,
|
|
78
|
+
getAllActiveSessions,
|
|
79
|
+
getAllProjectActivity,
|
|
80
|
+
getSessionsByActivity,
|
|
81
|
+
getSessionsForNavbar,
|
|
82
|
+
getSessionsForProject,
|
|
83
|
+
getTotalRunningSessionCount,
|
|
84
|
+
hasBackgroundRunningSessions,
|
|
44
85
|
isStreamingAtom,
|
|
45
86
|
messagesAtom,
|
|
46
87
|
partMapAtom,
|
|
88
|
+
registerActiveSession,
|
|
89
|
+
resetActiveSessions,
|
|
47
90
|
sessionAtom,
|
|
48
|
-
|
|
91
|
+
setActiveSessionAttention,
|
|
92
|
+
setActiveSessionConnection,
|
|
93
|
+
setActiveSessionError,
|
|
94
|
+
setActiveSessionRunning,
|
|
95
|
+
setForegroundActiveSession,
|
|
96
|
+
unregisterActiveSession,
|
|
97
|
+
updateActiveSessionMeta,
|
|
98
|
+
updatePart,
|
|
99
|
+
useActiveSession,
|
|
100
|
+
useActiveSessions,
|
|
101
|
+
useActiveSessionsState,
|
|
102
|
+
useHasBackgroundRunningSessions,
|
|
103
|
+
useNavbarSessions,
|
|
104
|
+
useProjectActivity,
|
|
105
|
+
useProjectSessions,
|
|
106
|
+
useSessionsByActivity,
|
|
107
|
+
useTotalRunningSessions
|
|
49
108
|
};
|
package/dist/types.d.ts
CHANGED
|
@@ -3,4 +3,6 @@ export { F as FinalTextPart, G as GroupedMessage, M as MessageRun, a as MessageU
|
|
|
3
3
|
export { S as Session } from './sidecar-CFU2W9j1.js';
|
|
4
4
|
export { C as CustomToolRenderer, D as DisplayVariant, T as ToolDisplayMetadata } from './tool-display-Ct9nFAzJ.js';
|
|
5
5
|
export { A as AgentBranding } from './branding-DCi5VEik.js';
|
|
6
|
+
export { A as ActiveProjectActivity, a as ActiveSessionActivityOptions, b as ActiveSessionConnectionOptions, c as ActiveSessionConnectionState, d as ActiveSessionReconnectState, e as ActiveSessionRecord, f as ActiveSessionStatus, g as ActiveSessionTransportMode, h as ActiveSessionsState, R as RegisterActiveSessionOptions, S as SessionProjectKey } from './active-sessions-store-CeOmXgv5.js';
|
|
6
7
|
import 'react';
|
|
8
|
+
import 'nanostores';
|
package/dist/workspace.d.ts
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
3
|
+
export { a as ArtifactPane, A as ArtifactPaneProps } from './artifact-pane-Bh45Ssco.js';
|
|
4
|
+
import { F as FileNode, f as FileTreeVisibilityOptions, a as FileTabData } from './file-tabs-BLfxfmAH.js';
|
|
5
|
+
import { S as SessionProjectKey, f as ActiveSessionStatus, e as ActiveSessionRecord } from './active-sessions-store-CeOmXgv5.js';
|
|
6
|
+
import { a as ChatContainerProps } from './chat-container-Dn1jWtWo.js';
|
|
6
7
|
import { OpenUIComponentNode, OpenUIAction } from './openui.js';
|
|
8
|
+
import 'nanostores';
|
|
7
9
|
import './parts-CyGkM6Fp.js';
|
|
8
10
|
import './branding-DCi5VEik.js';
|
|
9
11
|
import './tool-display-Ct9nFAzJ.js';
|
|
12
|
+
import './run-CtFZ6s-D.js';
|
|
10
13
|
|
|
11
14
|
interface WorkspaceLayoutProps {
|
|
12
15
|
/** Left sidebar content (file tree, navigation) */
|
|
@@ -25,6 +28,8 @@ interface WorkspaceLayoutProps {
|
|
|
25
28
|
rightHeader?: ReactNode;
|
|
26
29
|
/** Bottom panel (terminal) */
|
|
27
30
|
bottom?: ReactNode;
|
|
31
|
+
/** Bottom panel header */
|
|
32
|
+
bottomHeader?: ReactNode;
|
|
28
33
|
/** Default left panel state */
|
|
29
34
|
defaultLeftOpen?: boolean;
|
|
30
35
|
/** Default right panel state */
|
|
@@ -59,7 +64,7 @@ interface WorkspaceLayoutProps {
|
|
|
59
64
|
bottomLabel?: string;
|
|
60
65
|
className?: string;
|
|
61
66
|
}
|
|
62
|
-
declare function WorkspaceLayout({ left, leftHeader, center, centerHeader, centerFooter, right, rightHeader, bottom, defaultLeftOpen, defaultRightOpen, defaultBottomOpen, defaultLeftWidth, defaultRightWidth, minLeftWidth, maxLeftWidth, minRightWidth, maxRightWidth, persistenceKey, resizable, theme, density, leftLabel, rightLabel, bottomLabel, className, }: WorkspaceLayoutProps): react_jsx_runtime.JSX.Element;
|
|
67
|
+
declare function WorkspaceLayout({ left, leftHeader, center, centerHeader, centerFooter, right, rightHeader, bottom, bottomHeader, defaultLeftOpen, defaultRightOpen, defaultBottomOpen, defaultLeftWidth, defaultRightWidth, minLeftWidth, maxLeftWidth, minRightWidth, maxRightWidth, persistenceKey, resizable, theme, density, leftLabel, rightLabel, bottomLabel, className, }: WorkspaceLayoutProps): react_jsx_runtime.JSX.Element;
|
|
63
68
|
|
|
64
69
|
interface DirectoryPaneProps {
|
|
65
70
|
root: FileNode;
|
|
@@ -152,6 +157,73 @@ interface RuntimePaneProps {
|
|
|
152
157
|
*/
|
|
153
158
|
declare function RuntimePane({ title, subtitle, statusBanner, statusBar, terminal, audit, inspector, footer, className, }: RuntimePaneProps): react_jsx_runtime.JSX.Element;
|
|
154
159
|
|
|
160
|
+
interface SessionSidebarItem {
|
|
161
|
+
id: string;
|
|
162
|
+
title: string;
|
|
163
|
+
subtitle?: string;
|
|
164
|
+
href?: string;
|
|
165
|
+
updatedAt?: string | number | Date;
|
|
166
|
+
projectId?: SessionProjectKey | null;
|
|
167
|
+
status?: ActiveSessionStatus;
|
|
168
|
+
category?: string;
|
|
169
|
+
isPinned?: boolean;
|
|
170
|
+
badges?: SessionSidebarBadge[];
|
|
171
|
+
}
|
|
172
|
+
interface SessionSidebarBadge {
|
|
173
|
+
id: string;
|
|
174
|
+
label: string;
|
|
175
|
+
tone?: "neutral" | "accent" | "success" | "warning" | "danger";
|
|
176
|
+
}
|
|
177
|
+
interface SessionSidebarLink {
|
|
178
|
+
id: string;
|
|
179
|
+
label: string;
|
|
180
|
+
href?: string;
|
|
181
|
+
icon?: "vault" | "settings" | "back";
|
|
182
|
+
}
|
|
183
|
+
interface SessionSidebarFilter {
|
|
184
|
+
id: string;
|
|
185
|
+
label: string;
|
|
186
|
+
matches: (item: SessionSidebarItem, options: {
|
|
187
|
+
session: ActiveSessionRecord | null;
|
|
188
|
+
isActive: boolean;
|
|
189
|
+
}) => boolean;
|
|
190
|
+
}
|
|
191
|
+
interface SessionSidebarProps {
|
|
192
|
+
title: string;
|
|
193
|
+
subtitle?: string;
|
|
194
|
+
projectId?: SessionProjectKey | null;
|
|
195
|
+
items: SessionSidebarItem[];
|
|
196
|
+
currentItemId?: string | null;
|
|
197
|
+
createLabel?: string;
|
|
198
|
+
onCreate?: () => void;
|
|
199
|
+
onSelectItem?: (item: SessionSidebarItem) => void;
|
|
200
|
+
onSelectLink?: (link: SessionSidebarLink) => void;
|
|
201
|
+
links?: SessionSidebarLink[];
|
|
202
|
+
className?: string;
|
|
203
|
+
emptyMessage?: string;
|
|
204
|
+
searchPlaceholder?: string;
|
|
205
|
+
enableSearch?: boolean;
|
|
206
|
+
activityMonitor?: ReactNode;
|
|
207
|
+
filters?: SessionSidebarFilter[];
|
|
208
|
+
defaultFilterId?: string;
|
|
209
|
+
renderItemActions?: (item: SessionSidebarItem, options: {
|
|
210
|
+
session: ActiveSessionRecord | null;
|
|
211
|
+
isActive: boolean;
|
|
212
|
+
}) => ReactNode;
|
|
213
|
+
}
|
|
214
|
+
declare function SessionSidebar({ title, subtitle, projectId, items, currentItemId, createLabel, onCreate, onSelectItem, onSelectLink, links, className, emptyMessage, searchPlaceholder, enableSearch, activityMonitor, filters, defaultFilterId, renderItemActions, }: SessionSidebarProps): react_jsx_runtime.JSX.Element;
|
|
215
|
+
|
|
216
|
+
interface SessionActivityMonitorProps {
|
|
217
|
+
className?: string;
|
|
218
|
+
compact?: boolean;
|
|
219
|
+
sessionsById?: Record<string, ActiveSessionRecord>;
|
|
220
|
+
emptyMessage?: string;
|
|
221
|
+
resolveProjectLabel?: (projectId: SessionProjectKey, label?: string) => string;
|
|
222
|
+
onSelectSession?: (session: ActiveSessionRecord) => void;
|
|
223
|
+
}
|
|
224
|
+
declare function SessionActivityMonitor({ className, compact, sessionsById, emptyMessage, resolveProjectLabel, onSelectSession, }: SessionActivityMonitorProps): react_jsx_runtime.JSX.Element | null;
|
|
225
|
+
|
|
226
|
+
type SandboxWorkbenchPlacement = "left" | "right" | "bottom" | "hidden";
|
|
155
227
|
interface SandboxWorkbenchArtifactBase {
|
|
156
228
|
id: string;
|
|
157
229
|
title: ReactNode;
|
|
@@ -195,8 +267,14 @@ interface SandboxWorkbenchSessionProps extends Omit<ChatContainerProps, "classNa
|
|
|
195
267
|
subtitle?: ReactNode;
|
|
196
268
|
meta?: ReactNode;
|
|
197
269
|
headerActions?: ReactNode;
|
|
270
|
+
renderRunActions?: ChatContainerProps["renderRunActions"];
|
|
271
|
+
renderUserMessageActions?: ChatContainerProps["renderUserMessageActions"];
|
|
272
|
+
renderToolActions?: ChatContainerProps["renderToolActions"];
|
|
198
273
|
}
|
|
199
|
-
interface SandboxWorkbenchLayoutOptions extends Pick<WorkspaceLayoutProps, "defaultBottomOpen" | "defaultLeftOpen" | "defaultLeftWidth" | "defaultRightOpen" | "defaultRightWidth" | "density" | "maxLeftWidth" | "maxRightWidth" | "minLeftWidth" | "minRightWidth" | "persistenceKey" | "resizable" | "theme"> {
|
|
274
|
+
interface SandboxWorkbenchLayoutOptions extends Pick<WorkspaceLayoutProps, "bottomHeader" | "defaultBottomOpen" | "defaultLeftOpen" | "defaultLeftWidth" | "defaultRightOpen" | "defaultRightWidth" | "density" | "maxLeftWidth" | "maxRightWidth" | "minLeftWidth" | "minRightWidth" | "persistenceKey" | "resizable" | "theme"> {
|
|
275
|
+
directoryPlacement?: SandboxWorkbenchPlacement;
|
|
276
|
+
artifactPlacement?: SandboxWorkbenchPlacement;
|
|
277
|
+
runtimePlacement?: SandboxWorkbenchPlacement;
|
|
200
278
|
}
|
|
201
279
|
interface SandboxWorkbenchProps {
|
|
202
280
|
title?: ReactNode;
|
|
@@ -248,4 +326,4 @@ interface AuditResultsProps {
|
|
|
248
326
|
}
|
|
249
327
|
declare function AuditResults({ forms, crossFormChecks, overallScore, className }: AuditResultsProps): react_jsx_runtime.JSX.Element;
|
|
250
328
|
|
|
251
|
-
export { AgentWorkbench, type AuditCheck, AuditResults, type AuditResultsProps, type BannerType, type ContextBadge, DirectoryPane, type DirectoryPaneProps, type FormAudit, RuntimePane, type RuntimePaneProps, SandboxWorkbench, type SandboxWorkbenchArtifact, type SandboxWorkbenchCustomArtifact, type SandboxWorkbenchFileArtifact, type SandboxWorkbenchLayoutOptions, type SandboxWorkbenchMarkdownArtifact, type SandboxWorkbenchOpenUIArtifact, type SandboxWorkbenchProps, type SandboxWorkbenchSessionProps, StatusBanner, type StatusBannerProps, StatusBar, type StatusBarProps, type TerminalLine, TerminalPanel, type TerminalProps, WorkspaceLayout, type WorkspaceLayoutProps };
|
|
329
|
+
export { AgentWorkbench, type AuditCheck, AuditResults, type AuditResultsProps, type BannerType, type ContextBadge, DirectoryPane, type DirectoryPaneProps, type FormAudit, RuntimePane, type RuntimePaneProps, SandboxWorkbench, type SandboxWorkbenchArtifact, type SandboxWorkbenchCustomArtifact, type SandboxWorkbenchFileArtifact, type SandboxWorkbenchLayoutOptions, type SandboxWorkbenchMarkdownArtifact, type SandboxWorkbenchOpenUIArtifact, type SandboxWorkbenchProps, type SandboxWorkbenchSessionProps, SessionActivityMonitor, type SessionActivityMonitorProps, SessionSidebar, type SessionSidebarBadge, type SessionSidebarFilter, type SessionSidebarItem, type SessionSidebarLink, type SessionSidebarProps, StatusBanner, type StatusBannerProps, StatusBar, type StatusBarProps, type TerminalLine, TerminalPanel, type TerminalProps, WorkspaceLayout, type WorkspaceLayoutProps };
|
package/dist/workspace.js
CHANGED
|
@@ -4,23 +4,27 @@ import {
|
|
|
4
4
|
DirectoryPane,
|
|
5
5
|
RuntimePane,
|
|
6
6
|
SandboxWorkbench,
|
|
7
|
+
SessionActivityMonitor,
|
|
8
|
+
SessionSidebar,
|
|
7
9
|
StatusBanner,
|
|
8
10
|
StatusBar,
|
|
9
11
|
TerminalPanel,
|
|
10
12
|
WorkspaceLayout
|
|
11
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-RQOX5JRR.js";
|
|
14
|
+
import "./chunk-OEX7NZE3.js";
|
|
12
15
|
import "./chunk-MUOL44AE.js";
|
|
13
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-6H3EFUUC.js";
|
|
14
17
|
import "./chunk-CNWVHQFY.js";
|
|
15
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-72UEKFZ2.js";
|
|
16
19
|
import "./chunk-HRMUF35V.js";
|
|
17
20
|
import "./chunk-CJ2RYVZH.js";
|
|
18
21
|
import "./chunk-BX6AQMUS.js";
|
|
19
22
|
import "./chunk-YDBXQQLC.js";
|
|
20
23
|
import "./chunk-TQN3VR4F.js";
|
|
24
|
+
import "./chunk-ZYGWTIWO.js";
|
|
21
25
|
import {
|
|
22
26
|
ArtifactPane
|
|
23
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-W4LM3QYZ.js";
|
|
24
28
|
import "./chunk-LTFK464G.js";
|
|
25
29
|
import "./chunk-MXCSSOGH.js";
|
|
26
30
|
import "./chunk-HWLX5NME.js";
|
|
@@ -32,6 +36,8 @@ export {
|
|
|
32
36
|
DirectoryPane,
|
|
33
37
|
RuntimePane,
|
|
34
38
|
SandboxWorkbench,
|
|
39
|
+
SessionActivityMonitor,
|
|
40
|
+
SessionSidebar,
|
|
35
41
|
StatusBanner,
|
|
36
42
|
StatusBar,
|
|
37
43
|
TerminalPanel,
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/sandbox-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "Unified UI component library for Tangle Sandbox — primitives, chat, dashboard, terminal, editor, and workspace components",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/tangle-network/sandbox-ui"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/tangle-network/sandbox-ui",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/tangle-network/sandbox-ui/issues"
|
|
12
|
+
},
|
|
5
13
|
"type": "module",
|
|
6
14
|
"main": "dist/index.js",
|
|
7
15
|
"types": "dist/index.d.ts",
|
|
@@ -129,7 +137,7 @@
|
|
|
129
137
|
"@tiptap/extension-collaboration": {
|
|
130
138
|
"optional": true
|
|
131
139
|
},
|
|
132
|
-
"@tiptap/extension-collaboration-
|
|
140
|
+
"@tiptap/extension-collaboration-caret": {
|
|
133
141
|
"optional": true
|
|
134
142
|
},
|
|
135
143
|
"yjs": {
|
|
@@ -137,6 +145,7 @@
|
|
|
137
145
|
}
|
|
138
146
|
},
|
|
139
147
|
"dependencies": {
|
|
148
|
+
"@nanostores/react": "^1.1.0",
|
|
140
149
|
"@radix-ui/react-avatar": "^1.1.0",
|
|
141
150
|
"@radix-ui/react-collapsible": "^1.1.0",
|
|
142
151
|
"@radix-ui/react-dialog": "^1.1.0",
|
|
@@ -151,26 +160,28 @@
|
|
|
151
160
|
"class-variance-authority": "^0.7.0",
|
|
152
161
|
"clsx": "^2.1.1",
|
|
153
162
|
"lucide-react": "^0.469.0",
|
|
163
|
+
"marked": "^17.0.5",
|
|
164
|
+
"nanostores": "^1.2.0",
|
|
154
165
|
"react-markdown": "^10.1.0",
|
|
155
166
|
"react-pdf": "^9.2.1",
|
|
156
167
|
"rehype-sanitize": "^6.0.0",
|
|
157
168
|
"remark-gfm": "^4.0.1",
|
|
158
|
-
"tailwind-merge": "^3.0.2"
|
|
169
|
+
"tailwind-merge": "^3.0.2",
|
|
170
|
+
"turndown": "^7.2.2"
|
|
159
171
|
},
|
|
160
172
|
"devDependencies": {
|
|
161
173
|
"@hocuspocus/provider": "^3.4.4",
|
|
162
|
-
"@nanostores/react": "^1.1.0",
|
|
163
174
|
"@tanstack/react-query": "^5.91.0",
|
|
164
175
|
"@tiptap/core": "^3.20.4",
|
|
165
176
|
"@tiptap/extension-collaboration": "^3.20.4",
|
|
166
|
-
"@tiptap/extension-collaboration-
|
|
177
|
+
"@tiptap/extension-collaboration-caret": "^3.7.0",
|
|
167
178
|
"@tiptap/react": "^3.20.4",
|
|
168
179
|
"@tiptap/starter-kit": "^3.20.4",
|
|
169
180
|
"@types/react": "^19.1.2",
|
|
181
|
+
"@types/turndown": "^5.0.6",
|
|
170
182
|
"@xterm/addon-fit": "^0.11.0",
|
|
171
183
|
"@xterm/addon-web-links": "^0.12.0",
|
|
172
184
|
"@xterm/xterm": "^6.0.0",
|
|
173
|
-
"nanostores": "^1.2.0",
|
|
174
185
|
"react": "^19.1.0",
|
|
175
186
|
"react-dom": "^19.1.0",
|
|
176
187
|
"tailwindcss": "^4.1.4",
|