@axiom-lattice/react-sdk 2.1.21 → 2.1.22
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 +14 -1
- package/dist/index.d.ts +14 -1
- package/dist/index.js +837 -413
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +804 -355
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -855,4 +855,17 @@ type LatticeChatShellProps = Omit<LatticeChatShellContextProviderProps, "childre
|
|
|
855
855
|
*/
|
|
856
856
|
declare const LatticeChatShell: React__default.FC<LatticeChatShellProps>;
|
|
857
857
|
|
|
858
|
-
|
|
858
|
+
interface ScheduleButtonProps {
|
|
859
|
+
/**
|
|
860
|
+
* Custom tooltip text
|
|
861
|
+
*/
|
|
862
|
+
tooltipText?: string;
|
|
863
|
+
}
|
|
864
|
+
/**
|
|
865
|
+
* ScheduleButton - A button component to view scheduled tasks for the current thread
|
|
866
|
+
* Shows a badge with the count of active scheduled tasks
|
|
867
|
+
* Opens a side panel with the full schedule viewer when clicked
|
|
868
|
+
*/
|
|
869
|
+
declare const ScheduleButton: React__default.FC<ScheduleButtonProps>;
|
|
870
|
+
|
|
871
|
+
export { type AgentChatProps, AgentConversations, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, type AssistantState, type AttachFile, AxiomLatticeProvider, type AxiomLatticeProviderProps, type ChatResponse, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, type ElementMeta, type ElementProps, type ExplorerFile, FileExplorer, type FileExplorerProps, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, MDResponse, MDViewFormItem, ScheduleButton, type ScheduleButtonProps, SideAppViewBrowser, type StreamEventHandlerOptions, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseAxiomLatticeOptions, type UseChatOptions, getElement, regsiterElement, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useAssistantContext, useAxiomLattice, useChat, useChatUIContext, useConversationContext, useLatticeChatShellContext };
|
package/dist/index.d.ts
CHANGED
|
@@ -855,4 +855,17 @@ type LatticeChatShellProps = Omit<LatticeChatShellContextProviderProps, "childre
|
|
|
855
855
|
*/
|
|
856
856
|
declare const LatticeChatShell: React__default.FC<LatticeChatShellProps>;
|
|
857
857
|
|
|
858
|
-
|
|
858
|
+
interface ScheduleButtonProps {
|
|
859
|
+
/**
|
|
860
|
+
* Custom tooltip text
|
|
861
|
+
*/
|
|
862
|
+
tooltipText?: string;
|
|
863
|
+
}
|
|
864
|
+
/**
|
|
865
|
+
* ScheduleButton - A button component to view scheduled tasks for the current thread
|
|
866
|
+
* Shows a badge with the count of active scheduled tasks
|
|
867
|
+
* Opens a side panel with the full schedule viewer when clicked
|
|
868
|
+
*/
|
|
869
|
+
declare const ScheduleButton: React__default.FC<ScheduleButtonProps>;
|
|
870
|
+
|
|
871
|
+
export { type AgentChatProps, AgentConversations, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, type AssistantState, type AttachFile, AxiomLatticeProvider, type AxiomLatticeProviderProps, type ChatResponse, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, type ElementMeta, type ElementProps, type ExplorerFile, FileExplorer, type FileExplorerProps, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, MDResponse, MDViewFormItem, ScheduleButton, type ScheduleButtonProps, SideAppViewBrowser, type StreamEventHandlerOptions, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseAxiomLatticeOptions, type UseChatOptions, getElement, regsiterElement, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useAssistantContext, useAxiomLattice, useChat, useChatUIContext, useConversationContext, useLatticeChatShellContext };
|