@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.
- package/dist/components/agent-workbench/index.d.mts +57 -2
- package/dist/components/agent-workbench/index.d.ts +57 -2
- package/dist/components/agent-workbench/index.js +669 -43
- package/dist/components/agent-workbench/index.js.map +1 -1
- package/dist/components/agent-workbench/index.mjs +636 -39
- package/dist/components/agent-workbench/index.mjs.map +1 -1
- package/dist/components/base/index.js +32 -0
- package/dist/components/base/index.js.map +1 -1
- package/dist/components/base/index.mjs +32 -0
- package/dist/components/base/index.mjs.map +1 -1
- package/dist/components/data-explorer/index.js +32 -0
- package/dist/components/data-explorer/index.js.map +1 -1
- package/dist/components/data-explorer/index.mjs +32 -0
- package/dist/components/data-explorer/index.mjs.map +1 -1
- package/dist/components/layout/index.js +32 -0
- package/dist/components/layout/index.js.map +1 -1
- package/dist/components/layout/index.mjs +32 -0
- package/dist/components/layout/index.mjs.map +1 -1
- package/dist/components/runtime/index.js +32 -0
- package/dist/components/runtime/index.js.map +1 -1
- package/dist/components/runtime/index.mjs +32 -0
- 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 -0
- package/dist/components/toast/index.js.map +1 -1
- package/dist/components/toast/index.mjs +32 -0
- package/dist/components/toast/index.mjs.map +1 -1
- package/dist/components/toolbar/index.js +32 -0
- package/dist/components/toolbar/index.js.map +1 -1
- package/dist/components/toolbar/index.mjs +32 -0
- package/dist/components/toolbar/index.mjs.map +1 -1
- package/dist/components/workbench/index.js +32 -0
- package/dist/components/workbench/index.js.map +1 -1
- package/dist/components/workbench/index.mjs +32 -0
- package/dist/components/workbench/index.mjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1021 -386
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +645 -17
- package/dist/index.mjs.map +1 -1
- package/dist/locale/index.d.mts +70 -2
- package/dist/locale/index.d.ts +70 -2
- package/dist/locale/index.js +68 -0
- package/dist/locale/index.js.map +1 -1
- package/dist/locale/index.mjs +68 -0
- 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 +68 -0
- package/dist/provider/index.js.map +1 -1
- package/dist/provider/index.mjs +68 -0
- package/dist/provider/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/{types-3d3e043f0ccb.d.mts → types-37967a434f7c.d.mts} +35 -0
- package/dist/{types-3d3e043f0ccb.d.ts → types-37967a434f7c.d.ts} +35 -0
- 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.
|
|
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.
|
|
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.
|
|
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",
|