@volter-ai-dev/supercode-ui 0.1.70 → 0.1.72
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/README.md +61 -1
- package/activity.mjs +5 -1235
- package/chunks/chunk-2FG7VKIW.mjs +201 -0
- package/chunks/chunk-4XUMCWPC.mjs +29 -0
- package/chunks/chunk-E65I2I2L.mjs +120 -0
- package/chunks/chunk-IL5T2AST.mjs +842 -0
- package/chunks/chunk-LOP6XOON.mjs +671 -0
- package/chunks/chunk-LS6JBXNT.mjs +1237 -0
- package/chunks/chunk-SJ3YTA6Z.mjs +316 -0
- package/chunks/chunk-TKTOVDXB.mjs +139 -0
- package/chunks/chunk-V3UM7H7W.mjs +328 -0
- package/chunks/chunk-WRK5TBX3.mjs +224 -0
- package/chunks/chunk-ZLYHUYE2.mjs +62 -0
- package/components.d.ts +3 -0
- package/components.mjs +59 -3766
- package/composer.mjs +8 -580
- package/conversation.mjs +16 -1373
- package/embed.mjs +15 -3681
- package/icon.mjs +3 -58
- package/index.d.ts +25 -0
- package/logo.mjs +5 -87
- package/messenger.d.ts +3 -0
- package/messenger.mjs +21 -3677
- package/package.json +22 -3
- package/react/activity.mjs +5 -1235
- package/react/chunks/chunk-7ES5FSLG.mjs +316 -0
- package/react/chunks/chunk-LS6JBXNT.mjs +1237 -0
- package/react/chunks/chunk-LYRIQE5M.mjs +29 -0
- package/react/chunks/chunk-NJC6S2AW.mjs +201 -0
- package/react/chunks/chunk-OINC7LV7.mjs +62 -0
- package/react/chunks/chunk-QL6QEYPK.mjs +842 -0
- package/react/chunks/chunk-UGL6AB2K.mjs +120 -0
- package/react/chunks/chunk-UKHDCPME.mjs +328 -0
- package/react/chunks/chunk-UKMTRNJN.mjs +671 -0
- package/react/chunks/chunk-VFOVJ4S3.mjs +139 -0
- package/react/chunks/chunk-YK7SJ6EH.mjs +224 -0
- package/react/components.mjs +59 -3766
- package/react/composer.mjs +8 -580
- package/react/conversation.mjs +16 -1373
- package/react/icon.mjs +3 -58
- package/react/index.d.ts +25 -0
- package/react/logo.mjs +5 -87
- package/react/messenger.d.ts +3 -0
- package/react/messenger.mjs +21 -3677
- package/react/sessions.mjs +9 -519
- package/react/settings.mjs +9 -425
- package/react/subagents.mjs +8 -1546
- package/react/supervision-components.mjs +1354 -0
- package/react/supervision.d.ts +36 -0
- package/sessions.mjs +9 -519
- package/settings.mjs +9 -425
- package/source-inventory.d.ts +240 -0
- package/source-inventory.mjs +367 -0
- package/styles.css +104 -0
- package/subagents.mjs +8 -1546
- package/supervision-components.d.ts +36 -0
- package/supervision-components.mjs +1354 -0
- package/supervision.d.ts +242 -0
- package/supervision.mjs +349 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { VNode } from 'preact';
|
|
2
|
+
import type { ProfileListProps, ProfileDetailsProps, ChannelListProps, RouteListProps, TriggerListProps, SkillListProps, SkillDetailsProps, MemoryBrowserProps, SourceInspectorProps, ApprovalInboxProps, ApprovalDetailsProps, AdapterStatusProps, OrchestrationOverviewProps } from './source-inventory.js';
|
|
3
|
+
export function ProfileList(props: ProfileListProps): VNode;
|
|
4
|
+
export function ProfileDetails(props: ProfileDetailsProps): VNode;
|
|
5
|
+
export function ChannelList(props: ChannelListProps): VNode;
|
|
6
|
+
export function RouteList(props: RouteListProps): VNode;
|
|
7
|
+
export function TriggerList(props: TriggerListProps): VNode;
|
|
8
|
+
export function SkillList(props: SkillListProps): VNode;
|
|
9
|
+
export function SkillDetails(props: SkillDetailsProps): VNode;
|
|
10
|
+
export function MemoryBrowser(props: MemoryBrowserProps): VNode;
|
|
11
|
+
export function SourceInspector(props: SourceInspectorProps): VNode;
|
|
12
|
+
export function ApprovalInbox(props: ApprovalInboxProps): VNode;
|
|
13
|
+
export function ApprovalDetails(props: ApprovalDetailsProps): VNode;
|
|
14
|
+
export function AdapterStatus(props: AdapterStatusProps): VNode;
|
|
15
|
+
export function OrchestrationOverview(props: OrchestrationOverviewProps): VNode;
|
|
16
|
+
export type * from './supervision.js';
|
|
17
|
+
import type { WorkflowBoardProps, WorkflowListProps, TaskCardProps, TaskDetailsProps, DependencyListProps, AttemptTimelineProps, HandoffCardProps, ReviewCardProps, TaskThreadProps, JobListProps, JobDetailsProps, JobActionsProps, RunListProps, RunDetailsProps, DeliveryStatusProps, OrchestrationJobsProps } from './supervision.js';
|
|
18
|
+
export function WorkflowBoard(props: WorkflowBoardProps): VNode;
|
|
19
|
+
export function WorkflowList(props: WorkflowListProps): VNode;
|
|
20
|
+
export function TaskCard(props: TaskCardProps): VNode;
|
|
21
|
+
export function TaskDetails(props: TaskDetailsProps): VNode;
|
|
22
|
+
export function DependencyList(props: DependencyListProps): VNode;
|
|
23
|
+
export function AttemptTimeline(props: AttemptTimelineProps): VNode;
|
|
24
|
+
export function HandoffCard(props: HandoffCardProps): VNode;
|
|
25
|
+
export function ReviewCard(props: ReviewCardProps): VNode;
|
|
26
|
+
export function TaskThread(props: TaskThreadProps): VNode;
|
|
27
|
+
export function JobList(props: JobListProps): VNode;
|
|
28
|
+
export function JobDetails(props: JobDetailsProps): VNode;
|
|
29
|
+
export function JobActions(props: JobActionsProps): VNode;
|
|
30
|
+
export function RunList(props: RunListProps): VNode;
|
|
31
|
+
export function RunDetails(props: RunDetailsProps): VNode;
|
|
32
|
+
export function DeliveryStatus(props: DeliveryStatusProps): VNode;
|
|
33
|
+
export function OrchestrationJobs(props: OrchestrationJobsProps): VNode;
|
|
34
|
+
|
|
35
|
+
import type { JobControlsProps } from './supervision.js';
|
|
36
|
+
export function JobControls(props: JobControlsProps): VNode;
|