@datatechsolutions/ui 2.11.69 → 2.11.71
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/astrlabe/index.js +150 -150
- package/dist/astrlabe/index.mjs +6 -6
- package/dist/astrlabe/workflow-canvas.js +4 -4
- package/dist/astrlabe/workflow-canvas.mjs +3 -3
- package/dist/{chunk-P6Y24524.js → chunk-KMJG6A4K.js} +64 -64
- package/dist/{chunk-P6Y24524.js.map → chunk-KMJG6A4K.js.map} +1 -1
- package/dist/{chunk-U5EZP7FI.mjs → chunk-TMVBROBQ.mjs} +3 -3
- package/dist/{chunk-U5EZP7FI.mjs.map → chunk-TMVBROBQ.mjs.map} +1 -1
- package/dist/{chunk-DPG4R7EB.mjs → chunk-ULNKKVDK.mjs} +106 -43
- package/dist/{chunk-DPG4R7EB.mjs.map → chunk-ULNKKVDK.mjs.map} +1 -1
- package/dist/{chunk-WBYNJTQN.js → chunk-UOKLJT2P.js} +106 -43
- package/dist/chunk-UOKLJT2P.js.map +1 -0
- package/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +753 -753
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-WBYNJTQN.js.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -3463,8 +3463,10 @@ interface DepartmentWorkflowDemoProps {
|
|
|
3463
3463
|
onComplete?: () => void;
|
|
3464
3464
|
/** Visual theme overrides. */
|
|
3465
3465
|
theme?: DepartmentWorkflowTheme;
|
|
3466
|
+
/** Per-node avatar override — keyed by node.id. When set, replaces the node type icon with a rounded avatar image. */
|
|
3467
|
+
nodeAvatars?: Record<string, string>;
|
|
3466
3468
|
}
|
|
3467
|
-
declare function DepartmentWorkflowDemo({ workflow, stepDurationMs, autoPlay, className, hideHeader, onComplete, theme, }: DepartmentWorkflowDemoProps): react_jsx_runtime.JSX.Element;
|
|
3469
|
+
declare function DepartmentWorkflowDemo({ workflow, stepDurationMs, autoPlay, className, hideHeader, onComplete, theme, nodeAvatars, }: DepartmentWorkflowDemoProps): react_jsx_runtime.JSX.Element;
|
|
3468
3470
|
|
|
3469
3471
|
declare const financialWorkflow: DepartmentWorkflow;
|
|
3470
3472
|
declare const salesWorkflow: DepartmentWorkflow;
|
|
@@ -3504,6 +3506,10 @@ interface DepartmentAssistantFlow {
|
|
|
3504
3506
|
accent: string;
|
|
3505
3507
|
prompt: string;
|
|
3506
3508
|
agents: string[];
|
|
3509
|
+
/** Optional dicebear (or any image) avatar URLs keyed by agent name — shown in the chat bubble. */
|
|
3510
|
+
agentAvatars?: Record<string, string>;
|
|
3511
|
+
/** Optional avatar URLs keyed by workflow node id — shown on agent nodes in the canvas. */
|
|
3512
|
+
nodeAvatars?: Record<string, string>;
|
|
3507
3513
|
workflow: DepartmentWorkflow;
|
|
3508
3514
|
dashboard: React.ReactNode;
|
|
3509
3515
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -3463,8 +3463,10 @@ interface DepartmentWorkflowDemoProps {
|
|
|
3463
3463
|
onComplete?: () => void;
|
|
3464
3464
|
/** Visual theme overrides. */
|
|
3465
3465
|
theme?: DepartmentWorkflowTheme;
|
|
3466
|
+
/** Per-node avatar override — keyed by node.id. When set, replaces the node type icon with a rounded avatar image. */
|
|
3467
|
+
nodeAvatars?: Record<string, string>;
|
|
3466
3468
|
}
|
|
3467
|
-
declare function DepartmentWorkflowDemo({ workflow, stepDurationMs, autoPlay, className, hideHeader, onComplete, theme, }: DepartmentWorkflowDemoProps): react_jsx_runtime.JSX.Element;
|
|
3469
|
+
declare function DepartmentWorkflowDemo({ workflow, stepDurationMs, autoPlay, className, hideHeader, onComplete, theme, nodeAvatars, }: DepartmentWorkflowDemoProps): react_jsx_runtime.JSX.Element;
|
|
3468
3470
|
|
|
3469
3471
|
declare const financialWorkflow: DepartmentWorkflow;
|
|
3470
3472
|
declare const salesWorkflow: DepartmentWorkflow;
|
|
@@ -3504,6 +3506,10 @@ interface DepartmentAssistantFlow {
|
|
|
3504
3506
|
accent: string;
|
|
3505
3507
|
prompt: string;
|
|
3506
3508
|
agents: string[];
|
|
3509
|
+
/** Optional dicebear (or any image) avatar URLs keyed by agent name — shown in the chat bubble. */
|
|
3510
|
+
agentAvatars?: Record<string, string>;
|
|
3511
|
+
/** Optional avatar URLs keyed by workflow node id — shown on agent nodes in the canvas. */
|
|
3512
|
+
nodeAvatars?: Record<string, string>;
|
|
3507
3513
|
workflow: DepartmentWorkflow;
|
|
3508
3514
|
dashboard: React.ReactNode;
|
|
3509
3515
|
}
|