@inf-monkeys-tech/monkeys-design 1.0.16 → 1.0.17
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 +36 -4
- package/dist/components/agent-workbench/index.d.ts +36 -4
- package/dist/components/agent-workbench/index.js +167 -1
- package/dist/components/agent-workbench/index.js.map +1 -1
- package/dist/components/agent-workbench/index.mjs +167 -2
- package/dist/components/agent-workbench/index.mjs.map +1 -1
- package/dist/{details-model-f2034b78b458.d.mts → details-model-235bb3448dca.d.mts} +2 -1
- package/dist/{details-model-f2034b78b458.d.ts → details-model-235bb3448dca.d.ts} +2 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -17938,6 +17938,7 @@ function RunStatus({
|
|
|
17938
17938
|
}
|
|
17939
17939
|
function AgentWorkbenchActivity({
|
|
17940
17940
|
viewModel,
|
|
17941
|
+
ariaLabel,
|
|
17941
17942
|
hiddenToolCallIds,
|
|
17942
17943
|
hideReasoning = false,
|
|
17943
17944
|
hideStoppedRun = false,
|
|
@@ -17965,7 +17966,7 @@ function AgentWorkbenchActivity({
|
|
|
17965
17966
|
"section",
|
|
17966
17967
|
{
|
|
17967
17968
|
className: cn2("space-y-3", classNames?.root, className),
|
|
17968
|
-
"aria-label": messages.label,
|
|
17969
|
+
"aria-label": ariaLabel ?? messages.label,
|
|
17969
17970
|
"data-agent-workbench-mode": activity.mode,
|
|
17970
17971
|
"data-agent-workbench-status": activity.status,
|
|
17971
17972
|
children: [
|