@inf-monkeys-tech/monkeys-design 1.0.11 → 1.0.12

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 (58) hide show
  1. package/dist/components/agent-workbench/index.d.mts +57 -2
  2. package/dist/components/agent-workbench/index.d.ts +57 -2
  3. package/dist/components/agent-workbench/index.js +669 -43
  4. package/dist/components/agent-workbench/index.js.map +1 -1
  5. package/dist/components/agent-workbench/index.mjs +636 -39
  6. package/dist/components/agent-workbench/index.mjs.map +1 -1
  7. package/dist/components/base/index.js +32 -0
  8. package/dist/components/base/index.js.map +1 -1
  9. package/dist/components/base/index.mjs +32 -0
  10. package/dist/components/base/index.mjs.map +1 -1
  11. package/dist/components/data-explorer/index.js +32 -0
  12. package/dist/components/data-explorer/index.js.map +1 -1
  13. package/dist/components/data-explorer/index.mjs +32 -0
  14. package/dist/components/data-explorer/index.mjs.map +1 -1
  15. package/dist/components/layout/index.js +32 -0
  16. package/dist/components/layout/index.js.map +1 -1
  17. package/dist/components/layout/index.mjs +32 -0
  18. package/dist/components/layout/index.mjs.map +1 -1
  19. package/dist/components/runtime/index.js +32 -0
  20. package/dist/components/runtime/index.js.map +1 -1
  21. package/dist/components/runtime/index.mjs +32 -0
  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 -0
  26. package/dist/components/toast/index.js.map +1 -1
  27. package/dist/components/toast/index.mjs +32 -0
  28. package/dist/components/toast/index.mjs.map +1 -1
  29. package/dist/components/toolbar/index.js +32 -0
  30. package/dist/components/toolbar/index.js.map +1 -1
  31. package/dist/components/toolbar/index.mjs +32 -0
  32. package/dist/components/toolbar/index.mjs.map +1 -1
  33. package/dist/components/workbench/index.js +32 -0
  34. package/dist/components/workbench/index.js.map +1 -1
  35. package/dist/components/workbench/index.mjs +32 -0
  36. package/dist/components/workbench/index.mjs.map +1 -1
  37. package/dist/index.d.mts +2 -2
  38. package/dist/index.d.ts +2 -2
  39. package/dist/index.js +1021 -386
  40. package/dist/index.js.map +1 -1
  41. package/dist/index.mjs +645 -17
  42. package/dist/index.mjs.map +1 -1
  43. package/dist/locale/index.d.mts +70 -2
  44. package/dist/locale/index.d.ts +70 -2
  45. package/dist/locale/index.js +68 -0
  46. package/dist/locale/index.js.map +1 -1
  47. package/dist/locale/index.mjs +68 -0
  48. package/dist/locale/index.mjs.map +1 -1
  49. package/dist/provider/index.d.mts +2 -2
  50. package/dist/provider/index.d.ts +2 -2
  51. package/dist/provider/index.js +68 -0
  52. package/dist/provider/index.js.map +1 -1
  53. package/dist/provider/index.mjs +68 -0
  54. package/dist/provider/index.mjs.map +1 -1
  55. package/dist/styles.css +1 -1
  56. package/dist/{types-3d3e043f0ccb.d.mts → types-37967a434f7c.d.mts} +35 -0
  57. package/dist/{types-3d3e043f0ccb.d.ts → types-37967a434f7c.d.ts} +35 -0
  58. package/package.json +3 -3
@@ -150,6 +150,40 @@ interface MonkeysAgentWorkbenchMessages {
150
150
  total: number;
151
151
  }) => string;
152
152
  };
153
+ navigation: {
154
+ search: string;
155
+ searchShortcut: string;
156
+ clearSearch: string;
157
+ tabsLabel: string;
158
+ agents: string;
159
+ sessions: string;
160
+ newAgent: string;
161
+ newSession: string;
162
+ capabilities: string;
163
+ settings: string;
164
+ allAgents: string;
165
+ recentSessions: string;
166
+ builtIn: string;
167
+ noDescription: string;
168
+ loading: string;
169
+ emptyAgents: string;
170
+ emptySessions: string;
171
+ noResults: string;
172
+ retry: string;
173
+ pin: string;
174
+ unpin: string;
175
+ rename: string;
176
+ delete: string;
177
+ actions: string;
178
+ save: string;
179
+ cancel: string;
180
+ running: string;
181
+ completed: string;
182
+ failed: string;
183
+ contextUsage: (values: {
184
+ percent: number;
185
+ }) => string;
186
+ };
153
187
  details: {
154
188
  title: string;
155
189
  description: string;
@@ -242,6 +276,7 @@ interface MonkeysLocaleMessagesOverride {
242
276
  artifact?: Partial<MonkeysAgentWorkbenchMessages['artifact']>;
243
277
  run?: Partial<MonkeysAgentWorkbenchMessages['run']>;
244
278
  usage?: Partial<MonkeysAgentWorkbenchMessages['usage']>;
279
+ navigation?: Partial<MonkeysAgentWorkbenchMessages['navigation']>;
245
280
  details?: {
246
281
  title?: string;
247
282
  description?: string;
@@ -150,6 +150,40 @@ interface MonkeysAgentWorkbenchMessages {
150
150
  total: number;
151
151
  }) => string;
152
152
  };
153
+ navigation: {
154
+ search: string;
155
+ searchShortcut: string;
156
+ clearSearch: string;
157
+ tabsLabel: string;
158
+ agents: string;
159
+ sessions: string;
160
+ newAgent: string;
161
+ newSession: string;
162
+ capabilities: string;
163
+ settings: string;
164
+ allAgents: string;
165
+ recentSessions: string;
166
+ builtIn: string;
167
+ noDescription: string;
168
+ loading: string;
169
+ emptyAgents: string;
170
+ emptySessions: string;
171
+ noResults: string;
172
+ retry: string;
173
+ pin: string;
174
+ unpin: string;
175
+ rename: string;
176
+ delete: string;
177
+ actions: string;
178
+ save: string;
179
+ cancel: string;
180
+ running: string;
181
+ completed: string;
182
+ failed: string;
183
+ contextUsage: (values: {
184
+ percent: number;
185
+ }) => string;
186
+ };
153
187
  details: {
154
188
  title: string;
155
189
  description: string;
@@ -242,6 +276,7 @@ interface MonkeysLocaleMessagesOverride {
242
276
  artifact?: Partial<MonkeysAgentWorkbenchMessages['artifact']>;
243
277
  run?: Partial<MonkeysAgentWorkbenchMessages['run']>;
244
278
  usage?: Partial<MonkeysAgentWorkbenchMessages['usage']>;
279
+ navigation?: Partial<MonkeysAgentWorkbenchMessages['navigation']>;
245
280
  details?: {
246
281
  title?: string;
247
282
  description?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inf-monkeys-tech/monkeys-design",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
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.29",
180
+ "@inf-monkeys-tech/monkeys": "^1.0.31",
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.29",
186
+ "@inf-monkeys-tech/monkeys": "1.0.31",
187
187
  "@playwright/test": "1.61.1",
188
188
  "@radix-ui/colors": "^3.0.0",
189
189
  "@storybook/addon-a11y": "10.3.5",