@inf-monkeys-tech/monkeys-design 1.0.14 → 1.0.15
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/components/agent-workbench/index.d.mts +41 -168
- package/dist/components/agent-workbench/index.d.ts +41 -168
- package/dist/components/agent-workbench/index.js +335 -4
- package/dist/components/agent-workbench/index.js.map +1 -1
- package/dist/components/agent-workbench/index.mjs +336 -6
- package/dist/components/agent-workbench/index.mjs.map +1 -1
- package/dist/components/base/index.js +32 -1
- package/dist/components/base/index.js.map +1 -1
- package/dist/components/base/index.mjs +32 -1
- package/dist/components/base/index.mjs.map +1 -1
- package/dist/components/data-explorer/index.js +32 -1
- package/dist/components/data-explorer/index.js.map +1 -1
- package/dist/components/data-explorer/index.mjs +32 -1
- package/dist/components/data-explorer/index.mjs.map +1 -1
- package/dist/components/layout/index.js +32 -1
- package/dist/components/layout/index.js.map +1 -1
- package/dist/components/layout/index.mjs +32 -1
- package/dist/components/layout/index.mjs.map +1 -1
- package/dist/components/runtime/index.js +32 -1
- package/dist/components/runtime/index.js.map +1 -1
- package/dist/components/runtime/index.mjs +32 -1
- package/dist/components/runtime/index.mjs.map +1 -1
- package/dist/components/toast/index.d.mts +1 -1
- package/dist/components/toast/index.d.ts +1 -1
- package/dist/components/toast/index.js +32 -1
- package/dist/components/toast/index.js.map +1 -1
- package/dist/components/toast/index.mjs +32 -1
- package/dist/components/toast/index.mjs.map +1 -1
- package/dist/components/toolbar/index.js +32 -1
- package/dist/components/toolbar/index.js.map +1 -1
- package/dist/components/toolbar/index.mjs +32 -1
- package/dist/components/toolbar/index.mjs.map +1 -1
- package/dist/components/workbench/index.js +32 -1
- package/dist/components/workbench/index.js.map +1 -1
- package/dist/components/workbench/index.mjs +32 -1
- package/dist/components/workbench/index.mjs.map +1 -1
- package/dist/details-model-f2034b78b458.d.mts +199 -0
- package/dist/details-model-f2034b78b458.d.ts +199 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +142 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +142 -5
- package/dist/index.mjs.map +1 -1
- package/dist/locale/index.d.mts +88 -2
- package/dist/locale/index.d.ts +88 -2
- package/dist/locale/index.js +72 -2
- package/dist/locale/index.js.map +1 -1
- package/dist/locale/index.mjs +72 -2
- package/dist/locale/index.mjs.map +1 -1
- package/dist/provider/index.d.mts +2 -2
- package/dist/provider/index.d.ts +2 -2
- package/dist/provider/index.js +72 -2
- package/dist/provider/index.js.map +1 -1
- package/dist/provider/index.mjs +72 -2
- package/dist/provider/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/{types-37967a434f7c.d.mts → types-a81dc2d284e3.d.mts} +37 -0
- package/dist/{types-37967a434f7c.d.ts → types-a81dc2d284e3.d.ts} +37 -0
- package/package.json +3 -3
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { AgentWorkbenchNavigationViewModel, AgentSessionViewModel, AgentSessionEvent, AgentSessionCapabilities } from '@inf-monkeys-tech/monkeys';
|
|
3
|
+
import { ReactNode } from 'react';
|
|
4
|
+
type AgentWorkbenchSidebarIntent = {
|
|
5
|
+
type: 'change-search';
|
|
6
|
+
query: string;
|
|
7
|
+
} | {
|
|
8
|
+
type: 'change-tab';
|
|
9
|
+
tab: 'agents' | 'sessions';
|
|
10
|
+
} | {
|
|
11
|
+
type: 'create-agent';
|
|
12
|
+
} | {
|
|
13
|
+
type: 'create-session';
|
|
14
|
+
} | {
|
|
15
|
+
type: 'delete-session';
|
|
16
|
+
sessionId: string;
|
|
17
|
+
} | {
|
|
18
|
+
type: 'open-agent-settings';
|
|
19
|
+
} | {
|
|
20
|
+
type: 'open-capabilities';
|
|
21
|
+
} | {
|
|
22
|
+
type: 'rename-session';
|
|
23
|
+
sessionId: string;
|
|
24
|
+
title: string;
|
|
25
|
+
} | {
|
|
26
|
+
type: 'retry-agents';
|
|
27
|
+
} | {
|
|
28
|
+
type: 'retry-sessions';
|
|
29
|
+
} | {
|
|
30
|
+
type: 'select-agent';
|
|
31
|
+
itemId: string;
|
|
32
|
+
} | {
|
|
33
|
+
type: 'select-session';
|
|
34
|
+
sessionId: string;
|
|
35
|
+
} | {
|
|
36
|
+
type: 'toggle-agent-pin';
|
|
37
|
+
itemId: string;
|
|
38
|
+
pinned: boolean;
|
|
39
|
+
} | {
|
|
40
|
+
type: 'toggle-session-pin';
|
|
41
|
+
sessionId: string;
|
|
42
|
+
pinned: boolean;
|
|
43
|
+
};
|
|
44
|
+
interface AgentWorkbenchSidebarClassNames {
|
|
45
|
+
root?: string;
|
|
46
|
+
search?: string;
|
|
47
|
+
tabs?: string;
|
|
48
|
+
body?: string;
|
|
49
|
+
item?: string;
|
|
50
|
+
footer?: string;
|
|
51
|
+
}
|
|
52
|
+
interface AgentWorkbenchSidebarProps {
|
|
53
|
+
viewModel: AgentWorkbenchNavigationViewModel;
|
|
54
|
+
headerActions?: ReactNode;
|
|
55
|
+
className?: string;
|
|
56
|
+
classNames?: AgentWorkbenchSidebarClassNames;
|
|
57
|
+
onIntent?: (intent: AgentWorkbenchSidebarIntent) => void;
|
|
58
|
+
}
|
|
59
|
+
declare function AgentWorkbenchSidebar({ viewModel, headerActions, className, classNames, onIntent }: AgentWorkbenchSidebarProps): react_jsx_runtime.JSX.Element;
|
|
60
|
+
interface AgentWorkbenchApprovalIntent {
|
|
61
|
+
approvalId: string;
|
|
62
|
+
approved: boolean;
|
|
63
|
+
}
|
|
64
|
+
interface AgentWorkbenchArtifactIntent {
|
|
65
|
+
artifactId: string;
|
|
66
|
+
name: string;
|
|
67
|
+
url: string;
|
|
68
|
+
}
|
|
69
|
+
interface AgentWorkbenchActivityClassNames {
|
|
70
|
+
root?: string;
|
|
71
|
+
item?: string;
|
|
72
|
+
trigger?: string;
|
|
73
|
+
content?: string;
|
|
74
|
+
approval?: string;
|
|
75
|
+
artifact?: string;
|
|
76
|
+
usage?: string;
|
|
77
|
+
}
|
|
78
|
+
interface AgentWorkbenchActivityProps {
|
|
79
|
+
viewModel?: AgentSessionViewModel;
|
|
80
|
+
hiddenToolCallIds?: ReadonlySet<string>;
|
|
81
|
+
hideReasoning?: boolean;
|
|
82
|
+
hideStoppedRun?: boolean;
|
|
83
|
+
className?: string;
|
|
84
|
+
classNames?: AgentWorkbenchActivityClassNames;
|
|
85
|
+
onApprovalDecision?: (intent: AgentWorkbenchApprovalIntent) => void;
|
|
86
|
+
onArtifactOpen?: (intent: AgentWorkbenchArtifactIntent) => void;
|
|
87
|
+
}
|
|
88
|
+
declare function AgentWorkbenchActivity({ viewModel, hiddenToolCallIds, hideReasoning, hideStoppedRun, className, classNames, onApprovalDecision, onArtifactOpen, }: AgentWorkbenchActivityProps): null | react_jsx_runtime.JSX.Element;
|
|
89
|
+
type AgentWorkbenchDetailsTab = 'summary' | 'workspace';
|
|
90
|
+
type AgentWorkbenchDetailsState = 'empty' | 'error' | 'loading' | 'ready';
|
|
91
|
+
type AgentWorkbenchDetailsIntent = {
|
|
92
|
+
type: 'close';
|
|
93
|
+
} | {
|
|
94
|
+
type: 'continue-in-new-task';
|
|
95
|
+
sessionId: string;
|
|
96
|
+
} | {
|
|
97
|
+
type: 'copy-summary';
|
|
98
|
+
summaryId: string;
|
|
99
|
+
text: string;
|
|
100
|
+
} | {
|
|
101
|
+
type: 'edit-and-rerun';
|
|
102
|
+
sessionId: string;
|
|
103
|
+
} | {
|
|
104
|
+
type: 'export';
|
|
105
|
+
sessionId: string;
|
|
106
|
+
} | {
|
|
107
|
+
type: 'resume';
|
|
108
|
+
sessionId: string;
|
|
109
|
+
} | {
|
|
110
|
+
type: 'retry-summary';
|
|
111
|
+
eventId: string;
|
|
112
|
+
} | {
|
|
113
|
+
type: 'retry';
|
|
114
|
+
eventId: string;
|
|
115
|
+
};
|
|
116
|
+
interface AgentWorkbenchTaskDetailsClassNames {
|
|
117
|
+
root?: string;
|
|
118
|
+
header?: string;
|
|
119
|
+
tabs?: string;
|
|
120
|
+
body?: string;
|
|
121
|
+
section?: string;
|
|
122
|
+
code?: string;
|
|
123
|
+
}
|
|
124
|
+
interface AgentWorkbenchTaskDetailsProps {
|
|
125
|
+
viewModel?: AgentSessionViewModel;
|
|
126
|
+
state?: AgentWorkbenchDetailsState;
|
|
127
|
+
activeTab?: AgentWorkbenchDetailsTab;
|
|
128
|
+
className?: string;
|
|
129
|
+
classNames?: AgentWorkbenchTaskDetailsClassNames;
|
|
130
|
+
onActiveTabChange?: (tab: AgentWorkbenchDetailsTab) => void;
|
|
131
|
+
onIntent?: (intent: AgentWorkbenchDetailsIntent) => void;
|
|
132
|
+
}
|
|
133
|
+
declare function AgentWorkbenchTaskDetails({ viewModel, state, activeTab, className, classNames, onActiveTabChange, onIntent, }: AgentWorkbenchTaskDetailsProps): react_jsx_runtime.JSX.Element;
|
|
134
|
+
type SessionEventType = AgentSessionEvent['eventType'];
|
|
135
|
+
type AgentWorkbenchEventOf<Type extends SessionEventType> = Extract<AgentSessionEvent, {
|
|
136
|
+
eventType: Type;
|
|
137
|
+
}>;
|
|
138
|
+
interface AgentWorkbenchActivityModel {
|
|
139
|
+
mode: AgentSessionViewModel['snapshot']['mode'];
|
|
140
|
+
status: AgentSessionViewModel['status'];
|
|
141
|
+
reasoning: AgentWorkbenchEventOf<'reasoning'>[];
|
|
142
|
+
plans: AgentWorkbenchEventOf<'plan'>[];
|
|
143
|
+
tasks: AgentWorkbenchEventOf<'task'>[];
|
|
144
|
+
tools: AgentWorkbenchEventOf<'tool'>[];
|
|
145
|
+
approvals: AgentWorkbenchEventOf<'approval'>[];
|
|
146
|
+
artifacts: AgentWorkbenchEventOf<'artifact'>[];
|
|
147
|
+
usage?: AgentWorkbenchEventOf<'usage'>;
|
|
148
|
+
run?: AgentWorkbenchEventOf<'status'> & {
|
|
149
|
+
resolvedDurationMs?: number;
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
declare function createAgentWorkbenchActivityModel(viewModel: AgentSessionViewModel): AgentWorkbenchActivityModel;
|
|
153
|
+
interface AgentWorkbenchToolClassNames {
|
|
154
|
+
root?: string;
|
|
155
|
+
trigger?: string;
|
|
156
|
+
content?: string;
|
|
157
|
+
input?: string;
|
|
158
|
+
output?: string;
|
|
159
|
+
}
|
|
160
|
+
interface AgentWorkbenchToolProps {
|
|
161
|
+
event: AgentWorkbenchEventOf<'tool'>;
|
|
162
|
+
expanded?: boolean;
|
|
163
|
+
defaultExpanded?: boolean;
|
|
164
|
+
className?: string;
|
|
165
|
+
classNames?: AgentWorkbenchToolClassNames;
|
|
166
|
+
onExpandedChange?: (expanded: boolean) => void;
|
|
167
|
+
}
|
|
168
|
+
declare function AgentWorkbenchTool({ event, expanded, defaultExpanded, className, classNames, onExpandedChange, }: AgentWorkbenchToolProps): react_jsx_runtime.JSX.Element;
|
|
169
|
+
interface AgentWorkbenchTerminalModel {
|
|
170
|
+
terminalId: string;
|
|
171
|
+
stdin: string;
|
|
172
|
+
stdout: string;
|
|
173
|
+
stderr: string;
|
|
174
|
+
status: string;
|
|
175
|
+
exitCode?: number;
|
|
176
|
+
sequence: number;
|
|
177
|
+
}
|
|
178
|
+
interface AgentWorkbenchDetailsModel {
|
|
179
|
+
mode: AgentSessionViewModel['snapshot']['mode'];
|
|
180
|
+
modelId: string;
|
|
181
|
+
permissionProfile?: AgentSessionViewModel['snapshot']['permissionProfile'];
|
|
182
|
+
status: AgentSessionViewModel['status'];
|
|
183
|
+
sessionId: string;
|
|
184
|
+
capabilities: AgentSessionCapabilities;
|
|
185
|
+
resumable: boolean;
|
|
186
|
+
summary?: AgentWorkbenchEventOf<'summary'>;
|
|
187
|
+
error?: AgentWorkbenchEventOf<'error'>;
|
|
188
|
+
run?: AgentWorkbenchEventOf<'status'>;
|
|
189
|
+
usage?: AgentWorkbenchEventOf<'usage'>;
|
|
190
|
+
workspace: {
|
|
191
|
+
diffs: AgentWorkbenchEventOf<'diff'>[];
|
|
192
|
+
files: AgentWorkbenchEventOf<'workspace-file'>[];
|
|
193
|
+
terminals: AgentWorkbenchTerminalModel[];
|
|
194
|
+
tests: AgentWorkbenchEventOf<'test-result'>[];
|
|
195
|
+
artifacts: AgentWorkbenchEventOf<'artifact'>[];
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
declare function createAgentWorkbenchDetailsModel(viewModel: AgentSessionViewModel): AgentWorkbenchDetailsModel;
|
|
199
|
+
export { AgentWorkbenchActivity as A, type AgentWorkbenchActivityClassNames as a, type AgentWorkbenchActivityModel as b, type AgentWorkbenchActivityProps as c, type AgentWorkbenchApprovalIntent as d, type AgentWorkbenchArtifactIntent as e, type AgentWorkbenchDetailsIntent as f, type AgentWorkbenchDetailsModel as g, type AgentWorkbenchDetailsState as h, type AgentWorkbenchDetailsTab as i, type AgentWorkbenchEventOf as j, AgentWorkbenchSidebar as k, type AgentWorkbenchSidebarClassNames as l, type AgentWorkbenchSidebarIntent as m, type AgentWorkbenchSidebarProps as n, AgentWorkbenchTaskDetails as o, type AgentWorkbenchTaskDetailsClassNames as p, type AgentWorkbenchTaskDetailsProps as q, type AgentWorkbenchTerminalModel as r, AgentWorkbenchTool as s, type AgentWorkbenchToolClassNames as t, type AgentWorkbenchToolProps as u, createAgentWorkbenchActivityModel as v, createAgentWorkbenchDetailsModel as w };
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { AgentWorkbenchNavigationViewModel, AgentSessionViewModel, AgentSessionEvent, AgentSessionCapabilities } from '@inf-monkeys-tech/monkeys';
|
|
3
|
+
import { ReactNode } from 'react';
|
|
4
|
+
type AgentWorkbenchSidebarIntent = {
|
|
5
|
+
type: 'change-search';
|
|
6
|
+
query: string;
|
|
7
|
+
} | {
|
|
8
|
+
type: 'change-tab';
|
|
9
|
+
tab: 'agents' | 'sessions';
|
|
10
|
+
} | {
|
|
11
|
+
type: 'create-agent';
|
|
12
|
+
} | {
|
|
13
|
+
type: 'create-session';
|
|
14
|
+
} | {
|
|
15
|
+
type: 'delete-session';
|
|
16
|
+
sessionId: string;
|
|
17
|
+
} | {
|
|
18
|
+
type: 'open-agent-settings';
|
|
19
|
+
} | {
|
|
20
|
+
type: 'open-capabilities';
|
|
21
|
+
} | {
|
|
22
|
+
type: 'rename-session';
|
|
23
|
+
sessionId: string;
|
|
24
|
+
title: string;
|
|
25
|
+
} | {
|
|
26
|
+
type: 'retry-agents';
|
|
27
|
+
} | {
|
|
28
|
+
type: 'retry-sessions';
|
|
29
|
+
} | {
|
|
30
|
+
type: 'select-agent';
|
|
31
|
+
itemId: string;
|
|
32
|
+
} | {
|
|
33
|
+
type: 'select-session';
|
|
34
|
+
sessionId: string;
|
|
35
|
+
} | {
|
|
36
|
+
type: 'toggle-agent-pin';
|
|
37
|
+
itemId: string;
|
|
38
|
+
pinned: boolean;
|
|
39
|
+
} | {
|
|
40
|
+
type: 'toggle-session-pin';
|
|
41
|
+
sessionId: string;
|
|
42
|
+
pinned: boolean;
|
|
43
|
+
};
|
|
44
|
+
interface AgentWorkbenchSidebarClassNames {
|
|
45
|
+
root?: string;
|
|
46
|
+
search?: string;
|
|
47
|
+
tabs?: string;
|
|
48
|
+
body?: string;
|
|
49
|
+
item?: string;
|
|
50
|
+
footer?: string;
|
|
51
|
+
}
|
|
52
|
+
interface AgentWorkbenchSidebarProps {
|
|
53
|
+
viewModel: AgentWorkbenchNavigationViewModel;
|
|
54
|
+
headerActions?: ReactNode;
|
|
55
|
+
className?: string;
|
|
56
|
+
classNames?: AgentWorkbenchSidebarClassNames;
|
|
57
|
+
onIntent?: (intent: AgentWorkbenchSidebarIntent) => void;
|
|
58
|
+
}
|
|
59
|
+
declare function AgentWorkbenchSidebar({ viewModel, headerActions, className, classNames, onIntent }: AgentWorkbenchSidebarProps): react_jsx_runtime.JSX.Element;
|
|
60
|
+
interface AgentWorkbenchApprovalIntent {
|
|
61
|
+
approvalId: string;
|
|
62
|
+
approved: boolean;
|
|
63
|
+
}
|
|
64
|
+
interface AgentWorkbenchArtifactIntent {
|
|
65
|
+
artifactId: string;
|
|
66
|
+
name: string;
|
|
67
|
+
url: string;
|
|
68
|
+
}
|
|
69
|
+
interface AgentWorkbenchActivityClassNames {
|
|
70
|
+
root?: string;
|
|
71
|
+
item?: string;
|
|
72
|
+
trigger?: string;
|
|
73
|
+
content?: string;
|
|
74
|
+
approval?: string;
|
|
75
|
+
artifact?: string;
|
|
76
|
+
usage?: string;
|
|
77
|
+
}
|
|
78
|
+
interface AgentWorkbenchActivityProps {
|
|
79
|
+
viewModel?: AgentSessionViewModel;
|
|
80
|
+
hiddenToolCallIds?: ReadonlySet<string>;
|
|
81
|
+
hideReasoning?: boolean;
|
|
82
|
+
hideStoppedRun?: boolean;
|
|
83
|
+
className?: string;
|
|
84
|
+
classNames?: AgentWorkbenchActivityClassNames;
|
|
85
|
+
onApprovalDecision?: (intent: AgentWorkbenchApprovalIntent) => void;
|
|
86
|
+
onArtifactOpen?: (intent: AgentWorkbenchArtifactIntent) => void;
|
|
87
|
+
}
|
|
88
|
+
declare function AgentWorkbenchActivity({ viewModel, hiddenToolCallIds, hideReasoning, hideStoppedRun, className, classNames, onApprovalDecision, onArtifactOpen, }: AgentWorkbenchActivityProps): null | react_jsx_runtime.JSX.Element;
|
|
89
|
+
type AgentWorkbenchDetailsTab = 'summary' | 'workspace';
|
|
90
|
+
type AgentWorkbenchDetailsState = 'empty' | 'error' | 'loading' | 'ready';
|
|
91
|
+
type AgentWorkbenchDetailsIntent = {
|
|
92
|
+
type: 'close';
|
|
93
|
+
} | {
|
|
94
|
+
type: 'continue-in-new-task';
|
|
95
|
+
sessionId: string;
|
|
96
|
+
} | {
|
|
97
|
+
type: 'copy-summary';
|
|
98
|
+
summaryId: string;
|
|
99
|
+
text: string;
|
|
100
|
+
} | {
|
|
101
|
+
type: 'edit-and-rerun';
|
|
102
|
+
sessionId: string;
|
|
103
|
+
} | {
|
|
104
|
+
type: 'export';
|
|
105
|
+
sessionId: string;
|
|
106
|
+
} | {
|
|
107
|
+
type: 'resume';
|
|
108
|
+
sessionId: string;
|
|
109
|
+
} | {
|
|
110
|
+
type: 'retry-summary';
|
|
111
|
+
eventId: string;
|
|
112
|
+
} | {
|
|
113
|
+
type: 'retry';
|
|
114
|
+
eventId: string;
|
|
115
|
+
};
|
|
116
|
+
interface AgentWorkbenchTaskDetailsClassNames {
|
|
117
|
+
root?: string;
|
|
118
|
+
header?: string;
|
|
119
|
+
tabs?: string;
|
|
120
|
+
body?: string;
|
|
121
|
+
section?: string;
|
|
122
|
+
code?: string;
|
|
123
|
+
}
|
|
124
|
+
interface AgentWorkbenchTaskDetailsProps {
|
|
125
|
+
viewModel?: AgentSessionViewModel;
|
|
126
|
+
state?: AgentWorkbenchDetailsState;
|
|
127
|
+
activeTab?: AgentWorkbenchDetailsTab;
|
|
128
|
+
className?: string;
|
|
129
|
+
classNames?: AgentWorkbenchTaskDetailsClassNames;
|
|
130
|
+
onActiveTabChange?: (tab: AgentWorkbenchDetailsTab) => void;
|
|
131
|
+
onIntent?: (intent: AgentWorkbenchDetailsIntent) => void;
|
|
132
|
+
}
|
|
133
|
+
declare function AgentWorkbenchTaskDetails({ viewModel, state, activeTab, className, classNames, onActiveTabChange, onIntent, }: AgentWorkbenchTaskDetailsProps): react_jsx_runtime.JSX.Element;
|
|
134
|
+
type SessionEventType = AgentSessionEvent['eventType'];
|
|
135
|
+
type AgentWorkbenchEventOf<Type extends SessionEventType> = Extract<AgentSessionEvent, {
|
|
136
|
+
eventType: Type;
|
|
137
|
+
}>;
|
|
138
|
+
interface AgentWorkbenchActivityModel {
|
|
139
|
+
mode: AgentSessionViewModel['snapshot']['mode'];
|
|
140
|
+
status: AgentSessionViewModel['status'];
|
|
141
|
+
reasoning: AgentWorkbenchEventOf<'reasoning'>[];
|
|
142
|
+
plans: AgentWorkbenchEventOf<'plan'>[];
|
|
143
|
+
tasks: AgentWorkbenchEventOf<'task'>[];
|
|
144
|
+
tools: AgentWorkbenchEventOf<'tool'>[];
|
|
145
|
+
approvals: AgentWorkbenchEventOf<'approval'>[];
|
|
146
|
+
artifacts: AgentWorkbenchEventOf<'artifact'>[];
|
|
147
|
+
usage?: AgentWorkbenchEventOf<'usage'>;
|
|
148
|
+
run?: AgentWorkbenchEventOf<'status'> & {
|
|
149
|
+
resolvedDurationMs?: number;
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
declare function createAgentWorkbenchActivityModel(viewModel: AgentSessionViewModel): AgentWorkbenchActivityModel;
|
|
153
|
+
interface AgentWorkbenchToolClassNames {
|
|
154
|
+
root?: string;
|
|
155
|
+
trigger?: string;
|
|
156
|
+
content?: string;
|
|
157
|
+
input?: string;
|
|
158
|
+
output?: string;
|
|
159
|
+
}
|
|
160
|
+
interface AgentWorkbenchToolProps {
|
|
161
|
+
event: AgentWorkbenchEventOf<'tool'>;
|
|
162
|
+
expanded?: boolean;
|
|
163
|
+
defaultExpanded?: boolean;
|
|
164
|
+
className?: string;
|
|
165
|
+
classNames?: AgentWorkbenchToolClassNames;
|
|
166
|
+
onExpandedChange?: (expanded: boolean) => void;
|
|
167
|
+
}
|
|
168
|
+
declare function AgentWorkbenchTool({ event, expanded, defaultExpanded, className, classNames, onExpandedChange, }: AgentWorkbenchToolProps): react_jsx_runtime.JSX.Element;
|
|
169
|
+
interface AgentWorkbenchTerminalModel {
|
|
170
|
+
terminalId: string;
|
|
171
|
+
stdin: string;
|
|
172
|
+
stdout: string;
|
|
173
|
+
stderr: string;
|
|
174
|
+
status: string;
|
|
175
|
+
exitCode?: number;
|
|
176
|
+
sequence: number;
|
|
177
|
+
}
|
|
178
|
+
interface AgentWorkbenchDetailsModel {
|
|
179
|
+
mode: AgentSessionViewModel['snapshot']['mode'];
|
|
180
|
+
modelId: string;
|
|
181
|
+
permissionProfile?: AgentSessionViewModel['snapshot']['permissionProfile'];
|
|
182
|
+
status: AgentSessionViewModel['status'];
|
|
183
|
+
sessionId: string;
|
|
184
|
+
capabilities: AgentSessionCapabilities;
|
|
185
|
+
resumable: boolean;
|
|
186
|
+
summary?: AgentWorkbenchEventOf<'summary'>;
|
|
187
|
+
error?: AgentWorkbenchEventOf<'error'>;
|
|
188
|
+
run?: AgentWorkbenchEventOf<'status'>;
|
|
189
|
+
usage?: AgentWorkbenchEventOf<'usage'>;
|
|
190
|
+
workspace: {
|
|
191
|
+
diffs: AgentWorkbenchEventOf<'diff'>[];
|
|
192
|
+
files: AgentWorkbenchEventOf<'workspace-file'>[];
|
|
193
|
+
terminals: AgentWorkbenchTerminalModel[];
|
|
194
|
+
tests: AgentWorkbenchEventOf<'test-result'>[];
|
|
195
|
+
artifacts: AgentWorkbenchEventOf<'artifact'>[];
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
declare function createAgentWorkbenchDetailsModel(viewModel: AgentSessionViewModel): AgentWorkbenchDetailsModel;
|
|
199
|
+
export { AgentWorkbenchActivity as A, type AgentWorkbenchActivityClassNames as a, type AgentWorkbenchActivityModel as b, type AgentWorkbenchActivityProps as c, type AgentWorkbenchApprovalIntent as d, type AgentWorkbenchArtifactIntent as e, type AgentWorkbenchDetailsIntent as f, type AgentWorkbenchDetailsModel as g, type AgentWorkbenchDetailsState as h, type AgentWorkbenchDetailsTab as i, type AgentWorkbenchEventOf as j, AgentWorkbenchSidebar as k, type AgentWorkbenchSidebarClassNames as l, type AgentWorkbenchSidebarIntent as m, type AgentWorkbenchSidebarProps as n, AgentWorkbenchTaskDetails as o, type AgentWorkbenchTaskDetailsClassNames as p, type AgentWorkbenchTaskDetailsProps as q, type AgentWorkbenchTerminalModel as r, AgentWorkbenchTool as s, type AgentWorkbenchToolClassNames as t, type AgentWorkbenchToolProps as u, createAgentWorkbenchActivityModel as v, createAgentWorkbenchDetailsModel as w };
|
package/dist/index.d.mts
CHANGED
|
@@ -3,8 +3,8 @@ export { ApplyThemeTokensOptions, CompileThemeTokensOptions, CompiledThemeTokens
|
|
|
3
3
|
export { ThemeToken, ThemeTokens } from '@inf-monkeys-tech/monkeys/contracts';
|
|
4
4
|
export { MonkeysComponentAttributes, MonkeysDirection, MonkeysEnvironment, MonkeysPortalContainer, MonkeysPortalOptions, MonkeysProvider, MonkeysProviderAppearance, MonkeysProviderProps, useMonkeysBaseAppearance, useMonkeysComponentAttributes, useMonkeysDataExplorerAppearance, useMonkeysDirection, useMonkeysEnvironment, useMonkeysLocale, useMonkeysLocaleMessages, useMonkeysPortalOptions, useMonkeysResolvedTheme } from './provider/index.mjs';
|
|
5
5
|
export { defaultMonkeysLocale, enUS, mergeMonkeysLocaleMessages, resolveMonkeysLocale, zhCN } from './locale/index.mjs';
|
|
6
|
-
export { M as MonkeysAgentWorkbenchMessages, a as MonkeysBuiltInLocaleId, b as MonkeysDataExplorerMessages, c as MonkeysDialogMessages, d as MonkeysDropdownMenuMessages, e as MonkeysLayoutMessages, f as MonkeysLoadingMessages, g as MonkeysLocale, h as MonkeysLocaleInput, i as MonkeysLocaleMessages, j as MonkeysLocaleMessagesOverride, k as MonkeysMultiSelectMessages, l as MonkeysNumberInputMessages, m as MonkeysPaginationMessages, n as MonkeysPasswordInputMessages, o as MonkeysResolvedLocale, p as MonkeysStepsMessages, q as MonkeysTableMessages, r as MonkeysToastMessages, s as MonkeysToolbarMessages, t as MonkeysWorkbenchMessages } from './types-
|
|
7
|
-
export { AgentWorkbenchActivity, AgentWorkbenchActivityClassNames, AgentWorkbenchActivityModel, AgentWorkbenchActivityProps, AgentWorkbenchApprovalIntent, AgentWorkbenchArtifactIntent, AgentWorkbenchDetailsIntent, AgentWorkbenchDetailsModel, AgentWorkbenchDetailsState, AgentWorkbenchDetailsTab, AgentWorkbenchEventOf, AgentWorkbenchSidebar, AgentWorkbenchSidebarClassNames, AgentWorkbenchSidebarIntent, AgentWorkbenchSidebarProps, AgentWorkbenchTaskDetails, AgentWorkbenchTaskDetailsClassNames, AgentWorkbenchTaskDetailsProps, AgentWorkbenchTerminalModel, AgentWorkbenchTool, AgentWorkbenchToolClassNames, AgentWorkbenchToolProps, createAgentWorkbenchActivityModel, createAgentWorkbenchDetailsModel } from './
|
|
6
|
+
export { M as MonkeysAgentWorkbenchMessages, a as MonkeysBuiltInLocaleId, b as MonkeysDataExplorerMessages, c as MonkeysDialogMessages, d as MonkeysDropdownMenuMessages, e as MonkeysLayoutMessages, f as MonkeysLoadingMessages, g as MonkeysLocale, h as MonkeysLocaleInput, i as MonkeysLocaleMessages, j as MonkeysLocaleMessagesOverride, k as MonkeysMultiSelectMessages, l as MonkeysNumberInputMessages, m as MonkeysPaginationMessages, n as MonkeysPasswordInputMessages, o as MonkeysResolvedLocale, p as MonkeysStepsMessages, q as MonkeysTableMessages, r as MonkeysToastMessages, s as MonkeysToolbarMessages, t as MonkeysWorkbenchMessages } from './types-a81dc2d284e3.mjs';
|
|
7
|
+
export { A as AgentWorkbenchActivity, a as AgentWorkbenchActivityClassNames, b as AgentWorkbenchActivityModel, c as AgentWorkbenchActivityProps, d as AgentWorkbenchApprovalIntent, e as AgentWorkbenchArtifactIntent, f as AgentWorkbenchDetailsIntent, g as AgentWorkbenchDetailsModel, h as AgentWorkbenchDetailsState, i as AgentWorkbenchDetailsTab, j as AgentWorkbenchEventOf, k as AgentWorkbenchSidebar, l as AgentWorkbenchSidebarClassNames, m as AgentWorkbenchSidebarIntent, n as AgentWorkbenchSidebarProps, o as AgentWorkbenchTaskDetails, p as AgentWorkbenchTaskDetailsClassNames, q as AgentWorkbenchTaskDetailsProps, r as AgentWorkbenchTerminalModel, s as AgentWorkbenchTool, t as AgentWorkbenchToolClassNames, u as AgentWorkbenchToolProps, v as createAgentWorkbenchActivityModel, w as createAgentWorkbenchDetailsModel } from './details-model-f2034b78b458.mjs';
|
|
8
8
|
export { LoginPage, LoginPageBackgroundConfig, LoginPageCalloutConfig, LoginPageCheckboxConfig, LoginPageExternalMethodConfig, LoginPageExternalPanelConfig, LoginPageFieldConfig, LoginPageLogoConfig, LoginPageLogoLocation, LoginPageMethodConfig, LoginPageProps } from './components/login/index.mjs';
|
|
9
9
|
export { AppHeader, AppHeaderLogo, AppHeaderProps, AppHeaderUser, AppLayout, AppLayoutProps, AppShellSidebar, AppShellSidebarClassNames, AppShellSidebarProps, AppSidebar, AppSidebarProps, HeadbarLayout, HeadbarLayoutMode, HeadbarMenuRadius, HeadbarNavPosition, HeaderTab, LayoutNavItem, NavButton, NavButtonProps, NavigationLayout, NavigationLayoutProps, NavigationMode, SidebarAccount, SidebarNavItem, UserAccountMenu, UserAccountMenuClassNames, UserAccountMenuItem, UserAccountMenuProps, UserAccountMenuRadius, UserAccountMenuSelectorConfig, UserAccountMenuSelectorOption, UserAccountMenuSide, UserAccountMenuTriggerVariant, UserAccountMenuUser, cn } from './components/layout/index.mjs';
|
|
10
10
|
export { InteractiveTable, InteractiveTableClassNames, InteractiveTableColumn, InteractiveTableColumnMenuLabels, InteractiveTableEditableTextCell, InteractiveTableEditableTextCellProps, InteractiveTableHeaderContext, InteractiveTableHeaderProps, InteractiveTableProps, InteractiveTableReadonlyCell, InteractiveTableReadonlyCellProps, InteractiveTableRenderContext, InteractiveTableRowState, InteractiveTableSelectCell, InteractiveTableSelectCellProps, InteractiveTableSelectOption, WorkbenchAssetGallery, WorkbenchAssetGalleryItem, WorkbenchAssetGalleryProps, WorkbenchContentPane, WorkbenchContentPaneBodyProps, WorkbenchContentPaneClassNames, WorkbenchContentPaneProps, WorkbenchContentToolbar, WorkbenchContentToolbarClassNames, WorkbenchContentToolbarProps, WorkbenchContentToolbarViewModeOption, WorkbenchDetailSidebar, WorkbenchDetailSidebarBodyProps, WorkbenchDetailSidebarClassNames, WorkbenchDetailSidebarField, WorkbenchDetailSidebarProps, WorkbenchDetailSidebarRenderContext, WorkbenchDetailSidebarSection, WorkbenchEvidenceItem, WorkbenchEvidenceList, WorkbenchEvidenceListProps, WorkbenchGalleryCard, WorkbenchGalleryCardMetaContext, WorkbenchGalleryCardProps, WorkbenchGalleryCardRenderContext, WorkbenchGalleryColumn, WorkbenchGalleryLabels, WorkbenchGalleryRecordVisual, WorkbenchGallerySettingsButton, WorkbenchGallerySettingsButtonClassNames, WorkbenchGallerySettingsButtonProps, WorkbenchGallerySettingsLabels, WorkbenchGallerySettingsOption, WorkbenchGallerySettingsPanel, WorkbenchGallerySettingsPanelClassNames, WorkbenchGallerySettingsPanelProps, WorkbenchGallerySettingsValue, WorkbenchGalleryView, WorkbenchGalleryViewProps, WorkbenchJourneyItem, WorkbenchJourneyItemState, WorkbenchJourneyNavigation, WorkbenchJourneyNavigationProps, WorkbenchLaneClassNames, WorkbenchLaneColumn, WorkbenchLaneRenderCardContext, WorkbenchLaneView, WorkbenchLaneViewProps, WorkbenchMasonryItemSize, WorkbenchMasonryLayout, WorkbenchMasonryLayoutContext, WorkbenchMasonryLayoutProps, WorkbenchMetricGrid, WorkbenchMetricGridDensity, WorkbenchMetricGridProps, WorkbenchMetricGridVariant, WorkbenchMetricItem, WorkbenchRadarFilterChip, WorkbenchRadarInspectorSection, WorkbenchRadarLegendItem, WorkbenchRadarMatrix, WorkbenchRadarMatrixProps, WorkbenchRadarNavigation, WorkbenchRadarNavigationChild, WorkbenchRadarNavigationItem, WorkbenchRadarNavigationProps, WorkbenchRadarQuadrant, WorkbenchRadarWorkspace, WorkbenchRadarWorkspaceProps, WorkbenchRankedList, WorkbenchRankedListItem, WorkbenchRankedListMetric, WorkbenchRankedListProps, WorkbenchRelationshipEdge, WorkbenchRelationshipGraph, WorkbenchRelationshipGraphProps, WorkbenchRelationshipNode, WorkbenchResizableSidebar, WorkbenchResizableSidebarClassNames, WorkbenchResizableSidebarItem, WorkbenchResizableSidebarProps, WorkbenchResizableSidebarSection, WorkbenchScatterAxis, WorkbenchScatterPlot, WorkbenchScatterPlotProps, WorkbenchScatterPoint, WorkbenchScatterThresholds, WorkbenchSelectionTray, WorkbenchSelectionTrayItem, WorkbenchSelectionTrayProps, WorkbenchTableView, WorkbenchTableViewClassNames, WorkbenchTableViewColumn, WorkbenchTableViewHeaderContext, WorkbenchTableViewProps, WorkbenchTableViewRenderContext, WorkbenchVisualizationTone } from './components/workbench/index.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ export { ApplyThemeTokensOptions, CompileThemeTokensOptions, CompiledThemeTokens
|
|
|
3
3
|
export { ThemeToken, ThemeTokens } from '@inf-monkeys-tech/monkeys/contracts';
|
|
4
4
|
export { MonkeysComponentAttributes, MonkeysDirection, MonkeysEnvironment, MonkeysPortalContainer, MonkeysPortalOptions, MonkeysProvider, MonkeysProviderAppearance, MonkeysProviderProps, useMonkeysBaseAppearance, useMonkeysComponentAttributes, useMonkeysDataExplorerAppearance, useMonkeysDirection, useMonkeysEnvironment, useMonkeysLocale, useMonkeysLocaleMessages, useMonkeysPortalOptions, useMonkeysResolvedTheme } from './provider/index.js';
|
|
5
5
|
export { defaultMonkeysLocale, enUS, mergeMonkeysLocaleMessages, resolveMonkeysLocale, zhCN } from './locale/index.js';
|
|
6
|
-
export { M as MonkeysAgentWorkbenchMessages, a as MonkeysBuiltInLocaleId, b as MonkeysDataExplorerMessages, c as MonkeysDialogMessages, d as MonkeysDropdownMenuMessages, e as MonkeysLayoutMessages, f as MonkeysLoadingMessages, g as MonkeysLocale, h as MonkeysLocaleInput, i as MonkeysLocaleMessages, j as MonkeysLocaleMessagesOverride, k as MonkeysMultiSelectMessages, l as MonkeysNumberInputMessages, m as MonkeysPaginationMessages, n as MonkeysPasswordInputMessages, o as MonkeysResolvedLocale, p as MonkeysStepsMessages, q as MonkeysTableMessages, r as MonkeysToastMessages, s as MonkeysToolbarMessages, t as MonkeysWorkbenchMessages } from './types-
|
|
7
|
-
export { AgentWorkbenchActivity, AgentWorkbenchActivityClassNames, AgentWorkbenchActivityModel, AgentWorkbenchActivityProps, AgentWorkbenchApprovalIntent, AgentWorkbenchArtifactIntent, AgentWorkbenchDetailsIntent, AgentWorkbenchDetailsModel, AgentWorkbenchDetailsState, AgentWorkbenchDetailsTab, AgentWorkbenchEventOf, AgentWorkbenchSidebar, AgentWorkbenchSidebarClassNames, AgentWorkbenchSidebarIntent, AgentWorkbenchSidebarProps, AgentWorkbenchTaskDetails, AgentWorkbenchTaskDetailsClassNames, AgentWorkbenchTaskDetailsProps, AgentWorkbenchTerminalModel, AgentWorkbenchTool, AgentWorkbenchToolClassNames, AgentWorkbenchToolProps, createAgentWorkbenchActivityModel, createAgentWorkbenchDetailsModel } from './
|
|
6
|
+
export { M as MonkeysAgentWorkbenchMessages, a as MonkeysBuiltInLocaleId, b as MonkeysDataExplorerMessages, c as MonkeysDialogMessages, d as MonkeysDropdownMenuMessages, e as MonkeysLayoutMessages, f as MonkeysLoadingMessages, g as MonkeysLocale, h as MonkeysLocaleInput, i as MonkeysLocaleMessages, j as MonkeysLocaleMessagesOverride, k as MonkeysMultiSelectMessages, l as MonkeysNumberInputMessages, m as MonkeysPaginationMessages, n as MonkeysPasswordInputMessages, o as MonkeysResolvedLocale, p as MonkeysStepsMessages, q as MonkeysTableMessages, r as MonkeysToastMessages, s as MonkeysToolbarMessages, t as MonkeysWorkbenchMessages } from './types-a81dc2d284e3.js';
|
|
7
|
+
export { A as AgentWorkbenchActivity, a as AgentWorkbenchActivityClassNames, b as AgentWorkbenchActivityModel, c as AgentWorkbenchActivityProps, d as AgentWorkbenchApprovalIntent, e as AgentWorkbenchArtifactIntent, f as AgentWorkbenchDetailsIntent, g as AgentWorkbenchDetailsModel, h as AgentWorkbenchDetailsState, i as AgentWorkbenchDetailsTab, j as AgentWorkbenchEventOf, k as AgentWorkbenchSidebar, l as AgentWorkbenchSidebarClassNames, m as AgentWorkbenchSidebarIntent, n as AgentWorkbenchSidebarProps, o as AgentWorkbenchTaskDetails, p as AgentWorkbenchTaskDetailsClassNames, q as AgentWorkbenchTaskDetailsProps, r as AgentWorkbenchTerminalModel, s as AgentWorkbenchTool, t as AgentWorkbenchToolClassNames, u as AgentWorkbenchToolProps, v as createAgentWorkbenchActivityModel, w as createAgentWorkbenchDetailsModel } from './details-model-f2034b78b458.js';
|
|
8
8
|
export { LoginPage, LoginPageBackgroundConfig, LoginPageCalloutConfig, LoginPageCheckboxConfig, LoginPageExternalMethodConfig, LoginPageExternalPanelConfig, LoginPageFieldConfig, LoginPageLogoConfig, LoginPageLogoLocation, LoginPageMethodConfig, LoginPageProps } from './components/login/index.js';
|
|
9
9
|
export { AppHeader, AppHeaderLogo, AppHeaderProps, AppHeaderUser, AppLayout, AppLayoutProps, AppShellSidebar, AppShellSidebarClassNames, AppShellSidebarProps, AppSidebar, AppSidebarProps, HeadbarLayout, HeadbarLayoutMode, HeadbarMenuRadius, HeadbarNavPosition, HeaderTab, LayoutNavItem, NavButton, NavButtonProps, NavigationLayout, NavigationLayoutProps, NavigationMode, SidebarAccount, SidebarNavItem, UserAccountMenu, UserAccountMenuClassNames, UserAccountMenuItem, UserAccountMenuProps, UserAccountMenuRadius, UserAccountMenuSelectorConfig, UserAccountMenuSelectorOption, UserAccountMenuSide, UserAccountMenuTriggerVariant, UserAccountMenuUser, cn } from './components/layout/index.js';
|
|
10
10
|
export { InteractiveTable, InteractiveTableClassNames, InteractiveTableColumn, InteractiveTableColumnMenuLabels, InteractiveTableEditableTextCell, InteractiveTableEditableTextCellProps, InteractiveTableHeaderContext, InteractiveTableHeaderProps, InteractiveTableProps, InteractiveTableReadonlyCell, InteractiveTableReadonlyCellProps, InteractiveTableRenderContext, InteractiveTableRowState, InteractiveTableSelectCell, InteractiveTableSelectCellProps, InteractiveTableSelectOption, WorkbenchAssetGallery, WorkbenchAssetGalleryItem, WorkbenchAssetGalleryProps, WorkbenchContentPane, WorkbenchContentPaneBodyProps, WorkbenchContentPaneClassNames, WorkbenchContentPaneProps, WorkbenchContentToolbar, WorkbenchContentToolbarClassNames, WorkbenchContentToolbarProps, WorkbenchContentToolbarViewModeOption, WorkbenchDetailSidebar, WorkbenchDetailSidebarBodyProps, WorkbenchDetailSidebarClassNames, WorkbenchDetailSidebarField, WorkbenchDetailSidebarProps, WorkbenchDetailSidebarRenderContext, WorkbenchDetailSidebarSection, WorkbenchEvidenceItem, WorkbenchEvidenceList, WorkbenchEvidenceListProps, WorkbenchGalleryCard, WorkbenchGalleryCardMetaContext, WorkbenchGalleryCardProps, WorkbenchGalleryCardRenderContext, WorkbenchGalleryColumn, WorkbenchGalleryLabels, WorkbenchGalleryRecordVisual, WorkbenchGallerySettingsButton, WorkbenchGallerySettingsButtonClassNames, WorkbenchGallerySettingsButtonProps, WorkbenchGallerySettingsLabels, WorkbenchGallerySettingsOption, WorkbenchGallerySettingsPanel, WorkbenchGallerySettingsPanelClassNames, WorkbenchGallerySettingsPanelProps, WorkbenchGallerySettingsValue, WorkbenchGalleryView, WorkbenchGalleryViewProps, WorkbenchJourneyItem, WorkbenchJourneyItemState, WorkbenchJourneyNavigation, WorkbenchJourneyNavigationProps, WorkbenchLaneClassNames, WorkbenchLaneColumn, WorkbenchLaneRenderCardContext, WorkbenchLaneView, WorkbenchLaneViewProps, WorkbenchMasonryItemSize, WorkbenchMasonryLayout, WorkbenchMasonryLayoutContext, WorkbenchMasonryLayoutProps, WorkbenchMetricGrid, WorkbenchMetricGridDensity, WorkbenchMetricGridProps, WorkbenchMetricGridVariant, WorkbenchMetricItem, WorkbenchRadarFilterChip, WorkbenchRadarInspectorSection, WorkbenchRadarLegendItem, WorkbenchRadarMatrix, WorkbenchRadarMatrixProps, WorkbenchRadarNavigation, WorkbenchRadarNavigationChild, WorkbenchRadarNavigationItem, WorkbenchRadarNavigationProps, WorkbenchRadarQuadrant, WorkbenchRadarWorkspace, WorkbenchRadarWorkspaceProps, WorkbenchRankedList, WorkbenchRankedListItem, WorkbenchRankedListMetric, WorkbenchRankedListProps, WorkbenchRelationshipEdge, WorkbenchRelationshipGraph, WorkbenchRelationshipGraphProps, WorkbenchRelationshipNode, WorkbenchResizableSidebar, WorkbenchResizableSidebarClassNames, WorkbenchResizableSidebarItem, WorkbenchResizableSidebarProps, WorkbenchResizableSidebarSection, WorkbenchScatterAxis, WorkbenchScatterPlot, WorkbenchScatterPlotProps, WorkbenchScatterPoint, WorkbenchScatterThresholds, WorkbenchSelectionTray, WorkbenchSelectionTrayItem, WorkbenchSelectionTrayProps, WorkbenchTableView, WorkbenchTableViewClassNames, WorkbenchTableViewColumn, WorkbenchTableViewHeaderContext, WorkbenchTableViewProps, WorkbenchTableViewRenderContext, WorkbenchVisualizationTone } from './components/workbench/index.js';
|