@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.
Files changed (60) hide show
  1. package/dist/components/agent-workbench/index.d.mts +41 -168
  2. package/dist/components/agent-workbench/index.d.ts +41 -168
  3. package/dist/components/agent-workbench/index.js +335 -4
  4. package/dist/components/agent-workbench/index.js.map +1 -1
  5. package/dist/components/agent-workbench/index.mjs +336 -6
  6. package/dist/components/agent-workbench/index.mjs.map +1 -1
  7. package/dist/components/base/index.js +32 -1
  8. package/dist/components/base/index.js.map +1 -1
  9. package/dist/components/base/index.mjs +32 -1
  10. package/dist/components/base/index.mjs.map +1 -1
  11. package/dist/components/data-explorer/index.js +32 -1
  12. package/dist/components/data-explorer/index.js.map +1 -1
  13. package/dist/components/data-explorer/index.mjs +32 -1
  14. package/dist/components/data-explorer/index.mjs.map +1 -1
  15. package/dist/components/layout/index.js +32 -1
  16. package/dist/components/layout/index.js.map +1 -1
  17. package/dist/components/layout/index.mjs +32 -1
  18. package/dist/components/layout/index.mjs.map +1 -1
  19. package/dist/components/runtime/index.js +32 -1
  20. package/dist/components/runtime/index.js.map +1 -1
  21. package/dist/components/runtime/index.mjs +32 -1
  22. package/dist/components/runtime/index.mjs.map +1 -1
  23. package/dist/components/toast/index.d.mts +1 -1
  24. package/dist/components/toast/index.d.ts +1 -1
  25. package/dist/components/toast/index.js +32 -1
  26. package/dist/components/toast/index.js.map +1 -1
  27. package/dist/components/toast/index.mjs +32 -1
  28. package/dist/components/toast/index.mjs.map +1 -1
  29. package/dist/components/toolbar/index.js +32 -1
  30. package/dist/components/toolbar/index.js.map +1 -1
  31. package/dist/components/toolbar/index.mjs +32 -1
  32. package/dist/components/toolbar/index.mjs.map +1 -1
  33. package/dist/components/workbench/index.js +32 -1
  34. package/dist/components/workbench/index.js.map +1 -1
  35. package/dist/components/workbench/index.mjs +32 -1
  36. package/dist/components/workbench/index.mjs.map +1 -1
  37. package/dist/details-model-f2034b78b458.d.mts +199 -0
  38. package/dist/details-model-f2034b78b458.d.ts +199 -0
  39. package/dist/index.d.mts +2 -2
  40. package/dist/index.d.ts +2 -2
  41. package/dist/index.js +142 -5
  42. package/dist/index.js.map +1 -1
  43. package/dist/index.mjs +142 -5
  44. package/dist/index.mjs.map +1 -1
  45. package/dist/locale/index.d.mts +88 -2
  46. package/dist/locale/index.d.ts +88 -2
  47. package/dist/locale/index.js +72 -2
  48. package/dist/locale/index.js.map +1 -1
  49. package/dist/locale/index.mjs +72 -2
  50. package/dist/locale/index.mjs.map +1 -1
  51. package/dist/provider/index.d.mts +2 -2
  52. package/dist/provider/index.d.ts +2 -2
  53. package/dist/provider/index.js +72 -2
  54. package/dist/provider/index.js.map +1 -1
  55. package/dist/provider/index.mjs +72 -2
  56. package/dist/provider/index.mjs.map +1 -1
  57. package/dist/styles.css +1 -1
  58. package/dist/{types-37967a434f7c.d.mts → types-a81dc2d284e3.d.mts} +37 -0
  59. package/dist/{types-37967a434f7c.d.ts → types-a81dc2d284e3.d.ts} +37 -0
  60. 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.14",
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.31",
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.31",
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",