@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
|
@@ -112,6 +112,30 @@ interface MonkeysAgentWorkbenchMessages {
|
|
|
112
112
|
reasoning: string;
|
|
113
113
|
plan: string;
|
|
114
114
|
taskNoDetail: string;
|
|
115
|
+
modes: Record<'agent' | 'chatbot', string>;
|
|
116
|
+
composer: {
|
|
117
|
+
send: string;
|
|
118
|
+
stop: string;
|
|
119
|
+
queue: string;
|
|
120
|
+
attach: string;
|
|
121
|
+
voice: string;
|
|
122
|
+
webSearch: string;
|
|
123
|
+
model: string;
|
|
124
|
+
reasoning: string;
|
|
125
|
+
permissions: string;
|
|
126
|
+
removeAttachment: string;
|
|
127
|
+
editQueued: string;
|
|
128
|
+
deleteQueued: string;
|
|
129
|
+
moveUp: string;
|
|
130
|
+
moveDown: string;
|
|
131
|
+
queued: string;
|
|
132
|
+
uploading: string;
|
|
133
|
+
noModels: string;
|
|
134
|
+
message: string;
|
|
135
|
+
attachmentOnly: string;
|
|
136
|
+
reasoningOptions: Record<'high' | 'low' | 'medium' | 'xhigh', string>;
|
|
137
|
+
permissionOptions: Record<'approval-required' | 'auto-approve' | 'full-access', string>;
|
|
138
|
+
};
|
|
115
139
|
tool: {
|
|
116
140
|
input: string;
|
|
117
141
|
output: string;
|
|
@@ -189,6 +213,10 @@ interface MonkeysAgentWorkbenchMessages {
|
|
|
189
213
|
description: string;
|
|
190
214
|
duration: string;
|
|
191
215
|
updated: string;
|
|
216
|
+
model: string;
|
|
217
|
+
mode: string;
|
|
218
|
+
permissions: string;
|
|
219
|
+
tokenUsage: string;
|
|
192
220
|
summary: string;
|
|
193
221
|
summaryEmpty: string;
|
|
194
222
|
summaryFailed: string;
|
|
@@ -210,6 +238,9 @@ interface MonkeysAgentWorkbenchMessages {
|
|
|
210
238
|
retry: string;
|
|
211
239
|
retrySummary: string;
|
|
212
240
|
resume: string;
|
|
241
|
+
continueInNewTask: string;
|
|
242
|
+
editAndRerun: string;
|
|
243
|
+
export: string;
|
|
213
244
|
};
|
|
214
245
|
workspace: {
|
|
215
246
|
diffs: string;
|
|
@@ -269,6 +300,8 @@ interface MonkeysLocaleMessagesOverride {
|
|
|
269
300
|
reasoning?: string;
|
|
270
301
|
plan?: string;
|
|
271
302
|
taskNoDetail?: string;
|
|
303
|
+
modes?: Partial<MonkeysAgentWorkbenchMessages['modes']>;
|
|
304
|
+
composer?: Partial<MonkeysAgentWorkbenchMessages['composer']>;
|
|
272
305
|
tool?: Omit<Partial<MonkeysAgentWorkbenchMessages['tool']>, 'status'> & {
|
|
273
306
|
status?: Partial<MonkeysAgentWorkbenchMessages['tool']['status']>;
|
|
274
307
|
};
|
|
@@ -282,6 +315,10 @@ interface MonkeysLocaleMessagesOverride {
|
|
|
282
315
|
description?: string;
|
|
283
316
|
duration?: string;
|
|
284
317
|
updated?: string;
|
|
318
|
+
model?: string;
|
|
319
|
+
mode?: string;
|
|
320
|
+
permissions?: string;
|
|
321
|
+
tokenUsage?: string;
|
|
285
322
|
summary?: string;
|
|
286
323
|
summaryEmpty?: string;
|
|
287
324
|
summaryFailed?: string;
|
|
@@ -112,6 +112,30 @@ interface MonkeysAgentWorkbenchMessages {
|
|
|
112
112
|
reasoning: string;
|
|
113
113
|
plan: string;
|
|
114
114
|
taskNoDetail: string;
|
|
115
|
+
modes: Record<'agent' | 'chatbot', string>;
|
|
116
|
+
composer: {
|
|
117
|
+
send: string;
|
|
118
|
+
stop: string;
|
|
119
|
+
queue: string;
|
|
120
|
+
attach: string;
|
|
121
|
+
voice: string;
|
|
122
|
+
webSearch: string;
|
|
123
|
+
model: string;
|
|
124
|
+
reasoning: string;
|
|
125
|
+
permissions: string;
|
|
126
|
+
removeAttachment: string;
|
|
127
|
+
editQueued: string;
|
|
128
|
+
deleteQueued: string;
|
|
129
|
+
moveUp: string;
|
|
130
|
+
moveDown: string;
|
|
131
|
+
queued: string;
|
|
132
|
+
uploading: string;
|
|
133
|
+
noModels: string;
|
|
134
|
+
message: string;
|
|
135
|
+
attachmentOnly: string;
|
|
136
|
+
reasoningOptions: Record<'high' | 'low' | 'medium' | 'xhigh', string>;
|
|
137
|
+
permissionOptions: Record<'approval-required' | 'auto-approve' | 'full-access', string>;
|
|
138
|
+
};
|
|
115
139
|
tool: {
|
|
116
140
|
input: string;
|
|
117
141
|
output: string;
|
|
@@ -189,6 +213,10 @@ interface MonkeysAgentWorkbenchMessages {
|
|
|
189
213
|
description: string;
|
|
190
214
|
duration: string;
|
|
191
215
|
updated: string;
|
|
216
|
+
model: string;
|
|
217
|
+
mode: string;
|
|
218
|
+
permissions: string;
|
|
219
|
+
tokenUsage: string;
|
|
192
220
|
summary: string;
|
|
193
221
|
summaryEmpty: string;
|
|
194
222
|
summaryFailed: string;
|
|
@@ -210,6 +238,9 @@ interface MonkeysAgentWorkbenchMessages {
|
|
|
210
238
|
retry: string;
|
|
211
239
|
retrySummary: string;
|
|
212
240
|
resume: string;
|
|
241
|
+
continueInNewTask: string;
|
|
242
|
+
editAndRerun: string;
|
|
243
|
+
export: string;
|
|
213
244
|
};
|
|
214
245
|
workspace: {
|
|
215
246
|
diffs: string;
|
|
@@ -269,6 +300,8 @@ interface MonkeysLocaleMessagesOverride {
|
|
|
269
300
|
reasoning?: string;
|
|
270
301
|
plan?: string;
|
|
271
302
|
taskNoDetail?: string;
|
|
303
|
+
modes?: Partial<MonkeysAgentWorkbenchMessages['modes']>;
|
|
304
|
+
composer?: Partial<MonkeysAgentWorkbenchMessages['composer']>;
|
|
272
305
|
tool?: Omit<Partial<MonkeysAgentWorkbenchMessages['tool']>, 'status'> & {
|
|
273
306
|
status?: Partial<MonkeysAgentWorkbenchMessages['tool']['status']>;
|
|
274
307
|
};
|
|
@@ -282,6 +315,10 @@ interface MonkeysLocaleMessagesOverride {
|
|
|
282
315
|
description?: string;
|
|
283
316
|
duration?: string;
|
|
284
317
|
updated?: string;
|
|
318
|
+
model?: string;
|
|
319
|
+
mode?: string;
|
|
320
|
+
permissions?: string;
|
|
321
|
+
tokenUsage?: string;
|
|
285
322
|
summary?: string;
|
|
286
323
|
summaryEmpty?: string;
|
|
287
324
|
summaryFailed?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inf-monkeys-tech/monkeys-design",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "Monkeys Design Components Library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -177,13 +177,13 @@
|
|
|
177
177
|
"tailwind-merge": "^2.6.0"
|
|
178
178
|
},
|
|
179
179
|
"peerDependencies": {
|
|
180
|
-
"@inf-monkeys-tech/monkeys": "^1.0.
|
|
180
|
+
"@inf-monkeys-tech/monkeys": "^1.0.32",
|
|
181
181
|
"react": ">=18.0.0",
|
|
182
182
|
"react-dom": ">=18.0.0",
|
|
183
183
|
"sonner": ">=1.4.0 <3.0.0"
|
|
184
184
|
},
|
|
185
185
|
"devDependencies": {
|
|
186
|
-
"@inf-monkeys-tech/monkeys": "1.0.
|
|
186
|
+
"@inf-monkeys-tech/monkeys": "1.0.32",
|
|
187
187
|
"@playwright/test": "1.61.1",
|
|
188
188
|
"@radix-ui/colors": "^3.0.0",
|
|
189
189
|
"@storybook/addon-a11y": "10.3.5",
|