@elevasis/ui 1.20.1 → 1.22.0

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 (66) hide show
  1. package/dist/charts/index.js +3 -2
  2. package/dist/chunk-3KMDHCAR.js +52 -0
  3. package/dist/{chunk-4SY4EQSK.js → chunk-5266RV46.js} +3 -3
  4. package/dist/{chunk-UMFPUM7Q.js → chunk-7TLPKXC2.js} +12 -12
  5. package/dist/{chunk-OFAXUZPZ.js → chunk-AJPFSMEH.js} +528 -336
  6. package/dist/chunk-AWT255UH.js +255 -0
  7. package/dist/{chunk-EMN755L5.js → chunk-CTF6FS2M.js} +10 -216
  8. package/dist/{chunk-C7AD6N23.js → chunk-DLI3F5IV.js} +364 -364
  9. package/dist/{chunk-AQ5MQDSS.js → chunk-EDAYKRPJ.js} +404 -2
  10. package/dist/{chunk-XOTN3X3Z.js → chunk-FATKFO7X.js} +3 -54
  11. package/dist/{chunk-JZEXFQ6N.js → chunk-HOYZWSNV.js} +91 -80
  12. package/dist/{chunk-AWMZCYKH.js → chunk-IAZT3VO6.js} +158 -82
  13. package/dist/{chunk-ERVB3QJQ.js → chunk-N5SDJP44.js} +1 -1
  14. package/dist/{chunk-3DIU726S.js → chunk-NVSKJG3L.js} +25 -4
  15. package/dist/{chunk-VLTVZXP6.js → chunk-QZS5FOIR.js} +2 -2
  16. package/dist/chunk-ROSMICXG.js +668 -0
  17. package/dist/{chunk-JIABC3AE.js → chunk-WAEKXBP3.js} +516 -266
  18. package/dist/{chunk-COTI2QPO.js → chunk-ZHJGTOXP.js} +4 -3
  19. package/dist/components/chat/index.d.ts +202 -0
  20. package/dist/components/chat/index.js +2 -0
  21. package/dist/components/index.css +0 -3
  22. package/dist/components/index.d.ts +37 -37
  23. package/dist/components/index.js +2652 -2902
  24. package/dist/features/auth/index.css +0 -3
  25. package/dist/features/dashboard/index.css +0 -3
  26. package/dist/features/dashboard/index.js +9 -9
  27. package/dist/features/monitoring/index.css +0 -3
  28. package/dist/features/monitoring/index.js +10 -10
  29. package/dist/features/operations/index.css +0 -3
  30. package/dist/features/operations/index.d.ts +245 -10
  31. package/dist/features/operations/index.js +1115 -170
  32. package/dist/features/settings/index.css +0 -3
  33. package/dist/features/settings/index.js +9 -9
  34. package/dist/hooks/index.css +68 -3
  35. package/dist/hooks/index.d.ts +1165 -4
  36. package/dist/hooks/index.js +5 -6
  37. package/dist/hooks/published.css +68 -3
  38. package/dist/hooks/published.d.ts +1165 -4
  39. package/dist/hooks/published.js +4 -5
  40. package/dist/index.css +68 -3
  41. package/dist/index.d.ts +1166 -5
  42. package/dist/index.js +6 -7
  43. package/dist/layout/index.d.ts +4 -4
  44. package/dist/layout/index.js +3 -4
  45. package/dist/provider/index.css +0 -3
  46. package/dist/provider/index.d.ts +1 -1
  47. package/dist/provider/index.js +3 -4
  48. package/dist/provider/published.d.ts +1 -1
  49. package/dist/theme/index.d.ts +1 -1
  50. package/dist/theme/index.js +3 -3
  51. package/dist/types/index.d.ts +1 -1
  52. package/package.json +7 -2
  53. package/dist/chunk-JFRG2JJE.js +0 -47
  54. package/dist/chunk-R3R367QY.js +0 -14
  55. package/dist/theme/presets/__tests__/getPreset.test.d.ts +0 -2
  56. package/dist/theme/presets/__tests__/getPreset.test.d.ts.map +0 -1
  57. package/dist/theme/presets/__tests__/getPreset.test.js +0 -92
  58. package/dist/theme/presets/cyber-volt.d.ts +0 -12
  59. package/dist/theme/presets/cyber-volt.d.ts.map +0 -1
  60. package/dist/theme/presets/cyber-volt.js +0 -70
  61. package/dist/theme/presets/regal.d.ts +0 -8
  62. package/dist/theme/presets/regal.d.ts.map +0 -1
  63. package/dist/theme/presets/regal.js +0 -69
  64. package/dist/theme/presets/rose-gold.d.ts +0 -12
  65. package/dist/theme/presets/rose-gold.d.ts.map +0 -1
  66. package/dist/theme/presets/rose-gold.js +0 -76
