@chatui/core
Version:
The React library for Chatbot UI
132 lines (131 loc) • 7.83 kB
TypeScript
import 'intersection-observer';
export { default as clsx } from 'clsx';
export { default as DOMPurify } from 'dompurify';
export { default as canUse } from './utils/canUse';
export { importScript } from './utils/importScript';
export { lazyComponent } from './utils/lazyComponent';
export { mountComponent } from './utils/mountComponent';
export { default as useClickOutside } from './hooks/useClickOutside';
export { default as useForwardRef } from './hooks/useForwardRef';
export { useLatest } from './hooks/useLatest';
export { default as useMessages } from './hooks/useMessages';
export { default as useMount } from './hooks/useMount';
export { default as useQuickReplies } from './hooks/useQuickReplies';
export { useTitleTyping } from './hooks/useTitleTyping';
export { useTypewriter } from './hooks/useTypewriter';
export { ComponentsProvider, useComponents } from './components/ComponentsProvider';
export type { ComponentsProviderProps, ComponentsMap } from './components/ComponentsProvider';
export { LazyComponent } from './components/LazyComponent';
export type { LazyComponentProps, LazyComponentOnLoadParams } from './components/LazyComponent';
export { Avatar } from './components/Avatar';
export type { AvatarProps, AvatarSize, AvatarShape } from './components/Avatar';
export { Backdrop } from './components/Backdrop';
export type { BackdropProps } from './components/Backdrop';
export { Bubble } from './components/Bubble';
export type { BubbleProps } from './components/Bubble';
export { Button } from './components/Button';
export type { ButtonProps } from './components/Button';
export { Card, CardMedia, CardHeader, CardTitle, CardContent, CardText, CardActions, } from './components/Card';
export type { CardProps, CardSize, CardMediaProps, CardHeaderProps, CardTitleProps, CardContentProps, CardTextProps, CardActionsProps, } from './components/Card';
export { Carousel } from './components/Carousel';
export type { CarouselProps, CarouselHandle } from './components/Carousel';
export { Checkbox, CheckboxGroup } from './components/Checkbox';
export type { CheckboxProps, CheckboxGroupProps, CheckboxValue } from './components/Checkbox';
export { ClickOutside } from './components/ClickOutside';
export type { ClickOutsideProps } from './components/ClickOutside';
export { Divider } from './components/Divider';
export type { DividerProps } from './components/Divider';
export { Empty } from './components/Empty';
export type { EmptyProps } from './components/Empty';
export { ErrorBoundary } from './components/ErrorBoundary';
export type { ErrorBoundaryProps, FallbackProps } from './components/ErrorBoundary';
export { Flex, FlexItem } from './components/Flex';
export type { FlexProps, FlexItemProps } from './components/Flex';
export { Form, FormActions, FormItem } from './components/Form';
export type { FormProps, FormItemProps } from './components/Form';
export { Icon } from './components/Icon';
export type { IconProps } from './components/Icon';
export { IconButton } from './components/IconButton';
export type { IconButtonProps } from './components/IconButton';
export { Image } from './components/Image';
export type { ImageProps } from './components/Image';
export { InfiniteScroll } from './components/InfiniteScroll';
export type { InfiniteScrollProps } from './components/InfiniteScroll';
export { Input } from './components/Input';
export type { InputProps, InputVariant } from './components/Input';
export { List, ListItem } from './components/List';
export type { ListProps, ListItemProps } from './components/List';
export { Loading } from './components/Loading';
export type { LoadingProps } from './components/Loading';
export { ConfigProvider, ConfigProvider as LocaleProvider, ConfigContext, ConfigContext as LocaleContext, useConfig, useLocale, } from './components/ConfigProvider';
export { MediaObject } from './components/MediaObject';
export type { MediaObjectProps } from './components/MediaObject';
export { Message, SystemMessage } from './components/Message';
export type { MessageProps, SystemMessageProps } from './components/Message';
export { MessageStatus } from './components/MessageStatus';
export type { MessageStatusProps } from './components/MessageStatus';
export { Modal, Confirm, Popup } from './components/Modal';
export type { ModalProps } from './components/Modal';
export { Navbar } from './components/Navbar';
export type { NavbarProps } from './components/Navbar';
export { Notice } from './components/Notice';
export type { NoticeProps } from './components/Notice';
export { Portal } from './components/Portal';
export type { PortalProps } from './components/Portal';
export { Price } from './components/Price';
export type { PriceProps } from './components/Price';
export { Progress } from './components/Progress';
export type { ProgressProps } from './components/Progress';
export { PullToRefresh } from './components/PullToRefresh';
export type { PullToRefreshProps } from './components/PullToRefresh';
export { QuickReplies } from './components/QuickReplies';
export type { QuickRepliesProps, QuickReplyProps, QuickReplyItemProps, } from './components/QuickReplies';
export { Quote } from './components/Quote';
export type { QuoteProps } from './components/Quote';
export { Radio, RadioGroup } from './components/Radio';
export type { RadioProps, RadioGroupProps, RadioValue } from './components/Radio';
export { RateActions } from './components/RateActions';
export type { RateActionsProps } from './components/RateActions';
export type { RecorderHandle } from './components/Recorder';
export { RichText } from './components/RichText';
export type { RichTextProps } from './components/RichText';
export { ScrollGrid } from './components/ScrollGrid';
export type { ScrollGridProps } from './components/ScrollGrid';
export { ScrollView } from './components/ScrollView';
export type { ScrollViewProps } from './components/ScrollView';
export { Search } from './components/Search';
export type { SearchProps } from './components/Search';
export { Select } from './components/Select';
export type { SelectProps } from './components/Select';
export { Skeleton } from './components/Skeleton';
export type { SkeletonProps } from './components/Skeleton';
export { Stepper, Step } from './components/Stepper';
export type { StepperProps, StepProps } from './components/Stepper';
export { Tabs, Tab } from './components/Tabs';
export type { TabsProps, TabProps } from './components/Tabs';
export { Tag } from './components/Tag';
export type { TagProps } from './components/Tag';
export { Text } from './components/Text';
export type { TextProps } from './components/Text';
export { Think } from './components/Think';
export type { ThinkProps } from './components/Think';
export { Time } from './components/Time';
export type { TimeProps } from './components/Time';
export { Toast, toast } from './components/Toast';
export type { ToastProps } from './components/Toast';
export { Toolbar } from './components/Toolbar';
export type { ToolbarProps, ToolbarItemProps } from './components/Toolbar';
export { Tree, TreeNode } from './components/Tree';
export { Typing } from './components/Typing';
export { TypingBubble } from './components/TypingBubble';
export type { TypingBubbleProps } from './components/TypingBubble';
export type { TreeProps, TreeNodeProps } from './components/Tree';
export { Video } from './components/Video';
export type { VideoProps } from './components/Video';
export { VisuallyHidden } from './components/VisuallyHidden';
export { FileCard } from './components/FileCard';
export type { FileCardProps } from './components/FileCard';
export { Goods } from './components/Goods';
export type { GoodsProps } from './components/Goods';
export { Chat as default } from './components/Chat';
export type { ChatProps } from './components/Chat';