@inkeep/cxkit-styled 0.5.15 → 0.5.16
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.cts +940 -3
- package/dist/index.d.ts +940 -3
- package/package.json +4 -4
- package/dist/components/chat-button.d.cts +0 -8
- package/dist/components/chat-button.d.ts +0 -8
- package/dist/components/embedded-chat/conversation-loading.d.cts +0 -1
- package/dist/components/embedded-chat/conversation-loading.d.ts +0 -1
- package/dist/components/embedded-chat.d.cts +0 -183
- package/dist/components/embedded-chat.d.ts +0 -183
- package/dist/components/embedded-search/results-loading.d.cts +0 -1
- package/dist/components/embedded-search/results-loading.d.ts +0 -1
- package/dist/components/embedded-search.d.cts +0 -54
- package/dist/components/embedded-search.d.ts +0 -54
- package/dist/components/index.d.cts +0 -8
- package/dist/components/index.d.ts +0 -8
- package/dist/components/intelligent-form.d.cts +0 -60
- package/dist/components/intelligent-form.d.ts +0 -60
- package/dist/components/loading-indicator.d.cts +0 -1
- package/dist/components/loading-indicator.d.ts +0 -1
- package/dist/components/modal.d.cts +0 -6
- package/dist/components/modal.d.ts +0 -6
- package/dist/components/searchbar.d.cts +0 -11
- package/dist/components/searchbar.d.ts +0 -11
- package/dist/components/shadow.d.cts +0 -3
- package/dist/components/shadow.d.ts +0 -3
- package/dist/ui/markdown-styles.d.cts +0 -20
- package/dist/ui/markdown-styles.d.ts +0 -20
- package/dist/ui/recipes/ai-chat-page-wrapper.d.cts +0 -7
- package/dist/ui/recipes/ai-chat-page-wrapper.d.ts +0 -7
- package/dist/ui/recipes/attachment.d.cts +0 -4
- package/dist/ui/recipes/attachment.d.ts +0 -4
- package/dist/ui/recipes/button.d.cts +0 -6
- package/dist/ui/recipes/button.d.ts +0 -6
- package/dist/ui/recipes/checkbox.d.cts +0 -4
- package/dist/ui/recipes/checkbox.d.ts +0 -4
- package/dist/ui/recipes/citation.d.cts +0 -4
- package/dist/ui/recipes/citation.d.ts +0 -4
- package/dist/ui/recipes/icon.d.cts +0 -2
- package/dist/ui/recipes/icon.d.ts +0 -2
- package/dist/ui/recipes/index.d.cts +0 -15
- package/dist/ui/recipes/index.d.ts +0 -15
- package/dist/ui/recipes/input.d.cts +0 -5
- package/dist/ui/recipes/input.d.ts +0 -5
- package/dist/ui/recipes/link.d.cts +0 -2
- package/dist/ui/recipes/link.d.ts +0 -2
- package/dist/ui/recipes/markdown.d.cts +0 -16
- package/dist/ui/recipes/markdown.d.ts +0 -16
- package/dist/ui/recipes/modal.d.cts +0 -4
- package/dist/ui/recipes/modal.d.ts +0 -4
- package/dist/ui/recipes/popover.d.cts +0 -4
- package/dist/ui/recipes/popover.d.ts +0 -4
- package/dist/ui/recipes/scrollable.d.cts +0 -4
- package/dist/ui/recipes/scrollable.d.ts +0 -4
- package/dist/ui/recipes/select.d.cts +0 -4
- package/dist/ui/recipes/select.d.ts +0 -4
- package/dist/ui/recipes/skeleton.d.cts +0 -2
- package/dist/ui/recipes/skeleton.d.ts +0 -2
- package/dist/ui/recipes/widget-toggle.d.cts +0 -4
- package/dist/ui/recipes/widget-toggle.d.ts +0 -4
- package/dist/utils.d.cts +0 -4
- package/dist/utils.d.ts +0 -4
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { EmbeddedSearchPrimitive, PolymorphicProps } from '@inkeep/cxkit-primitives';
|
|
2
|
-
import { ComponentPropsWithRef, ForwardRefExoticComponent, ClassAttributes, HTMLAttributes, RefAttributes } from 'react';
|
|
3
|
-
import { ScrollAreaCornerProps } from '@radix-ui/react-scroll-area';
|
|
4
|
-
declare const EmbeddedSearchProvider: (props: React.ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Provider>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
type EmbeddedSearchWrapperProps = ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Wrapper>;
|
|
6
|
-
declare const EmbeddedSearchWrapper: ({ className, ...props }: EmbeddedSearchWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
declare const EmbeddedSearchRoot: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare const EmbeddedSearchContent: ForwardRefExoticComponent<Omit< PolymorphicProps & Omit<{
|
|
9
|
-
children?: React.ReactNode;
|
|
10
|
-
} & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
|
|
11
|
-
asChild?: boolean;
|
|
12
|
-
}, "ref"> & {
|
|
13
|
-
label?: string;
|
|
14
|
-
} & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<{
|
|
15
|
-
children?: React.ReactNode;
|
|
16
|
-
} & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
|
|
17
|
-
asChild?: boolean;
|
|
18
|
-
}, "ref"> & {
|
|
19
|
-
label?: string;
|
|
20
|
-
} & RefAttributes<HTMLDivElement>, "_id">>, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
21
|
-
declare const EmbeddedSearchInputGroup: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.InputGroup>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
declare const EmbeddedSearchInputIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.InputIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
-
declare const EmbeddedSearchInput: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Input>) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
declare const EmbeddedSearchLoading: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Loading>) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
declare const EmbeddedSearchAskAITrigger: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITrigger>) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
-
declare const EmbeddedSearchAskAITriggerIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
declare const EmbeddedSearchAskAITriggerLabel: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerLabel>) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
declare const EmbeddedSearchAskAITriggerIndicator: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerIndicator>) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
declare const EmbeddedSearchResults: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Results>) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
declare const EmbeddedSearchResultsLoading: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsLoading>) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
-
declare const EmbeddedSearchResultsEmpty: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsEmpty>) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
declare const EmbeddedSearchResultsTabList: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsTabList>) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
declare const EmbeddedSearchResultsTab: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsTab>) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
declare const EmbeddedSearchResultsScrollArea: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollArea>) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
-
declare const EmbeddedSearchResultsScrollAreaViewport: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaViewport>) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
-
declare const EmbeddedSearchResultsScrollAreaScrollbar: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaScrollbar>) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
-
declare const EmbeddedSearchResultsScrollAreaThumb: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaThumb>) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
-
declare const EmbeddedSearchResultsScrollAreaCorner: ForwardRefExoticComponent< PolymorphicProps & Omit< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id">>>;
|
|
39
|
-
declare const EmbeddedSearchResultsList: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsList>) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
-
declare const EmbeddedSearchResultsItem: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItem>) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
-
declare const EmbeddedSearchResultsItemBreadcrumbs: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemBreadcrumbs>) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
-
declare const EmbeddedSearchResultsItemBreadcrumbIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemBreadcrumbIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
43
|
-
declare const EmbeddedSearchResultsItemIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
44
|
-
declare const EmbeddedSearchResultsItemTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTitle>) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
-
declare const EmbeddedSearchResultsItemTag: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTag>) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
-
declare const EmbeddedSearchResultsItemDescription: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemDescription>) => import("react/jsx-runtime").JSX.Element;
|
|
47
|
-
declare const EmbeddedSearchResultsItemDescriptionPart: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemDescriptionPart>) => import("react/jsx-runtime").JSX.Element;
|
|
48
|
-
declare const EmbeddedSearchResultsItemIndicator: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemIndicator>) => import("react/jsx-runtime").JSX.Element;
|
|
49
|
-
declare const EmbeddedSearchFooter: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Footer>) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
-
declare const EmbeddedSearchTaglineContainer: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineContainer>) => import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
declare const EmbeddedSearchTaglineText: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineText>) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
-
declare const EmbeddedSearchTaglineLogo: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineLogo>) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
-
declare const EmbeddedSearchTaglineBrandName: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineBrandName>) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
-
export { EmbeddedSearchProvider as Provider, EmbeddedSearchWrapper as Wrapper, EmbeddedSearchRoot as Root, EmbeddedSearchContent as Content, EmbeddedSearchInputGroup as InputGroup, EmbeddedSearchInputIcon as InputIcon, EmbeddedSearchInput as Input, EmbeddedSearchLoading as Loading, EmbeddedSearchResults as Results, EmbeddedSearchResultsLoading as ResultsLoading, EmbeddedSearchAskAITrigger as AskAITrigger, EmbeddedSearchAskAITriggerIcon as AskAITriggerIcon, EmbeddedSearchAskAITriggerLabel as AskAITriggerLabel, EmbeddedSearchAskAITriggerIndicator as AskAITriggerIndicator, EmbeddedSearchResultsEmpty as ResultsEmpty, EmbeddedSearchResultsTabList as ResultsTabList, EmbeddedSearchResultsTab as ResultsTab, EmbeddedSearchResultsScrollArea as ResultsScrollArea, EmbeddedSearchResultsScrollAreaViewport as ResultsScrollAreaViewport, EmbeddedSearchResultsScrollAreaScrollbar as ResultsScrollAreaScrollbar, EmbeddedSearchResultsScrollAreaThumb as ResultsScrollAreaThumb, EmbeddedSearchResultsScrollAreaCorner as ResultsScrollAreaCorner, EmbeddedSearchResultsList as ResultsList, EmbeddedSearchResultsItem as ResultsItem, EmbeddedSearchResultsItemBreadcrumbs as ResultsItemBreadcrumbs, EmbeddedSearchResultsItemBreadcrumbIcon as ResultsItemBreadcrumbIcon, EmbeddedSearchResultsItemIcon as ResultsItemIcon, EmbeddedSearchResultsItemTitle as ResultsItemTitle, EmbeddedSearchResultsItemTag as ResultsItemTag, EmbeddedSearchResultsItemDescription as ResultsItemDescription, EmbeddedSearchResultsItemDescriptionPart as ResultsItemDescriptionPart, EmbeddedSearchResultsItemIndicator as ResultsItemIndicator, EmbeddedSearchFooter as Footer, EmbeddedSearchTaglineContainer as TaglineContainer, EmbeddedSearchTaglineText as TaglineText, EmbeddedSearchTaglineLogo as TaglineLogo, EmbeddedSearchTaglineBrandName as TaglineBrandName, };
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { EmbeddedSearchPrimitive, PolymorphicProps } from '@inkeep/cxkit-primitives';
|
|
2
|
-
import { ComponentPropsWithRef, ForwardRefExoticComponent, ClassAttributes, HTMLAttributes, RefAttributes } from 'react';
|
|
3
|
-
import { ScrollAreaCornerProps } from '@radix-ui/react-scroll-area';
|
|
4
|
-
declare const EmbeddedSearchProvider: (props: React.ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Provider>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
type EmbeddedSearchWrapperProps = ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Wrapper>;
|
|
6
|
-
declare const EmbeddedSearchWrapper: ({ className, ...props }: EmbeddedSearchWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
declare const EmbeddedSearchRoot: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare const EmbeddedSearchContent: ForwardRefExoticComponent<Omit< PolymorphicProps & Omit<{
|
|
9
|
-
children?: React.ReactNode;
|
|
10
|
-
} & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
|
|
11
|
-
asChild?: boolean;
|
|
12
|
-
}, "ref"> & {
|
|
13
|
-
label?: string;
|
|
14
|
-
} & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<{
|
|
15
|
-
children?: React.ReactNode;
|
|
16
|
-
} & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
|
|
17
|
-
asChild?: boolean;
|
|
18
|
-
}, "ref"> & {
|
|
19
|
-
label?: string;
|
|
20
|
-
} & RefAttributes<HTMLDivElement>, "_id">>, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
21
|
-
declare const EmbeddedSearchInputGroup: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.InputGroup>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
declare const EmbeddedSearchInputIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.InputIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
-
declare const EmbeddedSearchInput: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Input>) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
declare const EmbeddedSearchLoading: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Loading>) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
declare const EmbeddedSearchAskAITrigger: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITrigger>) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
-
declare const EmbeddedSearchAskAITriggerIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
declare const EmbeddedSearchAskAITriggerLabel: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerLabel>) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
declare const EmbeddedSearchAskAITriggerIndicator: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerIndicator>) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
declare const EmbeddedSearchResults: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Results>) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
declare const EmbeddedSearchResultsLoading: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsLoading>) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
-
declare const EmbeddedSearchResultsEmpty: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsEmpty>) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
declare const EmbeddedSearchResultsTabList: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsTabList>) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
declare const EmbeddedSearchResultsTab: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsTab>) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
declare const EmbeddedSearchResultsScrollArea: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollArea>) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
-
declare const EmbeddedSearchResultsScrollAreaViewport: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaViewport>) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
-
declare const EmbeddedSearchResultsScrollAreaScrollbar: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaScrollbar>) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
-
declare const EmbeddedSearchResultsScrollAreaThumb: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaThumb>) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
-
declare const EmbeddedSearchResultsScrollAreaCorner: ForwardRefExoticComponent< PolymorphicProps & Omit< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id">>>;
|
|
39
|
-
declare const EmbeddedSearchResultsList: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsList>) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
-
declare const EmbeddedSearchResultsItem: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItem>) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
-
declare const EmbeddedSearchResultsItemBreadcrumbs: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemBreadcrumbs>) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
-
declare const EmbeddedSearchResultsItemBreadcrumbIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemBreadcrumbIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
43
|
-
declare const EmbeddedSearchResultsItemIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
44
|
-
declare const EmbeddedSearchResultsItemTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTitle>) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
-
declare const EmbeddedSearchResultsItemTag: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTag>) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
-
declare const EmbeddedSearchResultsItemDescription: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemDescription>) => import("react/jsx-runtime").JSX.Element;
|
|
47
|
-
declare const EmbeddedSearchResultsItemDescriptionPart: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemDescriptionPart>) => import("react/jsx-runtime").JSX.Element;
|
|
48
|
-
declare const EmbeddedSearchResultsItemIndicator: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemIndicator>) => import("react/jsx-runtime").JSX.Element;
|
|
49
|
-
declare const EmbeddedSearchFooter: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Footer>) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
-
declare const EmbeddedSearchTaglineContainer: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineContainer>) => import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
declare const EmbeddedSearchTaglineText: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineText>) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
-
declare const EmbeddedSearchTaglineLogo: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineLogo>) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
-
declare const EmbeddedSearchTaglineBrandName: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineBrandName>) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
-
export { EmbeddedSearchProvider as Provider, EmbeddedSearchWrapper as Wrapper, EmbeddedSearchRoot as Root, EmbeddedSearchContent as Content, EmbeddedSearchInputGroup as InputGroup, EmbeddedSearchInputIcon as InputIcon, EmbeddedSearchInput as Input, EmbeddedSearchLoading as Loading, EmbeddedSearchResults as Results, EmbeddedSearchResultsLoading as ResultsLoading, EmbeddedSearchAskAITrigger as AskAITrigger, EmbeddedSearchAskAITriggerIcon as AskAITriggerIcon, EmbeddedSearchAskAITriggerLabel as AskAITriggerLabel, EmbeddedSearchAskAITriggerIndicator as AskAITriggerIndicator, EmbeddedSearchResultsEmpty as ResultsEmpty, EmbeddedSearchResultsTabList as ResultsTabList, EmbeddedSearchResultsTab as ResultsTab, EmbeddedSearchResultsScrollArea as ResultsScrollArea, EmbeddedSearchResultsScrollAreaViewport as ResultsScrollAreaViewport, EmbeddedSearchResultsScrollAreaScrollbar as ResultsScrollAreaScrollbar, EmbeddedSearchResultsScrollAreaThumb as ResultsScrollAreaThumb, EmbeddedSearchResultsScrollAreaCorner as ResultsScrollAreaCorner, EmbeddedSearchResultsList as ResultsList, EmbeddedSearchResultsItem as ResultsItem, EmbeddedSearchResultsItemBreadcrumbs as ResultsItemBreadcrumbs, EmbeddedSearchResultsItemBreadcrumbIcon as ResultsItemBreadcrumbIcon, EmbeddedSearchResultsItemIcon as ResultsItemIcon, EmbeddedSearchResultsItemTitle as ResultsItemTitle, EmbeddedSearchResultsItemTag as ResultsItemTag, EmbeddedSearchResultsItemDescription as ResultsItemDescription, EmbeddedSearchResultsItemDescriptionPart as ResultsItemDescriptionPart, EmbeddedSearchResultsItemIndicator as ResultsItemIndicator, EmbeddedSearchFooter as Footer, EmbeddedSearchTaglineContainer as TaglineContainer, EmbeddedSearchTaglineText as TaglineText, EmbeddedSearchTaglineLogo as TaglineLogo, EmbeddedSearchTaglineBrandName as TaglineBrandName, };
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * as EmbeddedChat from './embedded-chat';
|
|
2
|
-
export * as EmbeddedSearch from './embedded-search';
|
|
3
|
-
export * as Modal from './modal';
|
|
4
|
-
export * as ChatButton from './chat-button';
|
|
5
|
-
export * as SearchBar from './searchbar';
|
|
6
|
-
export * as IntelligentForm from './intelligent-form';
|
|
7
|
-
export * from './shadow';
|
|
8
|
-
export * from './loading-indicator';
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * as EmbeddedChat from './embedded-chat';
|
|
2
|
-
export * as EmbeddedSearch from './embedded-search';
|
|
3
|
-
export * as Modal from './modal';
|
|
4
|
-
export * as ChatButton from './chat-button';
|
|
5
|
-
export * as SearchBar from './searchbar';
|
|
6
|
-
export * as IntelligentForm from './intelligent-form';
|
|
7
|
-
export * from './shadow';
|
|
8
|
-
export * from './loading-indicator';
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { IntelligentFormPrimitive, PolymorphicProps } from '@inkeep/cxkit-primitives';
|
|
2
|
-
import { ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
3
|
-
import { ScrollAreaCornerProps } from '@radix-ui/react-scroll-area';
|
|
4
|
-
import { SelectProps, SelectValueProps, SelectItemTextProps } from '@radix-ui/react-select';
|
|
5
|
-
declare const IntelligentFormProvider: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Provider>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
declare const IntelligentFormRoot: ({ className, ...props }: ComponentPropsWithRef<typeof IntelligentFormPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
declare const IntelligentFormHeading: ({ className, ...props }: ComponentPropsWithRef<typeof IntelligentFormPrimitive.Heading>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare const IntelligentFormContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
declare const IntelligentFormContentScrollArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollArea>) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
declare const IntelligentFormContentScrollAreaViewport: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaViewport>) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
declare const IntelligentFormContentScrollAreaScrollbar: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaScrollbar>) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
declare const IntelligentFormContentScrollAreaThumb: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaThumb>) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
declare const IntelligentFormContentScrollAreaCorner: ForwardRefExoticComponent< PolymorphicProps & Omit< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id">>>;
|
|
14
|
-
declare const IntelligentFormSuccess: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Success>) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
declare const IntelligentFormSuccessIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
-
declare const IntelligentFormSuccessHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessHeading>) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
-
declare const IntelligentFormSuccessMessage: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessMessage>) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
-
declare const IntelligentFormPrimaryForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryForm>) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
declare const IntelligentFormPrimaryFormDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormDescription>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
declare const IntelligentFormPrimaryFormFields: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormFields>) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
-
declare const IntelligentFormPrimaryFormSubmit: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormSubmit>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
declare const IntelligentFormField: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormField>) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
-
declare const IntelligentFormFieldLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldLabel>) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
declare const IntelligentFormFieldText: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldText>) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
declare const IntelligentFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldEmail>) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
-
declare const IntelligentFormFieldFile: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldFile>) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
declare const IntelligentFormFieldTextArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldTextArea>) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
declare const IntelligentFormFieldCheckbox: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckbox>) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
declare const IntelligentFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckboxIndicator>) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
declare const IntelligentFormFieldSelect: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectProps, "_id"> & Partial<Pick< SelectProps, "_id">>>>) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
-
declare const IntelligentFormFieldSelectTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectTrigger>) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
declare const IntelligentFormFieldSelectValue: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectValueProps & RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick< SelectValueProps & RefAttributes<HTMLSpanElement>, "_id">>>>) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
declare const IntelligentFormFieldSelectIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
declare const IntelligentFormFieldSelectContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectContent>) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
-
declare const IntelligentFormFieldSelectViewport: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectViewport>) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
-
declare const IntelligentFormFieldSelectItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectItem>) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
-
declare const IntelligentFormFieldSelectItemText: ForwardRefExoticComponent< PolymorphicProps & Omit< SelectItemTextProps & RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick< SelectItemTextProps & RefAttributes<HTMLSpanElement>, "_id">>>;
|
|
38
|
-
declare const IntelligentFormFieldSelectItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectItemIndicator>) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
-
declare const IntelligentFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldError>) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
-
declare const IntelligentFormBotHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeading>) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
-
declare const IntelligentFormBotHeadingIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeadingIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
-
declare const IntelligentFormBotHeadingName: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeadingName>) => import("react/jsx-runtime").JSX.Element;
|
|
43
|
-
declare const IntelligentFormLoading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Loading>) => import("react/jsx-runtime").JSX.Element;
|
|
44
|
-
declare const IntelligentFormConfidentResponse: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponse>) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
-
declare const IntelligentFormConfidentAnswer: ({ className, componentStyles, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentAnswer>) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
-
declare const IntelligentFormConfidentResponseButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponseButton>) => import("react/jsx-runtime").JSX.Element;
|
|
47
|
-
declare const IntelligentFormConfidentResponseButtonIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponseButtonIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
48
|
-
declare const IntelligentFormConfidentResponseButtonLabel: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "_id">>>;
|
|
49
|
-
declare const IntelligentFormSecondaryForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryForm>) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
-
declare const IntelligentFormSecondaryFormDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormDescription>) => import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
declare const IntelligentFormSecondaryFormFields: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormFields>) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
-
declare const IntelligentFormSecondaryFormSubmit: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormSubmit>) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
-
declare const IntelligentFormError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Error>) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
-
declare const IntelligentFormSources: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Sources>) => import("react/jsx-runtime").JSX.Element;
|
|
55
|
-
declare const IntelligentFormSourcesCaption: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourcesCaption>) => import("react/jsx-runtime").JSX.Element;
|
|
56
|
-
declare const IntelligentFormSourcesList: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourcesList>) => import("react/jsx-runtime").JSX.Element;
|
|
57
|
-
declare const IntelligentFormSource: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Source>) => import("react/jsx-runtime").JSX.Element;
|
|
58
|
-
declare const IntelligentFormSourceIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourceIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
59
|
-
declare const IntelligentFormSourceTitle: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourceTitle>) => import("react/jsx-runtime").JSX.Element;
|
|
60
|
-
export { IntelligentFormProvider as Provider, IntelligentFormRoot as Root, IntelligentFormHeading as Heading, IntelligentFormContent as Content, IntelligentFormContentScrollArea as ContentScrollArea, IntelligentFormContentScrollAreaViewport as ContentScrollAreaViewport, IntelligentFormContentScrollAreaScrollbar as ContentScrollAreaScrollbar, IntelligentFormContentScrollAreaThumb as ContentScrollAreaThumb, IntelligentFormContentScrollAreaCorner as ContentScrollAreaCorner, IntelligentFormSuccess as Success, IntelligentFormSuccessIcon as SuccessIcon, IntelligentFormSuccessHeading as SuccessHeading, IntelligentFormSuccessMessage as SuccessMessage, IntelligentFormPrimaryForm as PrimaryForm, IntelligentFormPrimaryFormDescription as PrimaryFormDescription, IntelligentFormPrimaryFormFields as PrimaryFormFields, IntelligentFormPrimaryFormSubmit as PrimaryFormSubmit, IntelligentFormField as Field, IntelligentFormFieldLabel as FieldLabel, IntelligentFormFieldText as Text, IntelligentFormFieldEmail as Email, IntelligentFormFieldFile as File, IntelligentFormFieldTextArea as TextArea, IntelligentFormFieldCheckbox as Checkbox, IntelligentFormFieldCheckboxIndicator as CheckboxIndicator, IntelligentFormFieldSelect as Select, IntelligentFormFieldSelectTrigger as SelectTrigger, IntelligentFormFieldSelectValue as SelectValue, IntelligentFormFieldSelectIcon as SelectIcon, IntelligentFormFieldSelectContent as SelectContent, IntelligentFormFieldSelectViewport as SelectViewport, IntelligentFormFieldSelectItem as SelectItem, IntelligentFormFieldSelectItemText as SelectItemText, IntelligentFormFieldSelectItemIndicator as SelectItemIndicator, IntelligentFormFieldError as FieldError, IntelligentFormBotHeading as BotHeading, IntelligentFormBotHeadingIcon as BotHeadingIcon, IntelligentFormBotHeadingName as BotHeadingName, IntelligentFormLoading as Loading, IntelligentFormConfidentResponse as ConfidentResponse, IntelligentFormConfidentAnswer as ConfidentAnswer, IntelligentFormConfidentResponseButton as ConfidentResponseButton, IntelligentFormConfidentResponseButtonIcon as ConfidentResponseButtonIcon, IntelligentFormConfidentResponseButtonLabel as ConfidentResponseButtonLabel, IntelligentFormSecondaryForm as SecondaryForm, IntelligentFormSecondaryFormDescription as SecondaryFormDescription, IntelligentFormSecondaryFormFields as SecondaryFormFields, IntelligentFormSecondaryFormSubmit as SecondaryFormSubmit, IntelligentFormError as Error, IntelligentFormSources as Sources, IntelligentFormSourcesCaption as SourcesCaption, IntelligentFormSourcesList as SourcesList, IntelligentFormSource as Source, IntelligentFormSourceIcon as SourceIcon, IntelligentFormSourceTitle as SourceTitle, };
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { IntelligentFormPrimitive, PolymorphicProps } from '@inkeep/cxkit-primitives';
|
|
2
|
-
import { ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
3
|
-
import { ScrollAreaCornerProps } from '@radix-ui/react-scroll-area';
|
|
4
|
-
import { SelectProps, SelectValueProps, SelectItemTextProps } from '@radix-ui/react-select';
|
|
5
|
-
declare const IntelligentFormProvider: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Provider>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
declare const IntelligentFormRoot: ({ className, ...props }: ComponentPropsWithRef<typeof IntelligentFormPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
declare const IntelligentFormHeading: ({ className, ...props }: ComponentPropsWithRef<typeof IntelligentFormPrimitive.Heading>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare const IntelligentFormContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
declare const IntelligentFormContentScrollArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollArea>) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
declare const IntelligentFormContentScrollAreaViewport: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaViewport>) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
declare const IntelligentFormContentScrollAreaScrollbar: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaScrollbar>) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
declare const IntelligentFormContentScrollAreaThumb: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaThumb>) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
declare const IntelligentFormContentScrollAreaCorner: ForwardRefExoticComponent< PolymorphicProps & Omit< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id">>>;
|
|
14
|
-
declare const IntelligentFormSuccess: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Success>) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
declare const IntelligentFormSuccessIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
-
declare const IntelligentFormSuccessHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessHeading>) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
-
declare const IntelligentFormSuccessMessage: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessMessage>) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
-
declare const IntelligentFormPrimaryForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryForm>) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
declare const IntelligentFormPrimaryFormDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormDescription>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
declare const IntelligentFormPrimaryFormFields: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormFields>) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
-
declare const IntelligentFormPrimaryFormSubmit: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormSubmit>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
declare const IntelligentFormField: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormField>) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
-
declare const IntelligentFormFieldLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldLabel>) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
declare const IntelligentFormFieldText: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldText>) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
declare const IntelligentFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldEmail>) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
-
declare const IntelligentFormFieldFile: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldFile>) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
declare const IntelligentFormFieldTextArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldTextArea>) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
declare const IntelligentFormFieldCheckbox: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckbox>) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
declare const IntelligentFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckboxIndicator>) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
declare const IntelligentFormFieldSelect: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectProps, "_id"> & Partial<Pick< SelectProps, "_id">>>>) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
-
declare const IntelligentFormFieldSelectTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectTrigger>) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
declare const IntelligentFormFieldSelectValue: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectValueProps & RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick< SelectValueProps & RefAttributes<HTMLSpanElement>, "_id">>>>) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
declare const IntelligentFormFieldSelectIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
declare const IntelligentFormFieldSelectContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectContent>) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
-
declare const IntelligentFormFieldSelectViewport: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectViewport>) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
-
declare const IntelligentFormFieldSelectItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectItem>) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
-
declare const IntelligentFormFieldSelectItemText: ForwardRefExoticComponent< PolymorphicProps & Omit< SelectItemTextProps & RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick< SelectItemTextProps & RefAttributes<HTMLSpanElement>, "_id">>>;
|
|
38
|
-
declare const IntelligentFormFieldSelectItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectItemIndicator>) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
-
declare const IntelligentFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldError>) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
-
declare const IntelligentFormBotHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeading>) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
-
declare const IntelligentFormBotHeadingIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeadingIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
-
declare const IntelligentFormBotHeadingName: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeadingName>) => import("react/jsx-runtime").JSX.Element;
|
|
43
|
-
declare const IntelligentFormLoading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Loading>) => import("react/jsx-runtime").JSX.Element;
|
|
44
|
-
declare const IntelligentFormConfidentResponse: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponse>) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
-
declare const IntelligentFormConfidentAnswer: ({ className, componentStyles, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentAnswer>) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
-
declare const IntelligentFormConfidentResponseButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponseButton>) => import("react/jsx-runtime").JSX.Element;
|
|
47
|
-
declare const IntelligentFormConfidentResponseButtonIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponseButtonIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
48
|
-
declare const IntelligentFormConfidentResponseButtonLabel: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "_id">>>;
|
|
49
|
-
declare const IntelligentFormSecondaryForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryForm>) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
-
declare const IntelligentFormSecondaryFormDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormDescription>) => import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
declare const IntelligentFormSecondaryFormFields: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormFields>) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
-
declare const IntelligentFormSecondaryFormSubmit: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormSubmit>) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
-
declare const IntelligentFormError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Error>) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
-
declare const IntelligentFormSources: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Sources>) => import("react/jsx-runtime").JSX.Element;
|
|
55
|
-
declare const IntelligentFormSourcesCaption: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourcesCaption>) => import("react/jsx-runtime").JSX.Element;
|
|
56
|
-
declare const IntelligentFormSourcesList: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourcesList>) => import("react/jsx-runtime").JSX.Element;
|
|
57
|
-
declare const IntelligentFormSource: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Source>) => import("react/jsx-runtime").JSX.Element;
|
|
58
|
-
declare const IntelligentFormSourceIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourceIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
59
|
-
declare const IntelligentFormSourceTitle: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourceTitle>) => import("react/jsx-runtime").JSX.Element;
|
|
60
|
-
export { IntelligentFormProvider as Provider, IntelligentFormRoot as Root, IntelligentFormHeading as Heading, IntelligentFormContent as Content, IntelligentFormContentScrollArea as ContentScrollArea, IntelligentFormContentScrollAreaViewport as ContentScrollAreaViewport, IntelligentFormContentScrollAreaScrollbar as ContentScrollAreaScrollbar, IntelligentFormContentScrollAreaThumb as ContentScrollAreaThumb, IntelligentFormContentScrollAreaCorner as ContentScrollAreaCorner, IntelligentFormSuccess as Success, IntelligentFormSuccessIcon as SuccessIcon, IntelligentFormSuccessHeading as SuccessHeading, IntelligentFormSuccessMessage as SuccessMessage, IntelligentFormPrimaryForm as PrimaryForm, IntelligentFormPrimaryFormDescription as PrimaryFormDescription, IntelligentFormPrimaryFormFields as PrimaryFormFields, IntelligentFormPrimaryFormSubmit as PrimaryFormSubmit, IntelligentFormField as Field, IntelligentFormFieldLabel as FieldLabel, IntelligentFormFieldText as Text, IntelligentFormFieldEmail as Email, IntelligentFormFieldFile as File, IntelligentFormFieldTextArea as TextArea, IntelligentFormFieldCheckbox as Checkbox, IntelligentFormFieldCheckboxIndicator as CheckboxIndicator, IntelligentFormFieldSelect as Select, IntelligentFormFieldSelectTrigger as SelectTrigger, IntelligentFormFieldSelectValue as SelectValue, IntelligentFormFieldSelectIcon as SelectIcon, IntelligentFormFieldSelectContent as SelectContent, IntelligentFormFieldSelectViewport as SelectViewport, IntelligentFormFieldSelectItem as SelectItem, IntelligentFormFieldSelectItemText as SelectItemText, IntelligentFormFieldSelectItemIndicator as SelectItemIndicator, IntelligentFormFieldError as FieldError, IntelligentFormBotHeading as BotHeading, IntelligentFormBotHeadingIcon as BotHeadingIcon, IntelligentFormBotHeadingName as BotHeadingName, IntelligentFormLoading as Loading, IntelligentFormConfidentResponse as ConfidentResponse, IntelligentFormConfidentAnswer as ConfidentAnswer, IntelligentFormConfidentResponseButton as ConfidentResponseButton, IntelligentFormConfidentResponseButtonIcon as ConfidentResponseButtonIcon, IntelligentFormConfidentResponseButtonLabel as ConfidentResponseButtonLabel, IntelligentFormSecondaryForm as SecondaryForm, IntelligentFormSecondaryFormDescription as SecondaryFormDescription, IntelligentFormSecondaryFormFields as SecondaryFormFields, IntelligentFormSecondaryFormSubmit as SecondaryFormSubmit, IntelligentFormError as Error, IntelligentFormSources as Sources, IntelligentFormSourcesCaption as SourcesCaption, IntelligentFormSourcesList as SourcesList, IntelligentFormSource as Source, IntelligentFormSourceIcon as SourceIcon, IntelligentFormSourceTitle as SourceTitle, };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function LoadingIndicator(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function LoadingIndicator(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ModalPrimitive } from '@inkeep/cxkit-primitives';
|
|
2
|
-
declare const Modal: (props: ModalPrimitive.PrimitiveModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
declare const ModalOverlay: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Overlay>) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
declare const ModalContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
declare const ModalClose: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Close>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export { Modal as Root, ModalOverlay as Overlay, ModalContent as Content, ModalClose as Close };
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ModalPrimitive } from '@inkeep/cxkit-primitives';
|
|
2
|
-
declare const Modal: (props: ModalPrimitive.PrimitiveModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
declare const ModalOverlay: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Overlay>) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
declare const ModalContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
declare const ModalClose: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Close>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export { Modal as Root, ModalOverlay as Overlay, ModalContent as Content, ModalClose as Close };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithRef } from 'react';
|
|
2
|
-
import { SearchBarPrimitive } from '@inkeep/cxkit-primitives';
|
|
3
|
-
declare const SearchBarContainer: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarContainer>) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
declare const SearchBarButton: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarButton>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
declare const SearchBarContentWrapper: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarContentWrapper>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
declare const SearchBarText: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarText>) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
declare const SearchBarIcon: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare const SearchBarKbdWrapper: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdWrapper>) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
declare const SearchBarKbdModifier: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdModifier>) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
declare const SearchBarKbdShortcutKey: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdShortcutKey>) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export { SearchBarContainer, SearchBarButton, SearchBarContentWrapper, SearchBarText, SearchBarIcon, SearchBarKbdWrapper, SearchBarKbdModifier, SearchBarKbdShortcutKey, };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithRef } from 'react';
|
|
2
|
-
import { SearchBarPrimitive } from '@inkeep/cxkit-primitives';
|
|
3
|
-
declare const SearchBarContainer: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarContainer>) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
declare const SearchBarButton: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarButton>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
declare const SearchBarContentWrapper: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarContentWrapper>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
declare const SearchBarText: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarText>) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
declare const SearchBarIcon: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare const SearchBarKbdWrapper: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdWrapper>) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
declare const SearchBarKbdModifier: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdModifier>) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
declare const SearchBarKbdShortcutKey: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdShortcutKey>) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export { SearchBarContainer, SearchBarButton, SearchBarContentWrapper, SearchBarText, SearchBarIcon, SearchBarKbdWrapper, SearchBarKbdModifier, SearchBarKbdShortcutKey, };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare const markdownStyles: {
|
|
2
|
-
markdownH1: string;
|
|
3
|
-
markdownH2: string;
|
|
4
|
-
markdownP: string;
|
|
5
|
-
markdownLi: string;
|
|
6
|
-
markdownUl: string;
|
|
7
|
-
markdownOl: string;
|
|
8
|
-
markdownLink: string;
|
|
9
|
-
markdownSourceLink: string;
|
|
10
|
-
markdownTable: string;
|
|
11
|
-
markdownTh: string;
|
|
12
|
-
markdownTd: string;
|
|
13
|
-
markdownCode: string;
|
|
14
|
-
codeblockContainer: string;
|
|
15
|
-
codeblockHeader: string;
|
|
16
|
-
codeblockCopyButton: string;
|
|
17
|
-
codeblockHighlighterWrapper: string;
|
|
18
|
-
codeblockHighlighter: string;
|
|
19
|
-
codeblockCode: string;
|
|
20
|
-
};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare const markdownStyles: {
|
|
2
|
-
markdownH1: string;
|
|
3
|
-
markdownH2: string;
|
|
4
|
-
markdownP: string;
|
|
5
|
-
markdownLi: string;
|
|
6
|
-
markdownUl: string;
|
|
7
|
-
markdownOl: string;
|
|
8
|
-
markdownLink: string;
|
|
9
|
-
markdownSourceLink: string;
|
|
10
|
-
markdownTable: string;
|
|
11
|
-
markdownTh: string;
|
|
12
|
-
markdownTd: string;
|
|
13
|
-
markdownCode: string;
|
|
14
|
-
codeblockContainer: string;
|
|
15
|
-
codeblockHeader: string;
|
|
16
|
-
codeblockCopyButton: string;
|
|
17
|
-
codeblockHighlighterWrapper: string;
|
|
18
|
-
codeblockHighlighter: string;
|
|
19
|
-
codeblockCode: string;
|
|
20
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { VariantProps } from 'class-variance-authority';
|
|
2
|
-
import { ClassProp } from 'class-variance-authority/types';
|
|
3
|
-
export declare const aiChatPageWrapper: (props?: ({
|
|
4
|
-
size?: "default" | "expand" | "shrink-vertically" | "full-viewport" | null | undefined;
|
|
5
|
-
variant?: "container-with-shadow" | "no-shadow" | null | undefined;
|
|
6
|
-
} & ClassProp) | undefined) => string;
|
|
7
|
-
export type AiChatPageWrapperVariants = VariantProps<typeof aiChatPageWrapper>;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { VariantProps } from 'class-variance-authority';
|
|
2
|
-
import { ClassProp } from 'class-variance-authority/types';
|
|
3
|
-
export declare const aiChatPageWrapper: (props?: ({
|
|
4
|
-
size?: "default" | "expand" | "shrink-vertically" | "full-viewport" | null | undefined;
|
|
5
|
-
variant?: "container-with-shadow" | "no-shadow" | null | undefined;
|
|
6
|
-
} & ClassProp) | undefined) => string;
|
|
7
|
-
export type AiChatPageWrapperVariants = VariantProps<typeof aiChatPageWrapper>;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ClassProp } from 'class-variance-authority/types';
|
|
2
|
-
export declare const button: (props?: ({
|
|
3
|
-
variant?: "solid" | "iconButton" | "ghost" | "outline" | null | undefined;
|
|
4
|
-
size?: "sm" | "md" | "xs" | null | undefined;
|
|
5
|
-
preset?: "neutralFilled" | null | undefined;
|
|
6
|
-
} & ClassProp) | undefined) => string;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ClassProp } from 'class-variance-authority/types';
|
|
2
|
-
export declare const button: (props?: ({
|
|
3
|
-
variant?: "solid" | "iconButton" | "ghost" | "outline" | null | undefined;
|
|
4
|
-
size?: "sm" | "md" | "xs" | null | undefined;
|
|
5
|
-
preset?: "neutralFilled" | null | undefined;
|
|
6
|
-
} & ClassProp) | undefined) => string;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ClassProp } from 'class-variance-authority/types';
|
|
2
|
-
export declare const citation: (props?: ({
|
|
3
|
-
slot?: "root" | "icon" | "title" | "indicator" | "breadcrumbs" | "breadcrumbsIcon" | "tag" | "description" | "descriptionPart" | null | undefined;
|
|
4
|
-
} & ClassProp) | undefined) => string;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ClassProp } from 'class-variance-authority/types';
|
|
2
|
-
export declare const citation: (props?: ({
|
|
3
|
-
slot?: "root" | "icon" | "title" | "indicator" | "breadcrumbs" | "breadcrumbsIcon" | "tag" | "description" | "descriptionPart" | null | undefined;
|
|
4
|
-
} & ClassProp) | undefined) => string;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export * from './ai-chat-page-wrapper';
|
|
2
|
-
export * from './attachment';
|
|
3
|
-
export * from './button';
|
|
4
|
-
export * from './checkbox';
|
|
5
|
-
export * from './citation';
|
|
6
|
-
export * from './icon';
|
|
7
|
-
export * from './input';
|
|
8
|
-
export * from './link';
|
|
9
|
-
export * from './markdown';
|
|
10
|
-
export * from './modal';
|
|
11
|
-
export * from './popover';
|
|
12
|
-
export * from './scrollable';
|
|
13
|
-
export * from './select';
|
|
14
|
-
export * from './skeleton';
|
|
15
|
-
export * from './widget-toggle';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export * from './ai-chat-page-wrapper';
|
|
2
|
-
export * from './attachment';
|
|
3
|
-
export * from './button';
|
|
4
|
-
export * from './checkbox';
|
|
5
|
-
export * from './citation';
|
|
6
|
-
export * from './icon';
|
|
7
|
-
export * from './input';
|
|
8
|
-
export * from './link';
|
|
9
|
-
export * from './markdown';
|
|
10
|
-
export * from './modal';
|
|
11
|
-
export * from './popover';
|
|
12
|
-
export * from './scrollable';
|
|
13
|
-
export * from './select';
|
|
14
|
-
export * from './skeleton';
|
|
15
|
-
export * from './widget-toggle';
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ClassProp } from 'class-variance-authority/types';
|
|
2
|
-
export declare const heading: (props?: ({
|
|
3
|
-
size?: "md" | "lg" | null | undefined;
|
|
4
|
-
} & ClassProp) | undefined) => string;
|
|
5
|
-
export declare const list: (props?: ({
|
|
6
|
-
style?: "ordered" | "unordered" | null | undefined;
|
|
7
|
-
} & ClassProp) | undefined) => string;
|
|
8
|
-
export declare const table: (props?: ({
|
|
9
|
-
slot?: "root" | "th" | "td" | null | undefined;
|
|
10
|
-
size?: "md" | null | undefined;
|
|
11
|
-
} & ClassProp) | undefined) => string;
|
|
12
|
-
export declare const sup: (props?: ClassProp | undefined) => string;
|
|
13
|
-
export declare const code: (props?: ClassProp | undefined) => string;
|
|
14
|
-
export declare const codeblock: (props?: ({
|
|
15
|
-
slot?: "container" | "header" | "copyButton" | "highlighter" | null | undefined;
|
|
16
|
-
} & ClassProp) | undefined) => string;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ClassProp } from 'class-variance-authority/types';
|
|
2
|
-
export declare const heading: (props?: ({
|
|
3
|
-
size?: "md" | "lg" | null | undefined;
|
|
4
|
-
} & ClassProp) | undefined) => string;
|
|
5
|
-
export declare const list: (props?: ({
|
|
6
|
-
style?: "ordered" | "unordered" | null | undefined;
|
|
7
|
-
} & ClassProp) | undefined) => string;
|
|
8
|
-
export declare const table: (props?: ({
|
|
9
|
-
slot?: "root" | "th" | "td" | null | undefined;
|
|
10
|
-
size?: "md" | null | undefined;
|
|
11
|
-
} & ClassProp) | undefined) => string;
|
|
12
|
-
export declare const sup: (props?: ClassProp | undefined) => string;
|
|
13
|
-
export declare const code: (props?: ClassProp | undefined) => string;
|
|
14
|
-
export declare const codeblock: (props?: ({
|
|
15
|
-
slot?: "container" | "header" | "copyButton" | "highlighter" | null | undefined;
|
|
16
|
-
} & ClassProp) | undefined) => string;
|