@axiom-lattice/react-sdk 2.1.74 → 2.1.76
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/index.d.mts +85 -5
- package/dist/index.d.ts +85 -5
- package/dist/index.js +136 -192
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +133 -193
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1228,6 +1228,21 @@ interface ResourceFolderConfig {
|
|
|
1228
1228
|
/**
|
|
1229
1229
|
* Sidebar menu item configuration
|
|
1230
1230
|
*/
|
|
1231
|
+
/**
|
|
1232
|
+
* Sidebar menu item configuration.
|
|
1233
|
+
*
|
|
1234
|
+
* Three item types:
|
|
1235
|
+
* - `"action"` — clickable button, set `builtin` for predefined behaviors
|
|
1236
|
+
* - `"drawer"` — opens a slide-out panel, set `content` + `title`
|
|
1237
|
+
* - `"route"` — opens a GenUI-registered component in the SideApp area
|
|
1238
|
+
*
|
|
1239
|
+
* When providing `sideMenuItems` or `workspaceMenuItems` to `LatticeChatShellConfig`,
|
|
1240
|
+
* your array **completely replaces** the defaults. Import `DEFAULT_MENU_ITEMS` or
|
|
1241
|
+
* `DEFAULT_WORKSPACE_MENU_ITEMS` to selectively include built-in items:
|
|
1242
|
+
* ```
|
|
1243
|
+
* sideMenuItems: DEFAULT_MENU_ITEMS.filter(i => i.id === "thread-history")
|
|
1244
|
+
* ```
|
|
1245
|
+
*/
|
|
1231
1246
|
interface SideMenuItemConfig {
|
|
1232
1247
|
/** Unique identifier for the menu item */
|
|
1233
1248
|
id: string;
|
|
@@ -1347,12 +1362,31 @@ interface LatticeChatShellConfig {
|
|
|
1347
1362
|
*/
|
|
1348
1363
|
resourceFolders?: ResourceFolderConfig[];
|
|
1349
1364
|
/**
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1365
|
+
* Chat sidebar menu items. When provided, completely replaces the
|
|
1366
|
+
* default built-in items (New Analysis, History).
|
|
1367
|
+
*
|
|
1368
|
+
* To selectively include built-in items, import and filter `DEFAULT_MENU_ITEMS`:
|
|
1369
|
+
* ```
|
|
1370
|
+
* sideMenuItems: DEFAULT_MENU_ITEMS.filter(i => i.id === "thread-history")
|
|
1371
|
+
* ```
|
|
1372
|
+
* Omit this field to use all defaults.
|
|
1373
|
+
*/
|
|
1353
1374
|
sideMenuItems?: SideMenuItemConfig[];
|
|
1354
1375
|
/**
|
|
1355
|
-
*
|
|
1376
|
+
* Workspace menu items. When provided, completely replaces the
|
|
1377
|
+
* default workspace items (Projects, Metrics, Database, etc.).
|
|
1378
|
+
*
|
|
1379
|
+
* To selectively include built-in items, import and filter `DEFAULT_WORKSPACE_MENU_ITEMS`:
|
|
1380
|
+
* ```
|
|
1381
|
+
* workspaceMenuItems: DEFAULT_WORKSPACE_MENU_ITEMS.filter(
|
|
1382
|
+
* i => ["workspace_projects", "assistants"].includes(i.id)
|
|
1383
|
+
* )
|
|
1384
|
+
* ```
|
|
1385
|
+
* Omit this field to use all defaults.
|
|
1386
|
+
*/
|
|
1387
|
+
workspaceMenuItems?: SideMenuItemConfig[];
|
|
1388
|
+
/**
|
|
1389
|
+
* Whether to enable the database picker slot in the chat sender
|
|
1356
1390
|
* When enabled, shows a database selection button in the sender footer
|
|
1357
1391
|
* Defaults to true
|
|
1358
1392
|
*/
|
|
@@ -1393,6 +1427,11 @@ interface LatticeChatShellConfig {
|
|
|
1393
1427
|
* Defaults to true
|
|
1394
1428
|
*/
|
|
1395
1429
|
sidebarDefaultExpanded?: boolean;
|
|
1430
|
+
/**
|
|
1431
|
+
* Whether workspace menu is expanded by default
|
|
1432
|
+
* Defaults to true
|
|
1433
|
+
*/
|
|
1434
|
+
workspaceMenuDefaultExpanded?: boolean;
|
|
1396
1435
|
/**
|
|
1397
1436
|
* Whether to show the expand/collapse toggle button
|
|
1398
1437
|
* Defaults to true
|
|
@@ -1550,6 +1589,25 @@ declare const AgentConversations: React__default.FC<AgentConversationsProps>;
|
|
|
1550
1589
|
|
|
1551
1590
|
declare const MetricsConfigDrawerContent: React__default.FC;
|
|
1552
1591
|
|
|
1592
|
+
/**
|
|
1593
|
+
* Built-in default menu items for the workspace shell.
|
|
1594
|
+
*
|
|
1595
|
+
* Contains 12 route/action items organized in groups:
|
|
1596
|
+
* - Projects
|
|
1597
|
+
* - DataSource: Metrics, Database
|
|
1598
|
+
* - Process: Automations, Runtime, Inbox, Eval
|
|
1599
|
+
* - Settings: Assistants, Skills, MCP, Tools
|
|
1600
|
+
* - Account: Switch tenant
|
|
1601
|
+
*
|
|
1602
|
+
* Pass a filtered subset to `workspaceMenuItems` in `LatticeChatShellConfig`:
|
|
1603
|
+
* ```
|
|
1604
|
+
* workspaceMenuItems: DEFAULT_WORKSPACE_MENU_ITEMS.filter(
|
|
1605
|
+
* i => ["workspace_projects", "assistants"].includes(i.id)
|
|
1606
|
+
* )
|
|
1607
|
+
* ```
|
|
1608
|
+
* Or omit `workspaceMenuItems` entirely to use these defaults as-is.
|
|
1609
|
+
*/
|
|
1610
|
+
declare const DEFAULT_WORKSPACE_MENU_ITEMS: SideMenuItemConfig[];
|
|
1553
1611
|
interface WorkspaceResourceManagerProps {
|
|
1554
1612
|
workspaceId: string;
|
|
1555
1613
|
workspaceName?: string;
|
|
@@ -1583,6 +1641,28 @@ type LatticeChatShellProps = Omit<LatticeChatShellContextProviderProps, "childre
|
|
|
1583
1641
|
*/
|
|
1584
1642
|
declare const LatticeChatShell: React__default.FC<LatticeChatShellProps>;
|
|
1585
1643
|
|
|
1644
|
+
interface ChatSidebarProps {
|
|
1645
|
+
onSettingsClick?: () => void;
|
|
1646
|
+
defaultCollapsed?: boolean;
|
|
1647
|
+
/** @deprecated Use `sideMenuItems` on `LatticeChatShellConfig` instead. */
|
|
1648
|
+
customMenuItems?: SideMenuItemConfig[];
|
|
1649
|
+
}
|
|
1650
|
+
/**
|
|
1651
|
+
* Built-in default menu items for the chat sidebar.
|
|
1652
|
+
*
|
|
1653
|
+
* Contains two items:
|
|
1654
|
+
* - "new-analysis" (action) — creates a new analysis thread
|
|
1655
|
+
* - "thread-history" (drawer) — inline conversation history panel
|
|
1656
|
+
*
|
|
1657
|
+
* Pass a filtered subset to `sideMenuItems` in `LatticeChatShellConfig`:
|
|
1658
|
+
* ```
|
|
1659
|
+
* sideMenuItems: DEFAULT_MENU_ITEMS.filter(i => i.id !== "new-analysis")
|
|
1660
|
+
* ```
|
|
1661
|
+
* Or omit `sideMenuItems` entirely to use these defaults as-is.
|
|
1662
|
+
*/
|
|
1663
|
+
declare const DEFAULT_MENU_ITEMS: SideMenuItemConfig[];
|
|
1664
|
+
declare const ChatSidebar: React__default.FC<ChatSidebarProps>;
|
|
1665
|
+
|
|
1586
1666
|
declare const ChannelInstallationsDrawerContent: React__default.FC;
|
|
1587
1667
|
|
|
1588
1668
|
interface ScheduleButtonProps {
|
|
@@ -2213,4 +2293,4 @@ type IframeMessage = {
|
|
|
2213
2293
|
};
|
|
2214
2294
|
declare function generateIframeSrcdoc(): string;
|
|
2215
2295
|
|
|
2216
|
-
export { type AgentChatProps, AgentConversations, type AgentConversationsProps, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, AssistantFlow, type AssistantFlowProps, AssistantNode, type AssistantNodeData, type AssistantState, type AttachFile, type AuthContextValue, AuthProvider, AxiomLatticeProvider, type AxiomLatticeProviderProps, type BalanceResult, ChangePasswordModal, type ChangePasswordModalProps, ChannelInstallationsDrawerContent, type ChatResponse, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, CreateAssistantModal, DEFAULT_MIDDLEWARE_TYPES, type ElementMeta, type ElementProps, EvalPanel, EvalRunResults, EvalSuiteCardList, EvalSuiteDetail, type ExplorerFile, FileExplorer, type FileExplorerProps, type IframeMessage, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, LoginForm, type LoginFormProps, LoginPage, MDResponse, MDViewFormItem, MetricsConfigDrawerContent, type MiddlewareConfigDefinition, type MiddlewareConfigSchema, type MiddlewareConfigSchemaProperty, type MiddlewareToolDefinition, type MiddlewareTypeDefinition, type ModelConfig, type ModelInfo, ModelSelector, type ModelSelectorProps, type PendingMessage, ProtectedRoute, type ProtectedRouteProps, type QuickPromptCategory, type QuickPromptItem, RegisterForm, type RegisterFormProps, type ResourceFolderConfig, type SanitizerConfig, ScheduleButton, type ScheduleButtonProps, SideAppViewBrowser, type SideMenuItemConfig, type SideMenuItemType, SkillCategoryPrompts, type SkillCategoryPromptsProps, SkillFlow, type SkillFlowProps, SkillNode, type SkillNodeData, type StreamEventHandlerOptions, type StreamingError, StreamingHTMLRenderer, type StreamingHTMLRendererProps, TenantSelector, type TenantSelectorProps, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseApiOptions, type UseApiReturn, type UseAxiomLatticeOptions, type UseChatOptions, type UseTenantsOptions, type UseTenantsReturn, type UseUsersOptions, type UseUsersReturn, UserProfile, type UserProfileProps, type UserTenantInfo, WorkspaceResourceManager, type WorkspaceResourceManagerProps, WorkspaceResourceUIContext, animation, axiomAntdTheme, axiomAntdThemeDark, axiomTokens, colors, generateIframeSrcdoc, generateLabelFromMessage, getAxiomAntdTheme, getElement, radius, regsiterElement, shadows, spacing, typography, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useApi, useAssistantContext, useAuth, useAuthOptional, useAxiomLattice, useAxiomTheme, useChat, useChatUIContext, useClient, useConversationContext, useEvalCases, useEvalProjects, useEvalRunStream, useEvalRuns, useEvalSuites, useLatticeChatShellContext, useTenants, useUsers };
|
|
2296
|
+
export { type AgentChatProps, AgentConversations, type AgentConversationsProps, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, AssistantFlow, type AssistantFlowProps, AssistantNode, type AssistantNodeData, type AssistantState, type AttachFile, type AuthContextValue, AuthProvider, AxiomLatticeProvider, type AxiomLatticeProviderProps, type BalanceResult, ChangePasswordModal, type ChangePasswordModalProps, ChannelInstallationsDrawerContent, type ChatResponse, ChatSidebar, type ChatSidebarProps, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, CreateAssistantModal, DEFAULT_MENU_ITEMS, DEFAULT_MIDDLEWARE_TYPES, DEFAULT_WORKSPACE_MENU_ITEMS, type ElementMeta, type ElementProps, EvalPanel, EvalRunResults, EvalSuiteCardList, EvalSuiteDetail, type ExplorerFile, FileExplorer, type FileExplorerProps, type IframeMessage, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, LoginForm, type LoginFormProps, LoginPage, MDResponse, MDViewFormItem, MetricsConfigDrawerContent, type MiddlewareConfigDefinition, type MiddlewareConfigSchema, type MiddlewareConfigSchemaProperty, type MiddlewareToolDefinition, type MiddlewareTypeDefinition, type ModelConfig, type ModelInfo, ModelSelector, type ModelSelectorProps, type PendingMessage, ProtectedRoute, type ProtectedRouteProps, type QuickPromptCategory, type QuickPromptItem, RegisterForm, type RegisterFormProps, type ResourceFolderConfig, type SanitizerConfig, ScheduleButton, type ScheduleButtonProps, SideAppViewBrowser, type SideMenuItemConfig, type SideMenuItemType, SkillCategoryPrompts, type SkillCategoryPromptsProps, SkillFlow, type SkillFlowProps, SkillNode, type SkillNodeData, type StreamEventHandlerOptions, type StreamingError, StreamingHTMLRenderer, type StreamingHTMLRendererProps, TenantSelector, type TenantSelectorProps, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseApiOptions, type UseApiReturn, type UseAxiomLatticeOptions, type UseChatOptions, type UseTenantsOptions, type UseTenantsReturn, type UseUsersOptions, type UseUsersReturn, UserProfile, type UserProfileProps, type UserTenantInfo, WorkspaceResourceManager, type WorkspaceResourceManagerProps, WorkspaceResourceUIContext, animation, axiomAntdTheme, axiomAntdThemeDark, axiomTokens, colors, generateIframeSrcdoc, generateLabelFromMessage, getAxiomAntdTheme, getElement, radius, regsiterElement, shadows, spacing, typography, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useApi, useAssistantContext, useAuth, useAuthOptional, useAxiomLattice, useAxiomTheme, useChat, useChatUIContext, useClient, useConversationContext, useEvalCases, useEvalProjects, useEvalRunStream, useEvalRuns, useEvalSuites, useLatticeChatShellContext, useTenants, useUsers };
|
package/dist/index.d.ts
CHANGED
|
@@ -1228,6 +1228,21 @@ interface ResourceFolderConfig {
|
|
|
1228
1228
|
/**
|
|
1229
1229
|
* Sidebar menu item configuration
|
|
1230
1230
|
*/
|
|
1231
|
+
/**
|
|
1232
|
+
* Sidebar menu item configuration.
|
|
1233
|
+
*
|
|
1234
|
+
* Three item types:
|
|
1235
|
+
* - `"action"` — clickable button, set `builtin` for predefined behaviors
|
|
1236
|
+
* - `"drawer"` — opens a slide-out panel, set `content` + `title`
|
|
1237
|
+
* - `"route"` — opens a GenUI-registered component in the SideApp area
|
|
1238
|
+
*
|
|
1239
|
+
* When providing `sideMenuItems` or `workspaceMenuItems` to `LatticeChatShellConfig`,
|
|
1240
|
+
* your array **completely replaces** the defaults. Import `DEFAULT_MENU_ITEMS` or
|
|
1241
|
+
* `DEFAULT_WORKSPACE_MENU_ITEMS` to selectively include built-in items:
|
|
1242
|
+
* ```
|
|
1243
|
+
* sideMenuItems: DEFAULT_MENU_ITEMS.filter(i => i.id === "thread-history")
|
|
1244
|
+
* ```
|
|
1245
|
+
*/
|
|
1231
1246
|
interface SideMenuItemConfig {
|
|
1232
1247
|
/** Unique identifier for the menu item */
|
|
1233
1248
|
id: string;
|
|
@@ -1347,12 +1362,31 @@ interface LatticeChatShellConfig {
|
|
|
1347
1362
|
*/
|
|
1348
1363
|
resourceFolders?: ResourceFolderConfig[];
|
|
1349
1364
|
/**
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1365
|
+
* Chat sidebar menu items. When provided, completely replaces the
|
|
1366
|
+
* default built-in items (New Analysis, History).
|
|
1367
|
+
*
|
|
1368
|
+
* To selectively include built-in items, import and filter `DEFAULT_MENU_ITEMS`:
|
|
1369
|
+
* ```
|
|
1370
|
+
* sideMenuItems: DEFAULT_MENU_ITEMS.filter(i => i.id === "thread-history")
|
|
1371
|
+
* ```
|
|
1372
|
+
* Omit this field to use all defaults.
|
|
1373
|
+
*/
|
|
1353
1374
|
sideMenuItems?: SideMenuItemConfig[];
|
|
1354
1375
|
/**
|
|
1355
|
-
*
|
|
1376
|
+
* Workspace menu items. When provided, completely replaces the
|
|
1377
|
+
* default workspace items (Projects, Metrics, Database, etc.).
|
|
1378
|
+
*
|
|
1379
|
+
* To selectively include built-in items, import and filter `DEFAULT_WORKSPACE_MENU_ITEMS`:
|
|
1380
|
+
* ```
|
|
1381
|
+
* workspaceMenuItems: DEFAULT_WORKSPACE_MENU_ITEMS.filter(
|
|
1382
|
+
* i => ["workspace_projects", "assistants"].includes(i.id)
|
|
1383
|
+
* )
|
|
1384
|
+
* ```
|
|
1385
|
+
* Omit this field to use all defaults.
|
|
1386
|
+
*/
|
|
1387
|
+
workspaceMenuItems?: SideMenuItemConfig[];
|
|
1388
|
+
/**
|
|
1389
|
+
* Whether to enable the database picker slot in the chat sender
|
|
1356
1390
|
* When enabled, shows a database selection button in the sender footer
|
|
1357
1391
|
* Defaults to true
|
|
1358
1392
|
*/
|
|
@@ -1393,6 +1427,11 @@ interface LatticeChatShellConfig {
|
|
|
1393
1427
|
* Defaults to true
|
|
1394
1428
|
*/
|
|
1395
1429
|
sidebarDefaultExpanded?: boolean;
|
|
1430
|
+
/**
|
|
1431
|
+
* Whether workspace menu is expanded by default
|
|
1432
|
+
* Defaults to true
|
|
1433
|
+
*/
|
|
1434
|
+
workspaceMenuDefaultExpanded?: boolean;
|
|
1396
1435
|
/**
|
|
1397
1436
|
* Whether to show the expand/collapse toggle button
|
|
1398
1437
|
* Defaults to true
|
|
@@ -1550,6 +1589,25 @@ declare const AgentConversations: React__default.FC<AgentConversationsProps>;
|
|
|
1550
1589
|
|
|
1551
1590
|
declare const MetricsConfigDrawerContent: React__default.FC;
|
|
1552
1591
|
|
|
1592
|
+
/**
|
|
1593
|
+
* Built-in default menu items for the workspace shell.
|
|
1594
|
+
*
|
|
1595
|
+
* Contains 12 route/action items organized in groups:
|
|
1596
|
+
* - Projects
|
|
1597
|
+
* - DataSource: Metrics, Database
|
|
1598
|
+
* - Process: Automations, Runtime, Inbox, Eval
|
|
1599
|
+
* - Settings: Assistants, Skills, MCP, Tools
|
|
1600
|
+
* - Account: Switch tenant
|
|
1601
|
+
*
|
|
1602
|
+
* Pass a filtered subset to `workspaceMenuItems` in `LatticeChatShellConfig`:
|
|
1603
|
+
* ```
|
|
1604
|
+
* workspaceMenuItems: DEFAULT_WORKSPACE_MENU_ITEMS.filter(
|
|
1605
|
+
* i => ["workspace_projects", "assistants"].includes(i.id)
|
|
1606
|
+
* )
|
|
1607
|
+
* ```
|
|
1608
|
+
* Or omit `workspaceMenuItems` entirely to use these defaults as-is.
|
|
1609
|
+
*/
|
|
1610
|
+
declare const DEFAULT_WORKSPACE_MENU_ITEMS: SideMenuItemConfig[];
|
|
1553
1611
|
interface WorkspaceResourceManagerProps {
|
|
1554
1612
|
workspaceId: string;
|
|
1555
1613
|
workspaceName?: string;
|
|
@@ -1583,6 +1641,28 @@ type LatticeChatShellProps = Omit<LatticeChatShellContextProviderProps, "childre
|
|
|
1583
1641
|
*/
|
|
1584
1642
|
declare const LatticeChatShell: React__default.FC<LatticeChatShellProps>;
|
|
1585
1643
|
|
|
1644
|
+
interface ChatSidebarProps {
|
|
1645
|
+
onSettingsClick?: () => void;
|
|
1646
|
+
defaultCollapsed?: boolean;
|
|
1647
|
+
/** @deprecated Use `sideMenuItems` on `LatticeChatShellConfig` instead. */
|
|
1648
|
+
customMenuItems?: SideMenuItemConfig[];
|
|
1649
|
+
}
|
|
1650
|
+
/**
|
|
1651
|
+
* Built-in default menu items for the chat sidebar.
|
|
1652
|
+
*
|
|
1653
|
+
* Contains two items:
|
|
1654
|
+
* - "new-analysis" (action) — creates a new analysis thread
|
|
1655
|
+
* - "thread-history" (drawer) — inline conversation history panel
|
|
1656
|
+
*
|
|
1657
|
+
* Pass a filtered subset to `sideMenuItems` in `LatticeChatShellConfig`:
|
|
1658
|
+
* ```
|
|
1659
|
+
* sideMenuItems: DEFAULT_MENU_ITEMS.filter(i => i.id !== "new-analysis")
|
|
1660
|
+
* ```
|
|
1661
|
+
* Or omit `sideMenuItems` entirely to use these defaults as-is.
|
|
1662
|
+
*/
|
|
1663
|
+
declare const DEFAULT_MENU_ITEMS: SideMenuItemConfig[];
|
|
1664
|
+
declare const ChatSidebar: React__default.FC<ChatSidebarProps>;
|
|
1665
|
+
|
|
1586
1666
|
declare const ChannelInstallationsDrawerContent: React__default.FC;
|
|
1587
1667
|
|
|
1588
1668
|
interface ScheduleButtonProps {
|
|
@@ -2213,4 +2293,4 @@ type IframeMessage = {
|
|
|
2213
2293
|
};
|
|
2214
2294
|
declare function generateIframeSrcdoc(): string;
|
|
2215
2295
|
|
|
2216
|
-
export { type AgentChatProps, AgentConversations, type AgentConversationsProps, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, AssistantFlow, type AssistantFlowProps, AssistantNode, type AssistantNodeData, type AssistantState, type AttachFile, type AuthContextValue, AuthProvider, AxiomLatticeProvider, type AxiomLatticeProviderProps, type BalanceResult, ChangePasswordModal, type ChangePasswordModalProps, ChannelInstallationsDrawerContent, type ChatResponse, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, CreateAssistantModal, DEFAULT_MIDDLEWARE_TYPES, type ElementMeta, type ElementProps, EvalPanel, EvalRunResults, EvalSuiteCardList, EvalSuiteDetail, type ExplorerFile, FileExplorer, type FileExplorerProps, type IframeMessage, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, LoginForm, type LoginFormProps, LoginPage, MDResponse, MDViewFormItem, MetricsConfigDrawerContent, type MiddlewareConfigDefinition, type MiddlewareConfigSchema, type MiddlewareConfigSchemaProperty, type MiddlewareToolDefinition, type MiddlewareTypeDefinition, type ModelConfig, type ModelInfo, ModelSelector, type ModelSelectorProps, type PendingMessage, ProtectedRoute, type ProtectedRouteProps, type QuickPromptCategory, type QuickPromptItem, RegisterForm, type RegisterFormProps, type ResourceFolderConfig, type SanitizerConfig, ScheduleButton, type ScheduleButtonProps, SideAppViewBrowser, type SideMenuItemConfig, type SideMenuItemType, SkillCategoryPrompts, type SkillCategoryPromptsProps, SkillFlow, type SkillFlowProps, SkillNode, type SkillNodeData, type StreamEventHandlerOptions, type StreamingError, StreamingHTMLRenderer, type StreamingHTMLRendererProps, TenantSelector, type TenantSelectorProps, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseApiOptions, type UseApiReturn, type UseAxiomLatticeOptions, type UseChatOptions, type UseTenantsOptions, type UseTenantsReturn, type UseUsersOptions, type UseUsersReturn, UserProfile, type UserProfileProps, type UserTenantInfo, WorkspaceResourceManager, type WorkspaceResourceManagerProps, WorkspaceResourceUIContext, animation, axiomAntdTheme, axiomAntdThemeDark, axiomTokens, colors, generateIframeSrcdoc, generateLabelFromMessage, getAxiomAntdTheme, getElement, radius, regsiterElement, shadows, spacing, typography, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useApi, useAssistantContext, useAuth, useAuthOptional, useAxiomLattice, useAxiomTheme, useChat, useChatUIContext, useClient, useConversationContext, useEvalCases, useEvalProjects, useEvalRunStream, useEvalRuns, useEvalSuites, useLatticeChatShellContext, useTenants, useUsers };
|
|
2296
|
+
export { type AgentChatProps, AgentConversations, type AgentConversationsProps, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, AssistantFlow, type AssistantFlowProps, AssistantNode, type AssistantNodeData, type AssistantState, type AttachFile, type AuthContextValue, AuthProvider, AxiomLatticeProvider, type AxiomLatticeProviderProps, type BalanceResult, ChangePasswordModal, type ChangePasswordModalProps, ChannelInstallationsDrawerContent, type ChatResponse, ChatSidebar, type ChatSidebarProps, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, CreateAssistantModal, DEFAULT_MENU_ITEMS, DEFAULT_MIDDLEWARE_TYPES, DEFAULT_WORKSPACE_MENU_ITEMS, type ElementMeta, type ElementProps, EvalPanel, EvalRunResults, EvalSuiteCardList, EvalSuiteDetail, type ExplorerFile, FileExplorer, type FileExplorerProps, type IframeMessage, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, LoginForm, type LoginFormProps, LoginPage, MDResponse, MDViewFormItem, MetricsConfigDrawerContent, type MiddlewareConfigDefinition, type MiddlewareConfigSchema, type MiddlewareConfigSchemaProperty, type MiddlewareToolDefinition, type MiddlewareTypeDefinition, type ModelConfig, type ModelInfo, ModelSelector, type ModelSelectorProps, type PendingMessage, ProtectedRoute, type ProtectedRouteProps, type QuickPromptCategory, type QuickPromptItem, RegisterForm, type RegisterFormProps, type ResourceFolderConfig, type SanitizerConfig, ScheduleButton, type ScheduleButtonProps, SideAppViewBrowser, type SideMenuItemConfig, type SideMenuItemType, SkillCategoryPrompts, type SkillCategoryPromptsProps, SkillFlow, type SkillFlowProps, SkillNode, type SkillNodeData, type StreamEventHandlerOptions, type StreamingError, StreamingHTMLRenderer, type StreamingHTMLRendererProps, TenantSelector, type TenantSelectorProps, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseApiOptions, type UseApiReturn, type UseAxiomLatticeOptions, type UseChatOptions, type UseTenantsOptions, type UseTenantsReturn, type UseUsersOptions, type UseUsersReturn, UserProfile, type UserProfileProps, type UserTenantInfo, WorkspaceResourceManager, type WorkspaceResourceManagerProps, WorkspaceResourceUIContext, animation, axiomAntdTheme, axiomAntdThemeDark, axiomTokens, colors, generateIframeSrcdoc, generateLabelFromMessage, getAxiomAntdTheme, getElement, radius, regsiterElement, shadows, spacing, typography, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useApi, useAssistantContext, useAuth, useAuthOptional, useAxiomLattice, useAxiomTheme, useChat, useChatUIContext, useClient, useConversationContext, useEvalCases, useEvalProjects, useEvalRunStream, useEvalRuns, useEvalSuites, useLatticeChatShellContext, useTenants, useUsers };
|