@altimateai/ui-components 0.0.63 → 0.0.64-beta2
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/Carousel.js +8523 -0
- package/dist/CoachForm.js +8524 -8512
- package/dist/Stack.js +3 -3
- package/dist/assets/icons/index.js +1 -1
- package/dist/chatbotV2/index.d.ts +16 -7
- package/dist/chatbotV2/index.js +21 -21
- package/dist/index.d.ts +2 -2
- package/dist/index2.js +6 -6
- package/dist/lineage/index.js +1 -1
- package/dist/main.js +1 -1
- package/dist/shadcn/index.d.ts +36 -2
- package/dist/shadcn/index.js +3490 -2805
- package/dist/storybook/TagsInput.stories.tsx +34 -1
- package/dist/{types-B4_bdpWO.d.ts → types-DbY7DJ8y.d.ts} +14 -12
- package/package.json +1 -1
- package/dist/TagsInput.js +0 -6935
package/dist/Stack.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as a, K as s, z as c, f as I, h as e, B as r, p as t, m as i, a as l, U as C, b as h, o as d, C as m, c as p, S as b, d as f, g as v, Q as D, T as g, e as S,
|
|
1
|
+
import { A as a, K as s, z as c, f as I, h as e, B as r, p as t, m as i, a as l, U as C, b as h, o as d, C as m, c as p, S as b, d as f, g as v, Q as D, T as g, e as S, y as U, G as k, i as u, D as w, t as A, E as R, F as G, _ as L, P as F, J as T, O as B, N as H, r as M, H as P, I as x, $ as y, M as z, q as E, V as N, R as O, L as V, Y as W, W as q, x as J, n as K, k as Q, l as X, u as Y, w as Z, v as _, s as $, Z as j, X as oo } from "../../index2.js";
|
|
2
2
|
export {
|
|
3
3
|
a as AddIcon,
|
|
4
4
|
s as ArrowLeftIcon,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React__default, { FC } from 'react';
|
|
2
|
-
import { j as ChatbotProps, k as ChatbotProviderProps, m as ChatState, A as Artifact, n as ContextOption, I as InteractionRequest, o as ChatMessage, p as AgentAction, q as ChatResponse, F as Feedback, r as LoadingState, s as ChatSession, i as Citation, t as TodoItem, M as MessageAttachment, D as DetectedEntity, E as EntityType, u as AgentStreamResponse
|
|
3
|
-
export { v as AssistantMeta, x as ChatbotUrls, y as Datamate, z as EntityDetectionRequest, B as EntityDetectionResponse, w as FileUploadProps,
|
|
1
|
+
import React__default, { FC, ReactNode } from 'react';
|
|
2
|
+
import { j as ChatbotProps, k as ChatbotProviderProps, m as ChatState, A as Artifact, n as ContextOption, I as InteractionRequest, o as ChatMessage, p as AgentAction, q as ChatResponse, F as Feedback, r as LoadingState, s as ChatSession, i as Citation, t as TodoItem, M as MessageAttachment, D as DetectedEntity, E as EntityType, u as AgentStreamResponse } from '../types-DbY7DJ8y.js';
|
|
3
|
+
export { v as AssistantMeta, x as ChatbotUrls, y as Datamate, z as EntityDetectionRequest, B as EntityDetectionResponse, w as FileUploadProps, Q as FinalResponseData, J as InteractionChoice, H as InteractionType, G as Mode, O as ProgressUpdate, N as ToolUsageData, U as UploadedFile, R as agentStreamResponseSchema, K as todoItemSchema } from '../types-DbY7DJ8y.js';
|
|
4
4
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
5
5
|
import { UnknownAction } from '@reduxjs/toolkit';
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -13,6 +13,7 @@ interface ChatContextType extends ChatState {
|
|
|
13
13
|
}
|
|
14
14
|
interface ChatProviderRef {
|
|
15
15
|
resetSession: () => void;
|
|
16
|
+
setUserInput: (text: string) => void;
|
|
16
17
|
}
|
|
17
18
|
declare const useChatContext: () => ChatContextType;
|
|
18
19
|
declare const ChatProvider: React__default.ForwardRefExoticComponent<ChatbotProviderProps & React__default.RefAttributes<ChatProviderRef>>;
|
|
@@ -32,8 +33,9 @@ interface ContextPanelProps {
|
|
|
32
33
|
contextFieldKey: string;
|
|
33
34
|
};
|
|
34
35
|
contextOptions?: ContextOption[];
|
|
36
|
+
children?: ReactNode[];
|
|
35
37
|
}
|
|
36
|
-
declare const ContextPanel:
|
|
38
|
+
declare const ContextPanel: FC<ContextPanelProps>;
|
|
37
39
|
|
|
38
40
|
interface FeedbackButtonsProps {
|
|
39
41
|
messageId: string;
|
|
@@ -52,11 +54,14 @@ declare const LoadingIndicator: FC;
|
|
|
52
54
|
interface MessageItemProps {
|
|
53
55
|
message: ChatMessage;
|
|
54
56
|
isLastMessage?: boolean;
|
|
57
|
+
isFirstMessage?: boolean;
|
|
58
|
+
handleSavePrompt?: (message: ChatMessage) => void;
|
|
55
59
|
}
|
|
56
60
|
declare const MessageItem: FC<MessageItemProps>;
|
|
57
61
|
|
|
58
62
|
interface MessageListProps {
|
|
59
63
|
messages: ChatMessage[];
|
|
64
|
+
handleSavePrompt?: (message: ChatMessage) => void;
|
|
60
65
|
}
|
|
61
66
|
declare const MessageList: FC<MessageListProps>;
|
|
62
67
|
|
|
@@ -176,7 +181,7 @@ declare const clearActions: _reduxjs_toolkit.ActionCreatorWithoutPayload<"chat/c
|
|
|
176
181
|
declare const setTodos: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
177
182
|
id: string;
|
|
178
183
|
content: string;
|
|
179
|
-
status: "
|
|
184
|
+
status: "pending" | "in_progress" | "completed";
|
|
180
185
|
priority: "high" | "low" | "medium";
|
|
181
186
|
}[], "chat/setTodos">;
|
|
182
187
|
declare const clearTodos: _reduxjs_toolkit.ActionCreatorWithoutPayload<"chat/clearTodos">;
|
|
@@ -190,6 +195,10 @@ declare const updateEntities: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateEn
|
|
|
190
195
|
declare const updateEntityType: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateEntityTypePayload, "chat/updateEntityType">;
|
|
191
196
|
declare const setSessions: _reduxjs_toolkit.ActionCreatorWithPayload<Record<string, ChatSession>, "chat/setSessions">;
|
|
192
197
|
declare const resetSession: _reduxjs_toolkit.ActionCreatorWithoutPayload<"chat/resetSession">;
|
|
198
|
+
declare const setUserInput: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
199
|
+
sessionId: string;
|
|
200
|
+
userInput: string;
|
|
201
|
+
}, "chat/setUserInput">;
|
|
193
202
|
|
|
194
203
|
interface StreamProcessorCallbacks {
|
|
195
204
|
onAction?: (action: AgentAction) => void;
|
|
@@ -257,7 +266,7 @@ declare function processPlaygroundSessionTurns(turns: Array<{
|
|
|
257
266
|
}>, sessionId: string, modes: {
|
|
258
267
|
label: string;
|
|
259
268
|
value: string;
|
|
260
|
-
}[], datamates: string[], context
|
|
269
|
+
}[], datamates: string[], context?: Record<string, unknown>): Record<string, {
|
|
261
270
|
id: string;
|
|
262
271
|
messages: Array<{
|
|
263
272
|
id: string;
|
|
@@ -288,4 +297,4 @@ declare const Citations: ({ citations, frontEndUrl, }: {
|
|
|
288
297
|
frontEndUrl: string;
|
|
289
298
|
}) => JSX.Element | null;
|
|
290
299
|
|
|
291
|
-
export { AgentAction, AgentStreamResponse, Artifact, Artifacts, CancelGenerationButton, ChatMessage, ChatProvider, ChatResponse, ChatSession, ChatState, ChatTriggerLink, ChatbotProps, ChatbotProviderProps, Chatbot as ChatbotV2, Citations, CoachAI, ContextOption, ContextPanel, DetectedEntity, EntityType, Feedback, FeedbackButtons, InteractionPrompt, InteractionRequest, LoadingIndicator, LoadingState, MessageAttachment, MessageItem, MessageList, MessageMenu, QuestionForm, RegenerateButton,
|
|
300
|
+
export { AgentAction, AgentStreamResponse, Artifact, Artifacts, CancelGenerationButton, ChatMessage, ChatProvider, ChatResponse, ChatSession, ChatState, ChatTriggerLink, ChatbotProps, ChatbotProviderProps, Chatbot as ChatbotV2, Citations, CoachAI, ContextOption, ContextPanel, DetectedEntity, EntityType, Feedback, FeedbackButtons, InteractionPrompt, InteractionRequest, LoadingIndicator, LoadingState, MessageAttachment, MessageItem, MessageList, MessageMenu, QuestionForm, RegenerateButton, StatusUpdates, TodoItem, addAction, addMessage, clearActions, clearContext, clearHistory, clearTodos, createSession, deleteMessage, initialState, processAgentMessageContent, processAgentStream, processExistingConversation, processPlaygroundSessionTurns, resetSession, sendMessageAndProcessStream, setAbortController, setCurrentSession, setError, setLoadingState, setSelectedModel, setSessions, setTodos, setUserInput, streamResponseToAgentMessages, updateContext, updateDatamateInSession, updateEntities, updateEntityType, updateMessageFeedback, updateMode, useAgentChat, useChatContext };
|
package/dist/chatbotV2/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as
|
|
1
|
+
import { A as a, b as t, a as o, g as n, C as r, m as i, c as d, d as c, E as g, F as p, I as u, L as C, n as S, M as l, e as m, f as M, Q as A, R as h, S as I, J as T, x, o as y, K as E, T as L, z as P, O as b, r as k, B, q as F, k as R, p as f, j as v, l as U, Z as D, s as G, H, w as Q, G as V, D as j, v as q, Y as w, N as z, _ as J, i as K, t as N, P as O, V as W, W as X, X as Y, y as Z, U as _, h as $, u as ss } from "../CoachForm.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
3
|
+
a as Artifacts,
|
|
4
4
|
t as CancelGenerationButton,
|
|
5
5
|
o as ChatProvider,
|
|
6
6
|
n as ChatTriggerLink,
|
|
@@ -9,19 +9,19 @@ export {
|
|
|
9
9
|
d as CoachAI,
|
|
10
10
|
c as ContextPanel,
|
|
11
11
|
g as EntityType,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
p as FeedbackButtons,
|
|
13
|
+
u as InteractionPrompt,
|
|
14
|
+
C as LoadingIndicator,
|
|
15
|
+
S as LoadingState,
|
|
16
16
|
l as MessageItem,
|
|
17
17
|
m as MessageList,
|
|
18
18
|
M as MessageMenu,
|
|
19
19
|
A as QuestionForm,
|
|
20
20
|
h as RegenerateButton,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
I as StatusUpdates,
|
|
22
|
+
T as addAction,
|
|
23
|
+
x as addMessage,
|
|
24
|
+
y as agentStreamResponseSchema,
|
|
25
25
|
E as clearActions,
|
|
26
26
|
L as clearContext,
|
|
27
27
|
P as clearHistory,
|
|
@@ -32,17 +32,17 @@ export {
|
|
|
32
32
|
R as processAgentMessageContent,
|
|
33
33
|
f as processAgentStream,
|
|
34
34
|
v as processExistingConversation,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
V as
|
|
41
|
-
j as
|
|
42
|
-
q as
|
|
43
|
-
w as
|
|
44
|
-
z as
|
|
45
|
-
J as
|
|
35
|
+
U as processPlaygroundSessionTurns,
|
|
36
|
+
D as resetSession,
|
|
37
|
+
G as sendMessageAndProcessStream,
|
|
38
|
+
H as setAbortController,
|
|
39
|
+
Q as setCurrentSession,
|
|
40
|
+
V as setError,
|
|
41
|
+
j as setLoadingState,
|
|
42
|
+
q as setSelectedModel,
|
|
43
|
+
w as setSessions,
|
|
44
|
+
z as setTodos,
|
|
45
|
+
J as setUserInput,
|
|
46
46
|
K as streamResponseToAgentMessages,
|
|
47
47
|
N as todoItemSchema,
|
|
48
48
|
O as updateContext,
|
package/dist/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import { B as ButtonProps } from './Button-CVsSwe4f.js';
|
|
|
4
4
|
import { Components } from 'react-markdown';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { PlotParams } from 'react-plotly.js';
|
|
7
|
-
import { T as TaskLabels, a as TeamMateContextProps, b as TeamMateState, c as TeamMateConfig, d as TeamMateActionType, e as TeamMateAvailability } from './types-
|
|
8
|
-
export { i as Citation, f as CoachAiConfirmationResponse, C as CoachAiResponse, g as ContentCategory, L as Learning, P as PersonalizationScope, h as TeamMateComponentProps, l as learningSchema } from './types-
|
|
7
|
+
import { T as TaskLabels, a as TeamMateContextProps, b as TeamMateState, c as TeamMateConfig, d as TeamMateActionType, e as TeamMateAvailability } from './types-DbY7DJ8y.js';
|
|
8
|
+
export { i as Citation, f as CoachAiConfirmationResponse, C as CoachAiResponse, g as ContentCategory, L as Learning, P as PersonalizationScope, h as TeamMateComponentProps, l as learningSchema } from './types-DbY7DJ8y.js';
|
|
9
9
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
10
10
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
11
11
|
import * as immer from 'immer';
|
package/dist/index2.js
CHANGED
package/dist/lineage/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import { j as r, g as Cs, h as zr, i as $r, k as g2, c as Wr, b as Ur, l as gs,
|
|
|
5
5
|
import * as g from "react";
|
|
6
6
|
import T, { createContext as It, memo as ce, useMemo as we, forwardRef as A2, useEffect as X, useRef as J, useContext as Ve, useState as se, useCallback as re, useReducer as Gr, useImperativeHandle as qr } from "react";
|
|
7
7
|
import { s as Ze, o as ws, p as e1, T as qt, q as Jt, k as Jr, g as ys, A as ue, l as Dt, I as Es, u as Qr, m as ea } from "../redux-toolkit.modern.js";
|
|
8
|
-
import { h as Ne, X as Xe, Y as vs, Z as bs, B as xe, _ as _s, a6 as R, $ as Se, f as Ss, I as m2, T as ta, a3 as V2, a4 as Ns,
|
|
8
|
+
import { h as Ne, X as Xe, Y as vs, Z as bs, B as xe, _ as _s, a6 as R, $ as Se, f as Ss, I as m2, T as ta, a3 as V2, a4 as Ns, a0 as yt, a8 as na, M as sa, a9 as oa, aa as ra, N as aa } from "../Stack.js";
|
|
9
9
|
import { createPortal as ot } from "react-dom";
|
|
10
10
|
import { d as ia, C as la, T as ca } from "../dayjs.min.js";
|
|
11
11
|
/**
|
package/dist/main.js
CHANGED
|
@@ -6,7 +6,7 @@ import { j as h, A as dn, e as sr, f as ar, a as ur, d as lr, D as cr, E as dr,
|
|
|
6
6
|
import * as te from "react";
|
|
7
7
|
import Z, { createContext as _e, useReducer as fn, useCallback as we, useMemo as fe, useContext as be, useLayoutEffect as gr, useEffect as le, useRef as Se, useId as pn, useInsertionEffect as hr, Children as De, isValidElement as vr, useState as re, lazy as mr } from "react";
|
|
8
8
|
import Er, { createPortal as bt } from "react-dom";
|
|
9
|
-
import { u as yr, F as Mt, a as br, A as gn, N as Lt, B as Cr } from "./
|
|
9
|
+
import { u as yr, F as Mt, a as br, A as gn, N as Lt, B as Cr } from "./Carousel.js";
|
|
10
10
|
import { S as Sr } from "./Switch.js";
|
|
11
11
|
import './main.css';var Ct = /* @__PURE__ */ ((e) => (e.DBT_DOCS = "dbt-docs", e.DOCUMENTATION_EDITOR = "documentation-editor", e.SAAS = "saas", e))(Ct || {});
|
|
12
12
|
const _r = () => {
|
package/dist/shadcn/index.d.ts
CHANGED
|
@@ -34,6 +34,9 @@ import * as ResizablePrimitive from 'react-resizable-panels';
|
|
|
34
34
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
35
35
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
36
36
|
import * as TagsInputPrimitive from '@diceui/tags-input';
|
|
37
|
+
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
38
|
+
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
39
|
+
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
37
40
|
|
|
38
41
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: ComponentProps<typeof DayPicker> & {
|
|
39
42
|
buttonVariant?: ComponentProps<typeof Button>["variant"];
|
|
@@ -671,11 +674,42 @@ interface DragAndDropFileUploadProps {
|
|
|
671
674
|
}
|
|
672
675
|
declare function DragAndDropFileUpload({ onFilesSelected, acceptedFileTypes, maxFiles, className, }: DragAndDropFileUploadProps): react_jsx_runtime.JSX.Element;
|
|
673
676
|
|
|
674
|
-
|
|
677
|
+
interface TagsInputProps extends React$1.ComponentPropsWithoutRef<typeof TagsInputPrimitive.Root> {
|
|
678
|
+
suggestions?: string[];
|
|
679
|
+
onSuggestionSelect?: (suggestion: string) => void;
|
|
680
|
+
}
|
|
681
|
+
declare const TagsInput: React$1.ForwardRefExoticComponent<TagsInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
675
682
|
declare const TagsInputLabel: React$1.ForwardRefExoticComponent<Omit<TagsInputPrimitive.TagsInputLabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
676
683
|
declare const TagsInputList: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
677
684
|
declare const TagsInputInput: React$1.ForwardRefExoticComponent<Omit<TagsInputPrimitive.TagsInputInputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
678
685
|
declare const TagsInputItem: React$1.ForwardRefExoticComponent<Omit<TagsInputPrimitive.TagsInputItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
679
686
|
declare const TagsInputClear: React$1.ForwardRefExoticComponent<Omit<TagsInputPrimitive.TagsInputClearProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
680
687
|
|
|
681
|
-
|
|
688
|
+
declare const toggleVariants: (props?: ({
|
|
689
|
+
variant?: "default" | "outline" | null | undefined;
|
|
690
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
691
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
692
|
+
declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
693
|
+
|
|
694
|
+
declare function ToggleGroup({ className, variant, size, spacing, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & {
|
|
695
|
+
spacing?: number;
|
|
696
|
+
}): react_jsx_runtime.JSX.Element;
|
|
697
|
+
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
698
|
+
|
|
699
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
700
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
701
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
702
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
703
|
+
type CarouselProps = {
|
|
704
|
+
opts?: CarouselOptions;
|
|
705
|
+
plugins?: CarouselPlugin;
|
|
706
|
+
orientation?: "horizontal" | "vertical";
|
|
707
|
+
setApi?: (api: CarouselApi) => void;
|
|
708
|
+
};
|
|
709
|
+
declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
|
|
710
|
+
declare function CarouselContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
711
|
+
declare function CarouselItem({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
712
|
+
declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
713
|
+
declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
714
|
+
|
|
715
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AutosizeTextAreaRef, AutosizeTextarea, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Combobox, ComboboxInner, type ComboboxOption, type ComboboxRef, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, DebouncedInput, type DebouncedInputProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragAndDropFileUpload, type DragAndDropFileUploadProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, type InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, type Option, PREDEFINED_RANGES, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Switch, TZDateRange, Tabs, TabsContent, TabsList, type TabsProps, TabsTrigger, TagsInput, TagsInputClear, TagsInputInput, TagsInputItem, TagsInputLabel, TagsInputList, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipCore, TooltipProvider, TooltipTrigger, Typography, badgeVariants, reducer, tabsVariants, toast, toggleVariants, useAutosizeTextArea, useFormField, useSidebar, useToast };
|