@iota-uz/sdk 0.4.10 → 0.4.11
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/bichat/index.cjs +898 -416
- package/dist/bichat/index.cjs.map +1 -1
- package/dist/bichat/index.d.cts +49 -1
- package/dist/bichat/index.d.ts +49 -1
- package/dist/bichat/index.mjs +897 -419
- package/dist/bichat/index.mjs.map +1 -1
- package/package.json +1 -1
- package/tailwind/compiled.css +1 -1
package/dist/bichat/index.d.cts
CHANGED
|
@@ -1390,6 +1390,36 @@ interface SessionSkeletonProps {
|
|
|
1390
1390
|
}
|
|
1391
1391
|
declare function SessionSkeleton({ count }: SessionSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
1392
1392
|
|
|
1393
|
+
/**
|
|
1394
|
+
* useSidebarState — mobile breakpoint detection + drawer open/close state.
|
|
1395
|
+
* SSR-safe. Auto-closes drawer when resizing to desktop.
|
|
1396
|
+
*/
|
|
1397
|
+
interface UseSidebarStateReturn {
|
|
1398
|
+
isMobile: boolean;
|
|
1399
|
+
isMobileOpen: boolean;
|
|
1400
|
+
openMobile: () => void;
|
|
1401
|
+
closeMobile: () => void;
|
|
1402
|
+
toggleMobile: () => void;
|
|
1403
|
+
}
|
|
1404
|
+
declare function useSidebarState(): UseSidebarStateReturn;
|
|
1405
|
+
|
|
1406
|
+
interface SidebarDrawerProps {
|
|
1407
|
+
onClose?: () => void;
|
|
1408
|
+
}
|
|
1409
|
+
interface BiChatLayoutProps {
|
|
1410
|
+
/** Render function for the sidebar. Receives `{ onClose }` when in mobile drawer mode. */
|
|
1411
|
+
renderSidebar: (props: SidebarDrawerProps) => react__default.ReactNode;
|
|
1412
|
+
/** Main page content */
|
|
1413
|
+
children: react__default.ReactNode;
|
|
1414
|
+
/** Callback for Cmd+N keyboard shortcut */
|
|
1415
|
+
onNewChat?: () => void;
|
|
1416
|
+
/** Key for AnimatePresence page transitions (e.g. location.pathname). Omit to disable transitions. */
|
|
1417
|
+
routeKey?: string;
|
|
1418
|
+
/** Custom class for the root container */
|
|
1419
|
+
className?: string;
|
|
1420
|
+
}
|
|
1421
|
+
declare function BiChatLayout({ renderSidebar, children, onNewChat, routeKey, className, }: BiChatLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1422
|
+
|
|
1393
1423
|
interface SystemMessageProps {
|
|
1394
1424
|
content: string;
|
|
1395
1425
|
createdAt: string;
|
|
@@ -3186,4 +3216,22 @@ declare const CHART_VISUAL: FileVisual;
|
|
|
3186
3216
|
*/
|
|
3187
3217
|
declare function groupSessionsByDate(sessions: Session$1[], t?: (key: string) => string): SessionGroup[];
|
|
3188
3218
|
|
|
3189
|
-
|
|
3219
|
+
/**
|
|
3220
|
+
* Error display utilities for structured RPC error handling.
|
|
3221
|
+
* Distinguishes permission-denied errors (amber styling) from generic errors (red styling).
|
|
3222
|
+
*/
|
|
3223
|
+
interface RPCErrorDisplay {
|
|
3224
|
+
title: string;
|
|
3225
|
+
description: string;
|
|
3226
|
+
isPermissionDenied: boolean;
|
|
3227
|
+
}
|
|
3228
|
+
/**
|
|
3229
|
+
* Check whether an error represents a permission-denied / forbidden response.
|
|
3230
|
+
*/
|
|
3231
|
+
declare function isPermissionDeniedError(error: unknown): boolean;
|
|
3232
|
+
/**
|
|
3233
|
+
* Convert an unknown error into a structured display object.
|
|
3234
|
+
*/
|
|
3235
|
+
declare function toErrorDisplay(error: unknown, fallbackTitle: string): RPCErrorDisplay;
|
|
3236
|
+
|
|
3237
|
+
export { ATTACHMENT_ACCEPT_ATTRIBUTE, ActionButton, type ActionButtonIconProps, type ActionButtonLabelProps, type ActionButtonRootProps, type ActionButtonTooltipProps, _default$1 as Alert, AllChatsList, type AppConfig, _default as ArchiveBanner, ArchivedChatList, type Artifact$1 as Artifact, type AsChildProps, AssistantMessage, type AssistantMessageActionsSlotProps, type AssistantMessageArtifactsSlotProps, type AssistantMessageAvatarSlotProps, type AssistantMessageChartsSlotProps, type AssistantMessageClassNames, type AssistantMessageCodeOutputsSlotProps, type AssistantMessageContentSlotProps, type AssistantMessageExplanationSlotProps, type AssistantMessageProps, type AssistantMessageSlots, type AssistantMessageSourcesSlotProps, type AssistantTurn$1 as AssistantTurn, AssistantTurnView, type AssistantTurnViewProps, type Attachment$1 as Attachment, MemoizedAttachmentGrid as AttachmentGrid, AttachmentPreview, AttachmentUpload, Avatar, type AvatarFallbackProps, type AvatarImageProps, type AvatarRootProps, type BiChatConfig, BiChatLayout, type BiChatLayoutProps, type BichatRPC, Bubble, type BubbleContentProps, type BubbleFooterProps, type BubbleHeaderProps, type BubbleMetadataProps, type BubbleRootProps, type BubbleVariant, CHART_VISUAL, ChartCard, type ChartData, type ChartSeries, type ChatDataSource, ChatHeader, type ChatInputStateValue, type ChatMessagingStateValue, ChatSession, type ChatSessionContextValue, ChatSessionProvider, type ChatSessionStateValue, type Citation$1 as Citation, MemoizedCodeBlock as CodeBlock, type CodeOutput$1 as CodeOutput, CodeOutputsPanel, CompactionDoodle, ConfigProvider, ConfirmModal, type ConfirmModalProps, ConfirmationStep, type ConversationTurn$1 as ConversationTurn, DateGroupHeader, DebugPanel, type DebugPanelProps, DefaultErrorContent, DownloadCard, MemoizedEditableText as EditableText, type EditableTextProps, type EditableTextRef, MemoizedEmptyState as EmptyState, type EmptyStateProps, ErrorBoundary, type FileValidationError, type FileVisual, HttpDataSource, type HttpDataSourceConfig, type ImageAttachment, type ImageLoadingStatus, ImageModal, InlineQuestionForm, type IotaContext, IotaContextProvider, ListItemSkeleton, MemoizedLoadingSpinner as LoadingSpinner, type LocaleContext, MemoizedMarkdownRenderer as MarkdownRenderer, MessageActions, MessageInput, type MessageInputProps, type MessageInputRef, MessageList, MessageRole, type PendingQuestion$1 as PendingQuestion, PermissionGuard, type PermissionGuardProps, type Question, type QuestionAnswerData, type QuestionAnswers, QuestionForm, type QuestionOption, QuestionStep, type QueuedMessage, type RPCErrorDisplay, RateLimiter, type RateLimiterConfig, RetryActionArea, ScreenReaderAnnouncer, ScrollToBottomButton, MemoizedSearchInput as SearchInput, type SearchInputProps, type Session$1 as Session, type SessionArtifact, SessionArtifactList, SessionArtifactPreview, SessionArtifactsPanel, type SessionGroup, SessionItem, type SessionListResult$1 as SessionListResult, SessionSkeleton, type SessionUser, type ShortcutConfig, Sidebar, type SidebarDrawerProps, type SidebarProps, MemoizedSkeleton as Skeleton, SkeletonAvatar, SkeletonCard, SkeletonGroup, type SkeletonGroupProps, type SkeletonProps, SkeletonText, SkipLink, Slot, type SlotProps, SourcesPanel, type StreamChunk, StreamError, StreamingCursor, SystemMessage, MemoizedTabBar as TabBar, TableExportButton, TableWithExport, type TenantContext, type Theme, type ThemeBorderRadius, type ThemeColors, ThemeProvider, type ThemeSpacing, Toast, ToastContainer, type ToastItem, type ToastProps, type ToastType, type ToolCall$1 as ToolCall, TouchContextMenu, Turn, type TurnActionsProps, type TurnAssistantProps, TurnBubble, type TurnBubbleClassNames, type TurnBubbleProps, type TurnRootProps, type TurnTimestampProps, type TurnUserProps, MemoizedTypingIndicator as TypingIndicator, type TypingIndicatorProps, type UseAttachmentsOptions, type UseAttachmentsReturn, type UseAutoScrollOptions, type UseAutoScrollReturn, type UseImageGalleryOptions, type UseImageGalleryReturn, type UseMarkdownCopyOptions, type UseMarkdownCopyReturn, type UseMessageActionsOptions, type UseMessageActionsReturn, type UseSidebarStateReturn, type UseToastReturn, MemoizedUserAvatar as UserAvatar, type UserAvatarProps, type UserContext, MemoizedUserFilter as UserFilter, UserMessage, type UserMessageActionsSlotProps, type UserMessageAttachmentsSlotProps, type UserMessageAvatarSlotProps, type UserMessageClassNames, type UserMessageContentSlotProps, type UserMessageProps, type UserMessageSlots, type UserTurn$1 as UserTurn, UserTurnView, type UserTurnViewProps, WelcomeContent, addCSRFHeader, backdropVariants, buttonVariants, convertToBase64, createDataUrl, createHeadersWithCSRF, createHttpDataSource, darkTheme, dropdownVariants, errorMessageVariants, fadeInUpVariants, fadeInVariants, floatingButtonVariants, formatFileSize, getCSRFToken, getFileVisual, getValidChildren, groupSessionsByDate, hasPermission, isImageMimeType, isPermissionDeniedError, lightTheme, listItemVariants, messageContainerVariants, messageVariants, scaleFadeVariants, sessionItemVariants, staggerContainerVariants, toErrorDisplay, toastVariants, typingDotVariants, useActionButtonContext, useAttachments, useAutoScroll, useAvatarContext, useBubbleContext, useChatInput, useChatMessaging, useChatSession, useConfig, useFocusTrap, useImageGallery, useIotaContext, useKeyboardShortcuts, useLongPress, useMarkdownCopy, useMessageActions, useModalLock, useOptionalChatMessaging, useRequiredConfig, useScrollToBottom, useSidebarState, useStreaming, useTheme, useToast, useTranslation, useTurnContext, validateAttachmentFile, validateFileCount, validateImageFile, verbTransitionVariants };
|
package/dist/bichat/index.d.ts
CHANGED
|
@@ -1390,6 +1390,36 @@ interface SessionSkeletonProps {
|
|
|
1390
1390
|
}
|
|
1391
1391
|
declare function SessionSkeleton({ count }: SessionSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
1392
1392
|
|
|
1393
|
+
/**
|
|
1394
|
+
* useSidebarState — mobile breakpoint detection + drawer open/close state.
|
|
1395
|
+
* SSR-safe. Auto-closes drawer when resizing to desktop.
|
|
1396
|
+
*/
|
|
1397
|
+
interface UseSidebarStateReturn {
|
|
1398
|
+
isMobile: boolean;
|
|
1399
|
+
isMobileOpen: boolean;
|
|
1400
|
+
openMobile: () => void;
|
|
1401
|
+
closeMobile: () => void;
|
|
1402
|
+
toggleMobile: () => void;
|
|
1403
|
+
}
|
|
1404
|
+
declare function useSidebarState(): UseSidebarStateReturn;
|
|
1405
|
+
|
|
1406
|
+
interface SidebarDrawerProps {
|
|
1407
|
+
onClose?: () => void;
|
|
1408
|
+
}
|
|
1409
|
+
interface BiChatLayoutProps {
|
|
1410
|
+
/** Render function for the sidebar. Receives `{ onClose }` when in mobile drawer mode. */
|
|
1411
|
+
renderSidebar: (props: SidebarDrawerProps) => react__default.ReactNode;
|
|
1412
|
+
/** Main page content */
|
|
1413
|
+
children: react__default.ReactNode;
|
|
1414
|
+
/** Callback for Cmd+N keyboard shortcut */
|
|
1415
|
+
onNewChat?: () => void;
|
|
1416
|
+
/** Key for AnimatePresence page transitions (e.g. location.pathname). Omit to disable transitions. */
|
|
1417
|
+
routeKey?: string;
|
|
1418
|
+
/** Custom class for the root container */
|
|
1419
|
+
className?: string;
|
|
1420
|
+
}
|
|
1421
|
+
declare function BiChatLayout({ renderSidebar, children, onNewChat, routeKey, className, }: BiChatLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1422
|
+
|
|
1393
1423
|
interface SystemMessageProps {
|
|
1394
1424
|
content: string;
|
|
1395
1425
|
createdAt: string;
|
|
@@ -3186,4 +3216,22 @@ declare const CHART_VISUAL: FileVisual;
|
|
|
3186
3216
|
*/
|
|
3187
3217
|
declare function groupSessionsByDate(sessions: Session$1[], t?: (key: string) => string): SessionGroup[];
|
|
3188
3218
|
|
|
3189
|
-
|
|
3219
|
+
/**
|
|
3220
|
+
* Error display utilities for structured RPC error handling.
|
|
3221
|
+
* Distinguishes permission-denied errors (amber styling) from generic errors (red styling).
|
|
3222
|
+
*/
|
|
3223
|
+
interface RPCErrorDisplay {
|
|
3224
|
+
title: string;
|
|
3225
|
+
description: string;
|
|
3226
|
+
isPermissionDenied: boolean;
|
|
3227
|
+
}
|
|
3228
|
+
/**
|
|
3229
|
+
* Check whether an error represents a permission-denied / forbidden response.
|
|
3230
|
+
*/
|
|
3231
|
+
declare function isPermissionDeniedError(error: unknown): boolean;
|
|
3232
|
+
/**
|
|
3233
|
+
* Convert an unknown error into a structured display object.
|
|
3234
|
+
*/
|
|
3235
|
+
declare function toErrorDisplay(error: unknown, fallbackTitle: string): RPCErrorDisplay;
|
|
3236
|
+
|
|
3237
|
+
export { ATTACHMENT_ACCEPT_ATTRIBUTE, ActionButton, type ActionButtonIconProps, type ActionButtonLabelProps, type ActionButtonRootProps, type ActionButtonTooltipProps, _default$1 as Alert, AllChatsList, type AppConfig, _default as ArchiveBanner, ArchivedChatList, type Artifact$1 as Artifact, type AsChildProps, AssistantMessage, type AssistantMessageActionsSlotProps, type AssistantMessageArtifactsSlotProps, type AssistantMessageAvatarSlotProps, type AssistantMessageChartsSlotProps, type AssistantMessageClassNames, type AssistantMessageCodeOutputsSlotProps, type AssistantMessageContentSlotProps, type AssistantMessageExplanationSlotProps, type AssistantMessageProps, type AssistantMessageSlots, type AssistantMessageSourcesSlotProps, type AssistantTurn$1 as AssistantTurn, AssistantTurnView, type AssistantTurnViewProps, type Attachment$1 as Attachment, MemoizedAttachmentGrid as AttachmentGrid, AttachmentPreview, AttachmentUpload, Avatar, type AvatarFallbackProps, type AvatarImageProps, type AvatarRootProps, type BiChatConfig, BiChatLayout, type BiChatLayoutProps, type BichatRPC, Bubble, type BubbleContentProps, type BubbleFooterProps, type BubbleHeaderProps, type BubbleMetadataProps, type BubbleRootProps, type BubbleVariant, CHART_VISUAL, ChartCard, type ChartData, type ChartSeries, type ChatDataSource, ChatHeader, type ChatInputStateValue, type ChatMessagingStateValue, ChatSession, type ChatSessionContextValue, ChatSessionProvider, type ChatSessionStateValue, type Citation$1 as Citation, MemoizedCodeBlock as CodeBlock, type CodeOutput$1 as CodeOutput, CodeOutputsPanel, CompactionDoodle, ConfigProvider, ConfirmModal, type ConfirmModalProps, ConfirmationStep, type ConversationTurn$1 as ConversationTurn, DateGroupHeader, DebugPanel, type DebugPanelProps, DefaultErrorContent, DownloadCard, MemoizedEditableText as EditableText, type EditableTextProps, type EditableTextRef, MemoizedEmptyState as EmptyState, type EmptyStateProps, ErrorBoundary, type FileValidationError, type FileVisual, HttpDataSource, type HttpDataSourceConfig, type ImageAttachment, type ImageLoadingStatus, ImageModal, InlineQuestionForm, type IotaContext, IotaContextProvider, ListItemSkeleton, MemoizedLoadingSpinner as LoadingSpinner, type LocaleContext, MemoizedMarkdownRenderer as MarkdownRenderer, MessageActions, MessageInput, type MessageInputProps, type MessageInputRef, MessageList, MessageRole, type PendingQuestion$1 as PendingQuestion, PermissionGuard, type PermissionGuardProps, type Question, type QuestionAnswerData, type QuestionAnswers, QuestionForm, type QuestionOption, QuestionStep, type QueuedMessage, type RPCErrorDisplay, RateLimiter, type RateLimiterConfig, RetryActionArea, ScreenReaderAnnouncer, ScrollToBottomButton, MemoizedSearchInput as SearchInput, type SearchInputProps, type Session$1 as Session, type SessionArtifact, SessionArtifactList, SessionArtifactPreview, SessionArtifactsPanel, type SessionGroup, SessionItem, type SessionListResult$1 as SessionListResult, SessionSkeleton, type SessionUser, type ShortcutConfig, Sidebar, type SidebarDrawerProps, type SidebarProps, MemoizedSkeleton as Skeleton, SkeletonAvatar, SkeletonCard, SkeletonGroup, type SkeletonGroupProps, type SkeletonProps, SkeletonText, SkipLink, Slot, type SlotProps, SourcesPanel, type StreamChunk, StreamError, StreamingCursor, SystemMessage, MemoizedTabBar as TabBar, TableExportButton, TableWithExport, type TenantContext, type Theme, type ThemeBorderRadius, type ThemeColors, ThemeProvider, type ThemeSpacing, Toast, ToastContainer, type ToastItem, type ToastProps, type ToastType, type ToolCall$1 as ToolCall, TouchContextMenu, Turn, type TurnActionsProps, type TurnAssistantProps, TurnBubble, type TurnBubbleClassNames, type TurnBubbleProps, type TurnRootProps, type TurnTimestampProps, type TurnUserProps, MemoizedTypingIndicator as TypingIndicator, type TypingIndicatorProps, type UseAttachmentsOptions, type UseAttachmentsReturn, type UseAutoScrollOptions, type UseAutoScrollReturn, type UseImageGalleryOptions, type UseImageGalleryReturn, type UseMarkdownCopyOptions, type UseMarkdownCopyReturn, type UseMessageActionsOptions, type UseMessageActionsReturn, type UseSidebarStateReturn, type UseToastReturn, MemoizedUserAvatar as UserAvatar, type UserAvatarProps, type UserContext, MemoizedUserFilter as UserFilter, UserMessage, type UserMessageActionsSlotProps, type UserMessageAttachmentsSlotProps, type UserMessageAvatarSlotProps, type UserMessageClassNames, type UserMessageContentSlotProps, type UserMessageProps, type UserMessageSlots, type UserTurn$1 as UserTurn, UserTurnView, type UserTurnViewProps, WelcomeContent, addCSRFHeader, backdropVariants, buttonVariants, convertToBase64, createDataUrl, createHeadersWithCSRF, createHttpDataSource, darkTheme, dropdownVariants, errorMessageVariants, fadeInUpVariants, fadeInVariants, floatingButtonVariants, formatFileSize, getCSRFToken, getFileVisual, getValidChildren, groupSessionsByDate, hasPermission, isImageMimeType, isPermissionDeniedError, lightTheme, listItemVariants, messageContainerVariants, messageVariants, scaleFadeVariants, sessionItemVariants, staggerContainerVariants, toErrorDisplay, toastVariants, typingDotVariants, useActionButtonContext, useAttachments, useAutoScroll, useAvatarContext, useBubbleContext, useChatInput, useChatMessaging, useChatSession, useConfig, useFocusTrap, useImageGallery, useIotaContext, useKeyboardShortcuts, useLongPress, useMarkdownCopy, useMessageActions, useModalLock, useOptionalChatMessaging, useRequiredConfig, useScrollToBottom, useSidebarState, useStreaming, useTheme, useToast, useTranslation, useTurnContext, validateAttachmentFile, validateFileCount, validateImageFile, verbTransitionVariants };
|