@@ -1,4 +1,4 @@
1
- import { usePresetsContext } from './chunk-OFAXUZPZ.js';
1
+ import { usePresetsContext } from './chunk-AJPFSMEH.js';
2
2
  import { useMemo } from 'react';
3
3
 
4
4
  var BUILT_IN_NAMES = /* @__PURE__ */ new Set([
@@ -16,8 +16,9 @@ var BUILT_IN_NAMES = /* @__PURE__ */ new Set([
16
16
  "canopy",
17
17
  "slate",
18
18
  "cyber-strike",
19
- "cyber-punk",
20
- "cyber-void"
19
+ "cyber-chrome",
20
+ "cyber-void",
21
+ "quarry"
21
22
  ]);
22
23
  function titleCase(str) {
23
24
  return str.replace(/(^|-)(\w)/g, (_, sep, char) => (sep ? " " : "") + char.toUpperCase());
@@ -0,0 +1,202 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as react from 'react';
3
+ import { ReactNode } from 'react';
4
+
5
+ interface ChatSidebarProps {
6
+ /**
7
+ * Whether the sidebar is open
8
+ */
9
+ isOpen: boolean;
10
+ /**
11
+ * Optional title for the sidebar header
12
+ * @default 'Details'
13
+ */
14
+ title?: string;
15
+ /**
16
+ * Sidebar content
17
+ */
18
+ children: ReactNode;
19
+ /**
20
+ * Optional fixed width in pixels
21
+ * @default 320
22
+ */
23
+ width?: number;
24
+ /**
25
+ * Optional z-index for layering
26
+ * @default 10
27
+ */
28
+ zIndex?: number;
29
+ }
30
+ /**
31
+ * Shared chat sidebar component
32
+ *
33
+ * Provides a sliding sidebar panel that animates from the right side.
34
+ * Used across AI Studio sessions and Agent Chat for displaying contextual details.
35
+ *
36
+ * Features:
37
+ * - Smooth transform-based sliding animation
38
+ * - Fixed width with absolute positioning
39
+ * - Theme-aware styling with CSS variables
40
+ * - Customizable header with optional actions
41
+ * - Flexible content area via children prop
42
+ *
43
+ * Layout Pattern:
44
+ * Parent container must have `position: relative` and the content area should
45
+ * adjust its `marginRight` to match the sidebar width when open.
46
+ *
47
+ * @example
48
+ * ```tsx
49
+ * <div style={{ position: 'relative', height: '100vh' }}>
50
+ * <div style={{
51
+ * marginRight: isSidebarOpen ? '320px' : '0',
52
+ * transition: 'margin-right 0.3s cubic-bezier(0.4, 0, 0.2, 1)'
53
+ * }}>
54
+ * // Main content
55
+ * </div>
56
+ * <ChatSidebar isOpen={isSidebarOpen} onClose={() => setIsOpen(false)}>
57
+ * // Sidebar content
58
+ * </ChatSidebar>
59
+ * </div>
60
+ * ```
61
+ */
62
+ declare function ChatSidebar({ isOpen, title, children, width, zIndex }: ChatSidebarProps): react_jsx_runtime.JSX.Element;
63
+
64
+ interface ChatHeaderProps {
65
+ title: string;
66
+ status?: {
67
+ label: string;
68
+ color: 'green' | 'gray' | 'red' | 'yellow' | 'blue';
69
+ };
70
+ contextUsage?: {
71
+ used: number;
72
+ total: number;
73
+ };
74
+ sidebarIcon?: ReactNode;
75
+ onToggleSidebar?: () => void;
76
+ isSidebarOpen?: boolean;
77
+ sidebarTooltip?: string;
78
+ }
79
+ /**
80
+ * Shared chat header component
81
+ * Displays title, status badge, context usage, and optional sidebar toggle
82
+ */
83
+ declare function ChatHeader({ title, status, contextUsage, sidebarIcon, onToggleSidebar, isSidebarOpen, sidebarTooltip }: ChatHeaderProps): react_jsx_runtime.JSX.Element;
84
+
85
+ interface ChatInputAreaProps {
86
+ input: string;
87
+ onInputChange: (value: string) => void;
88
+ onSend: () => void;
89
+ isDisabled?: boolean;
90
+ isProcessing?: boolean;
91
+ isConnected?: boolean;
92
+ placeholder?: string;
93
+ }
94
+ /**
95
+ * Tactical chat input area with focus glow and accent send button.
96
+ */
97
+ declare const ChatInputArea: react.NamedExoticComponent<ChatInputAreaProps>;
98
+
99
+ type MessageType = MessageEvent['type'];
100
+ interface ChatMessage {
101
+ id: string;
102
+ role: 'user' | 'assistant';
103
+ messageType: MessageType;
104
+ text: string;
105
+ metadata?: MessageEvent;
106
+ turnNumber: number;
107
+ messageIndex?: number;
108
+ createdAt: Date;
109
+ }
110
+
111
+ /**
112
+ * Base Execution Engine type definitions
113
+ * Core types shared across all Execution Engine resources
114
+ */
115
+
116
+ /**
117
+ * Unified message event type - covers all message types in sessions
118
+ * Replaces separate SessionTurnMessages and AgentActivityEvent mechanisms
119
+ */
120
+ /**
121
+ * Structured action metadata attached to assistant messages.
122
+ * Frontend reads this instead of parsing text prefixes.
123
+ */
124
+ type AssistantAction = {
125
+ kind: 'navigate';
126
+ path: string;
127
+ reason: string;
128
+ } | {
129
+ kind: 'update_filters';
130
+ timeRange: string | null;
131
+ statusFilter: string | null;
132
+ searchQuery: string | null;
133
+ };
134
+ type MessageEvent = {
135
+ type: 'user_message';
136
+ text: string;
137
+ } | {
138
+ type: 'assistant_message';
139
+ text: string;
140
+ _action?: AssistantAction;
141
+ } | {
142
+ type: 'agent:started';
143
+ } | {
144
+ type: 'agent:completed';
145
+ } | {
146
+ type: 'agent:error';
147
+ error: string;
148
+ } | {
149
+ type: 'agent:reasoning';
150
+ iteration: number;
151
+ reasoning: string;
152
+ } | {
153
+ type: 'agent:tool_call';
154
+ toolName: string;
155
+ args: Record<string, unknown>;
156
+ } | {
157
+ type: 'agent:tool_result';
158
+ toolName: string;
159
+ success: boolean;
160
+ result?: unknown;
161
+ error?: string;
162
+ };
163
+
164
+ interface ChatInterfaceProps {
165
+ messages: ChatMessage[];
166
+ input: string;
167
+ onInputChange: (value: string) => void;
168
+ onSendMessage: () => void;
169
+ isProcessing?: boolean;
170
+ isConnected?: boolean;
171
+ error?: string | null;
172
+ onClearError?: () => void;
173
+ emptyStateText?: string;
174
+ emptyStateSubtext?: string;
175
+ placeholder?: string;
176
+ }
177
+ /**
178
+ * Shared chat interface component
179
+ * Used across ai studio sessions and production agent chat
180
+ * Handles message display, auto-scroll, and input area
181
+ */
182
+ declare function ChatInterface({ messages, input, onInputChange, onSendMessage, isProcessing, isConnected, error, onClearError, emptyStateText, emptyStateSubtext, placeholder }: ChatInterfaceProps): react_jsx_runtime.JSX.Element;
183
+
184
+ interface MessageBubbleProps {
185
+ message: ChatMessage;
186
+ }
187
+ /**
188
+ * Shared chat message bubble component
189
+ * Used across all chat interfaces in the monorepo
190
+ * Supports all 8 message types including agent activity
191
+ */
192
+ declare const MessageBubble: react.NamedExoticComponent<MessageBubbleProps>;
193
+
194
+ /**
195
+ * Animated processing indicator with a light streak effect.
196
+ * Each letter brightens sequentially, creating the illusion
197
+ * of a streak of light sweeping across the text.
198
+ */
199
+ declare function ProcessingIndicator(): react_jsx_runtime.JSX.Element;
200
+
201
+ export { ChatHeader, ChatInputArea, ChatInterface, ChatSidebar, MessageBubble, ProcessingIndicator };
202
+ export type { ChatHeaderProps, ChatInputAreaProps, ChatInterfaceProps, ChatSidebarProps, MessageBubbleProps };
@@ -0,0 +1,2 @@
1
+ export { ChatHeader, ChatInputArea, ChatInterface, ChatSidebar, MessageBubble, ProcessingIndicator } from '../../chunk-ROSMICXG.js';
2
+ import '../../chunk-3KMDHCAR.js';
@@ -158,9 +158,6 @@
158
158
  ::-webkit-scrollbar-thumb:hover {
159
159
  background: var(--color-text-subtle);
160
160
  }
161
- .mantine-Skeleton-root[data-visible]::after {
162
- background-color: color-mix(in srgb, var(--color-text-subtle) 30%, var(--color-surface)) !important;
163
- }
164
161
  .mantine-Checkbox-input {
165
162
  background-color: var(--color-surface);
166
163
  border-color: var(--color-border);
@@ -109,67 +109,47 @@ interface PageTitleCaptionProps {
109
109
  declare const PageTitleCaption: ({ title, caption, rightSection }: PageTitleCaptionProps) => react_jsx_runtime.JSX.Element;
110
110
 
111
111
  interface StatsCardSkeletonProps {
112
- /** Height of the chart skeleton - defaults to 120 */
112
+ /** Height of the loader area - defaults to 200 */
113
113
  chartHeight?: number;
114
- /** Whether to show a chart skeleton - defaults to true */
114
+ /** Kept for API compat, unused */
115
115
  withChart?: boolean;
116
- /** Number of stat columns - defaults to 3 */
116
+ /** Kept for API compat, unused */
117
117
  statCount?: 2 | 3;
118
118
  }
119
119
  /**
120
- * StatsCardSkeleton - Loading skeleton for dashboard metric cards
120
+ * StatsCardSkeleton - Loading state for dashboard metric cards
121
121
  *
122
- * Consolidates the identical card skeleton pattern used across:
122
+ * Used across:
123
123
  * - ExecutionHealthCard.tsx
124
124
  * - CostMetricsCard.tsx
125
125
  * - ThroughputCard.tsx
126
126
  * - BusinessImpactCard.tsx
127
- *
128
- * @example
129
- * ```tsx
130
- * if (isLoading) {
131
- * return <StatsCardSkeleton />
132
- * }
133
- * ```
134
127
  */
135
- declare function StatsCardSkeleton({ chartHeight, withChart, statCount }: StatsCardSkeletonProps): react_jsx_runtime.JSX.Element;
128
+ declare function StatsCardSkeleton({ chartHeight }: StatsCardSkeletonProps): react_jsx_runtime.JSX.Element;
136
129
  interface ListSkeletonProps {
137
- /** Number of skeleton rows to show - defaults to 3 */
130
+ /** Number of rows (used to calculate height) - defaults to 3 */
138
131
  rows?: number;
139
132
  /** Height of each row - defaults to 50 */
140
133
  rowHeight?: number;
141
134
  }
142
135
  /**
143
- * ListSkeleton - Loading skeleton for table/list content
136
+ * ListSkeleton - Loading state for table/list content
144
137
  *
145
- * Consolidates the Stack + Skeleton pattern used across:
138
+ * Used across:
146
139
  * - ApiKeyList.tsx
147
140
  * - CredentialList.tsx
148
- * - Various other list components
149
- *
150
- * @example
151
- * ```tsx
152
- * if (isLoading) {
153
- * return <ListSkeleton rows={5} />
154
- * }
155
- * ```
141
+ * - DeploymentList.tsx
142
+ * - WebhookEndpointList.tsx
156
143
  */
157
144
  declare function ListSkeleton({ rows, rowHeight }: ListSkeletonProps): react_jsx_runtime.JSX.Element;
158
145
  interface DetailCardSkeletonProps {
159
- /** Number of detail rows - defaults to 3 */
146
+ /** Number of detail rows (used to calculate height) - defaults to 3 */
160
147
  rows?: number;
161
148
  }
162
149
  /**
163
- * DetailCardSkeleton - Loading skeleton for cards with list of detail items
164
- *
165
- * Used for cards like CostBreakdownCard that show a list of items
150
+ * DetailCardSkeleton - Loading state for cards with list of detail items
166
151
  *
167
- * @example
168
- * ```tsx
169
- * if (isLoading) {
170
- * return <DetailCardSkeleton rows={4} />
171
- * }
172
- * ```
152
+ * Used for cards like CostBreakdownCard
173
153
  */
174
154
  declare function DetailCardSkeleton({ rows }: DetailCardSkeletonProps): react_jsx_runtime.JSX.Element;
175
155
 
@@ -3957,13 +3937,15 @@ interface ResourceCardProps {
3957
3937
  layout?: 'stack' | 'row' | 'grid' | 'card';
3958
3938
  /** Content rendered in the right column when layout is 'grid' */
3959
3939
  rightSection?: ReactNode;
3940
+ /** Content rendered above the details when layout is 'card' */
3941
+ topSection?: ReactNode;
3960
3942
  /** Optional "Last run X ago" label shown below status badges */
3961
3943
  lastRunLabel?: string;
3962
3944
  /** HTML data attributes and style overrides passed to the root Card */
3963
3945
  'data-resource-id'?: string;
3964
3946
  style?: CSSProperties;
3965
3947
  }
3966
- declare function ResourceCard({ resource, onClick, layout, rightSection, lastRunLabel, style, ...rest }: ResourceCardProps): react_jsx_runtime.JSX.Element;
3948
+ declare function ResourceCard({ resource, onClick, layout, rightSection, topSection, lastRunLabel, style, ...rest }: ResourceCardProps): react_jsx_runtime.JSX.Element;
3967
3949
 
3968
3950
  /**
3969
3951
  * Converts ExecutionRunnerCatalogItem to ResourceDefinition format
@@ -4019,6 +4001,24 @@ interface GlowDotProps {
4019
4001
  }
4020
4002
  declare function GlowDot({ color, size }: GlowDotProps): react_jsx_runtime.JSX.Element;
4021
4003
 
4004
+ interface StatusBadgeProps extends Omit<BadgeProps, 'color'> {
4005
+ status: string;
4006
+ }
4007
+ declare function StatusBadge({ status, ...props }: StatusBadgeProps): react_jsx_runtime.JSX.Element;
4008
+
4009
+ interface ActivityEntry {
4010
+ type: string;
4011
+ title: string;
4012
+ description?: string;
4013
+ metadata?: Record<string, unknown>;
4014
+ occurredAt: string;
4015
+ actor?: string;
4016
+ }
4017
+ interface ActivityTimelineProps {
4018
+ activities: ActivityEntry[];
4019
+ }
4020
+ declare function ActivityTimeline({ activities }: ActivityTimelineProps): react_jsx_runtime.JSX.Element;
4021
+
4022
4022
  interface ICustomModalProps {
4023
4023
  opened: boolean;
4024
4024
  onClose: () => void;
@@ -5704,5 +5704,5 @@ interface UseBreadcrumbsOptions {
5704
5704
  type BreadcrumbsProps = UseBreadcrumbsOptions;
5705
5705
  declare const Breadcrumbs: ({ navItems }: BreadcrumbsProps) => react_jsx_runtime.JSX.Element;
5706
5706
 
5707
- export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewEdge, CommandViewGraph, CommandViewNode, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateScheduleModal, CredentialList, CredentialSettings, CustomModal, CustomSelector, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, DocTreeNav, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, FormFieldRenderer, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, JsonViewer, KnowledgeBasePage, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OrganizationMembershipsList, PageNotFound, PageTitleCaption, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, SHARED_VIZ_CONSTANTS, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StyledMarkdown, TabCountBadge, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, buildErrorReport, catalogItemToResourceDefinition, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, iconMap, mdxComponents, showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout };
5708
- export type { ActivityFiltersProps, ActivityTableProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CommandViewGraphRef, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FitViewButtonVariant, GraphFitViewHandlerProps, JsonViewerProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, ResourceHealthPanelProps, RichTextEditorProps, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TaskFilterStatus, TrendIndicatorProps };
5707
+ export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewEdge, CommandViewGraph, CommandViewNode, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateScheduleModal, CredentialList, CredentialSettings, CustomModal, CustomSelector, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, DocTreeNav, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, FormFieldRenderer, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, JsonViewer, KnowledgeBasePage, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OrganizationMembershipsList, PageNotFound, PageTitleCaption, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, SHARED_VIZ_CONSTANTS, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StyledMarkdown, TabCountBadge, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, buildErrorReport, catalogItemToResourceDefinition, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, iconMap, mdxComponents, showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout };
5708
+ export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CommandViewGraphRef, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FitViewButtonVariant, GraphFitViewHandlerProps, JsonViewerProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, ResourceHealthPanelProps, RichTextEditorProps, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TaskFilterStatus, TrendIndicatorProps };