@cupcodev/ui 3.1.0 → 5.0.0

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.ts CHANGED
@@ -15,8 +15,8 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
15
15
  import { VariantProps } from 'class-variance-authority';
16
16
  import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
17
17
  import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
18
- import { B as ButtonProps } from './charts-DqY2Q-7w.js';
19
- export { a as Button, c as Carousel, C as CarouselApi, d as CarouselContent, e as CarouselItem, g as CarouselNext, f as CarouselPrevious, n as ChartConfig, h as ChartContainer, k as ChartLegend, l as ChartLegendContent, m as ChartStyle, i as ChartTooltip, j as ChartTooltipContent, b as buttonVariants } from './charts-DqY2Q-7w.js';
18
+ import { B as ButtonProps } from './charts-citXBvHw.js';
19
+ export { a as Button, c as Carousel, C as CarouselApi, d as CarouselContent, e as CarouselItem, g as CarouselNext, f as CarouselPrevious, n as ChartConfig, h as ChartContainer, k as ChartLegend, l as ChartLegendContent, m as ChartStyle, i as ChartTooltip, j as ChartTooltipContent, b as buttonVariants } from './charts-citXBvHw.js';
20
20
  import { DayPicker } from 'react-day-picker';
21
21
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
22
22
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
@@ -153,140 +153,6 @@ type Props = {
153
153
  };
154
154
  declare const DockWrapper: React__default.FC<Props>;
155
155
 
156
- interface EmptyStateProps {
157
- icon?: LucideIcon;
158
- title: string;
159
- description?: string;
160
- action?: {
161
- label: string;
162
- onClick: () => void;
163
- };
164
- className?: string;
165
- }
166
- declare function EmptyState({ icon: Icon, title, description, action, className, }: EmptyStateProps): react_jsx_runtime.JSX.Element;
167
-
168
- interface ErrorBoundaryProps {
169
- children: React__default.ReactNode;
170
- fallback?: React__default.ReactNode;
171
- }
172
- interface ErrorBoundaryState {
173
- hasError: boolean;
174
- error?: Error;
175
- }
176
- declare class ErrorBoundary extends React__default.Component<ErrorBoundaryProps, ErrorBoundaryState> {
177
- constructor(props: ErrorBoundaryProps);
178
- static getDerivedStateFromError(error: Error): ErrorBoundaryState;
179
- componentDidCatch(error: Error, errorInfo: React__default.ErrorInfo): void;
180
- handleReset: () => void;
181
- render(): string | number | bigint | boolean | Iterable<React__default.ReactNode> | Promise<string | number | bigint | boolean | React__default.ReactPortal | React__default.ReactElement<unknown, string | React__default.JSXElementConstructor<any>> | Iterable<React__default.ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element | null | undefined;
182
- }
183
-
184
- interface EyebrowProps extends React.HTMLAttributes<HTMLDivElement> {
185
- variant?: "galaxy" | "pink" | "purple" | "outline";
186
- glow?: boolean;
187
- }
188
- declare const Eyebrow: React$1.ForwardRefExoticComponent<EyebrowProps & React$1.RefAttributes<HTMLDivElement>>;
189
-
190
- interface HeroTitleProps {
191
- eyebrow?: string;
192
- smallPrefix?: string;
193
- strong: string;
194
- className?: string;
195
- level?: 1 | 2 | 3;
196
- }
197
- declare const HeroTitle: ({ eyebrow, smallPrefix, strong, className, level }: HeroTitleProps) => react_jsx_runtime.JSX.Element;
198
-
199
- interface InputFieldProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
200
- label?: string;
201
- error?: string;
202
- leftIcon?: React$1.ReactNode;
203
- rightIcon?: React$1.ReactNode;
204
- }
205
- declare const InputField: React$1.ForwardRefExoticComponent<InputFieldProps & React$1.RefAttributes<HTMLInputElement>>;
206
-
207
- interface JellyButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
208
- variant?: "primary" | "secondary" | "half" | "original-pink" | "original-green";
209
- children: React.ReactNode;
210
- size?: "sm" | "md" | "lg";
211
- }
212
- declare const JellyButton: React$1.ForwardRefExoticComponent<JellyButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
213
-
214
- type Size = 'xxs' | 'xs' | 'sm' | 'md' | 'lg';
215
- type ResponsiveSize = Size | {
216
- base?: Size;
217
- sm?: Size;
218
- md?: Size;
219
- lg?: Size;
220
- xl?: Size;
221
- };
222
- declare function useBreakpoint(): "base" | "sm" | "md" | "lg" | "xl" | null;
223
- declare function responsiveSizeClasses(s: ResponsiveSize, currentBp: 'base' | 'sm' | 'md' | 'lg' | 'xl' | null): "text-[10px] px-3 py-1.5" | "text-xs px-4 py-2" | "text-sm px-4 py-2" | "text-base px-6 py-3" | "text-lg px-8 py-4";
224
-
225
- type JellyButtonOriginalProps = {
226
- label: string;
227
- icon?: React__default.ReactNode;
228
- color?: 'pink' | 'green';
229
- href?: string;
230
- popupId?: string;
231
- size?: ResponsiveSize;
232
- className?: string;
233
- onClick?: () => void;
234
- };
235
- declare function JellyButtonOriginal({ label, icon, color, href, popupId, size, className, onClick, }: JellyButtonOriginalProps): react_jsx_runtime.JSX.Element;
236
-
237
- interface LoadingScreenProps {
238
- message?: string;
239
- fullScreen?: boolean;
240
- variant?: "default" | "galaxy" | "minimal";
241
- }
242
- declare const LoadingScreen: React$1.FC<LoadingScreenProps>;
243
-
244
- interface LoadingSpinnerProps {
245
- size?: "sm" | "md" | "lg";
246
- className?: string;
247
- }
248
- declare const LoadingSpinner: React$1.FC<LoadingSpinnerProps>;
249
- interface SkeletonProps {
250
- className?: string;
251
- }
252
- declare const Skeleton$1: React$1.FC<SkeletonProps>;
253
- declare const SkeletonText: React$1.FC<{
254
- lines?: number;
255
- }>;
256
-
257
- declare const Modal: React$1.FC<DialogPrimitive.DialogProps>;
258
- declare const ModalTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
259
- declare const ModalClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
260
- interface ModalContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
261
- size?: "sm" | "md" | "lg" | "xl";
262
- }
263
- declare const ModalContent: React$1.ForwardRefExoticComponent<ModalContentProps & React$1.RefAttributes<HTMLDivElement>>;
264
- declare const ModalHeader: {
265
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
266
- displayName: string;
267
- };
268
- declare const ModalFooter: {
269
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
270
- displayName: string;
271
- };
272
- declare const ModalTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
273
- declare const ModalDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
274
-
275
- interface NavItem {
276
- label: string;
277
- href: string;
278
- icon?: React$1.ReactNode;
279
- onClick?: (event: React$1.MouseEvent<HTMLAnchorElement | HTMLButtonElement>) => void;
280
- isActive?: boolean;
281
- }
282
- interface NavbarCupcodeProps {
283
- logo: React$1.ReactNode;
284
- items: NavItem[];
285
- actions?: React$1.ReactNode;
286
- className?: string;
287
- }
288
- declare const NavbarCupcode: React$1.FC<NavbarCupcodeProps>;
289
-
290
156
  type UserMenuTabId = "profile" | "notifications" | "chat" | "settings" | "logout";
291
157
  type UserPresenceStatus$1 = "online" | "away" | "busy" | "lunch" | "call" | "coding" | "designing" | "offline";
292
158
  type UserMenuNotificationKind = "system" | "comment" | "access" | "billing" | "chat" | "security";
@@ -459,6 +325,8 @@ type MainNavbarProps = {
459
325
  ctaHref?: string;
460
326
  pathname?: string;
461
327
  logo?: React.ReactNode;
328
+ className?: string;
329
+ showNavItems?: boolean;
462
330
  onNavigate?: (href: string) => void;
463
331
  authStatus?: MainNavbarAuthStatus;
464
332
  authUser?: MainNavbarAuthUser | null;
@@ -471,6 +339,177 @@ type MainNavbarProps = {
471
339
  };
472
340
  declare const MainNavbar: React.FC<MainNavbarProps>;
473
341
 
342
+ type MainLayoutProps = {
343
+ children: ReactNode;
344
+ navbarProps?: MainNavbarProps;
345
+ className?: string;
346
+ contentClassName?: string;
347
+ sidebarLogo?: ReactNode;
348
+ sidebarCollapsedLogo?: ReactNode;
349
+ };
350
+ declare const MainLayout: ({ children, navbarProps, className, contentClassName, sidebarLogo, sidebarCollapsedLogo, }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
351
+
352
+ interface NavItem {
353
+ label: string;
354
+ href: string;
355
+ icon?: React$1.ReactNode;
356
+ groupId?: string;
357
+ groupLabel?: string;
358
+ groupIcon?: React$1.ReactNode;
359
+ onClick?: (event: React$1.MouseEvent<HTMLAnchorElement | HTMLButtonElement>) => void;
360
+ isActive?: boolean;
361
+ }
362
+ interface NavbarCupcodeProps {
363
+ logo: React$1.ReactNode;
364
+ items: NavItem[];
365
+ actions?: React$1.ReactNode;
366
+ className?: string;
367
+ }
368
+ declare const NavbarCupcode: React$1.FC<NavbarCupcodeProps>;
369
+
370
+ type AppSidebarItem = {
371
+ id: string;
372
+ label: string;
373
+ icon?: ReactNode;
374
+ route: string;
375
+ };
376
+ type AppSidebarGroup = {
377
+ id: string;
378
+ label: string;
379
+ icon?: ReactNode;
380
+ items: AppSidebarItem[];
381
+ };
382
+ declare const buildSidebarGroupsFromNavItems: (items: NavItem[], defaultGroupLabel?: string) => AppSidebarGroup[];
383
+ declare const defaultSidebarGroups: AppSidebarGroup[];
384
+
385
+ type AppSidebarProps = {
386
+ isCollapsed: boolean;
387
+ onToggle: () => void;
388
+ groups?: AppSidebarGroup[];
389
+ logo?: ReactNode;
390
+ collapsedLogo?: ReactNode;
391
+ };
392
+ declare const AppSidebar: ({ isCollapsed, onToggle, groups, logo, collapsedLogo }: AppSidebarProps) => react_jsx_runtime.JSX.Element;
393
+
394
+ interface EmptyStateProps {
395
+ icon?: LucideIcon;
396
+ title: string;
397
+ description?: string;
398
+ action?: {
399
+ label: string;
400
+ onClick: () => void;
401
+ };
402
+ className?: string;
403
+ }
404
+ declare function EmptyState({ icon: Icon, title, description, action, className, }: EmptyStateProps): react_jsx_runtime.JSX.Element;
405
+
406
+ interface ErrorBoundaryProps {
407
+ children: React__default.ReactNode;
408
+ fallback?: React__default.ReactNode;
409
+ }
410
+ interface ErrorBoundaryState {
411
+ hasError: boolean;
412
+ error?: Error;
413
+ }
414
+ declare class ErrorBoundary extends React__default.Component<ErrorBoundaryProps, ErrorBoundaryState> {
415
+ constructor(props: ErrorBoundaryProps);
416
+ static getDerivedStateFromError(error: Error): ErrorBoundaryState;
417
+ componentDidCatch(error: Error, errorInfo: React__default.ErrorInfo): void;
418
+ handleReset: () => void;
419
+ render(): string | number | bigint | boolean | Iterable<React__default.ReactNode> | Promise<string | number | bigint | boolean | React__default.ReactPortal | React__default.ReactElement<unknown, string | React__default.JSXElementConstructor<any>> | Iterable<React__default.ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element | null | undefined;
420
+ }
421
+
422
+ interface EyebrowProps extends React.HTMLAttributes<HTMLDivElement> {
423
+ variant?: "galaxy" | "pink" | "purple" | "outline";
424
+ glow?: boolean;
425
+ }
426
+ declare const Eyebrow: React$1.ForwardRefExoticComponent<EyebrowProps & React$1.RefAttributes<HTMLDivElement>>;
427
+
428
+ interface HeroTitleProps {
429
+ eyebrow?: string;
430
+ smallPrefix?: string;
431
+ strong: string;
432
+ className?: string;
433
+ level?: 1 | 2 | 3;
434
+ }
435
+ declare const HeroTitle: ({ eyebrow, smallPrefix, strong, className, level }: HeroTitleProps) => react_jsx_runtime.JSX.Element;
436
+
437
+ interface InputFieldProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
438
+ label?: string;
439
+ error?: string;
440
+ leftIcon?: React$1.ReactNode;
441
+ rightIcon?: React$1.ReactNode;
442
+ }
443
+ declare const InputField: React$1.ForwardRefExoticComponent<InputFieldProps & React$1.RefAttributes<HTMLInputElement>>;
444
+
445
+ interface JellyButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
446
+ variant?: "primary" | "secondary" | "half" | "original-pink" | "original-green";
447
+ children: React.ReactNode;
448
+ size?: "sm" | "md" | "lg";
449
+ }
450
+ declare const JellyButton: React$1.ForwardRefExoticComponent<JellyButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
451
+
452
+ type Size = 'xxs' | 'xs' | 'sm' | 'md' | 'lg';
453
+ type ResponsiveSize = Size | {
454
+ base?: Size;
455
+ sm?: Size;
456
+ md?: Size;
457
+ lg?: Size;
458
+ xl?: Size;
459
+ };
460
+ declare function useBreakpoint(): "base" | "sm" | "md" | "lg" | "xl" | null;
461
+ declare function responsiveSizeClasses(s: ResponsiveSize, currentBp: 'base' | 'sm' | 'md' | 'lg' | 'xl' | null): "text-[10px] px-3 py-1.5" | "text-xs px-4 py-2" | "text-sm px-4 py-2" | "text-base px-6 py-3" | "text-lg px-8 py-4";
462
+
463
+ type JellyButtonOriginalProps = {
464
+ label: string;
465
+ icon?: React__default.ReactNode;
466
+ color?: "pink" | "green";
467
+ href?: string;
468
+ popupId?: string;
469
+ size?: ResponsiveSize;
470
+ className?: string;
471
+ onClick?: () => void;
472
+ };
473
+ declare function JellyButtonOriginal({ label, icon, color, href, popupId, size, className, onClick, }: JellyButtonOriginalProps): react_jsx_runtime.JSX.Element;
474
+
475
+ interface LoadingScreenProps {
476
+ message?: string;
477
+ fullScreen?: boolean;
478
+ variant?: "default" | "galaxy" | "minimal";
479
+ }
480
+ declare const LoadingScreen: React$1.FC<LoadingScreenProps>;
481
+
482
+ interface LoadingSpinnerProps {
483
+ size?: "sm" | "md" | "lg";
484
+ className?: string;
485
+ }
486
+ declare const LoadingSpinner: React$1.FC<LoadingSpinnerProps>;
487
+ interface SkeletonProps {
488
+ className?: string;
489
+ }
490
+ declare const Skeleton$1: React$1.FC<SkeletonProps>;
491
+ declare const SkeletonText: React$1.FC<{
492
+ lines?: number;
493
+ }>;
494
+
495
+ declare const Modal: React$1.FC<DialogPrimitive.DialogProps>;
496
+ declare const ModalTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
497
+ declare const ModalClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
498
+ interface ModalContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
499
+ size?: "sm" | "md" | "lg" | "xl";
500
+ }
501
+ declare const ModalContent: React$1.ForwardRefExoticComponent<ModalContentProps & React$1.RefAttributes<HTMLDivElement>>;
502
+ declare const ModalHeader: {
503
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
504
+ displayName: string;
505
+ };
506
+ declare const ModalFooter: {
507
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
508
+ displayName: string;
509
+ };
510
+ declare const ModalTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
511
+ declare const ModalDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
512
+
474
513
  interface ParticleSystemProps {
475
514
  count?: number;
476
515
  variant?: "stars" | "comets";
@@ -886,6 +925,13 @@ interface ToastCupcodeProps {
886
925
  }
887
926
  declare const ToastCupcode: React$1.FC<ToastCupcodeProps>;
888
927
 
928
+ type VideoWatchButtonProps = Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, "children"> & {
929
+ label?: string;
930
+ };
931
+ declare const VideoWatchButton: React__default.ForwardRefExoticComponent<Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, "children"> & {
932
+ label?: string;
933
+ } & React__default.RefAttributes<HTMLButtonElement>>;
934
+
889
935
  declare const TooltipProvider$1: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
890
936
  declare const TooltipCupcode: React$1.FC<TooltipPrimitive.TooltipProps>;
891
937
  declare const TooltipTrigger$1: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
@@ -1156,6 +1202,8 @@ declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_reac
1156
1202
  declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
1157
1203
  declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
1158
1204
 
1205
+ declare const GlassCard: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1206
+
1159
1207
  declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
1160
1208
  declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
1161
1209
  declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
@@ -1630,6 +1678,15 @@ declare function slugify(value: string): string;
1630
1678
 
1631
1679
  declare const getMainNavItems: () => NavItem[];
1632
1680
 
1681
+ type LayoutMode = "navbar" | "sidebar";
1682
+ declare const readStoredLayoutMode: () => LayoutMode;
1683
+ declare const writeStoredLayoutMode: (mode: LayoutMode) => void;
1684
+ declare const useLayoutMode: () => LayoutMode;
1685
+ declare const useLayoutModeControl: () => {
1686
+ mode: LayoutMode;
1687
+ setMode: (nextMode: LayoutMode) => void;
1688
+ };
1689
+
1633
1690
  type AccountsAuthConfig = {
1634
1691
  baseUrl: string;
1635
1692
  clientId: string;
@@ -1722,4 +1779,4 @@ declare const getRuntimeEnvOr: (key: string, fallback: string) => string;
1722
1779
  declare const isRuntimeDev: () => boolean;
1723
1780
  declare const resolveCupcodeAppVersion: (explicitVersion?: CupcodeRuntimeEnvValue) => string | undefined;
1724
1781
 
1725
- export { Accordion, AccordionContent, AccordionCupcode, AccordionItem, AccordionTrigger, type AccountsAuthConfig, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, type AuthContextValue, AuthProvider, type AuthStatus, type AuthUser, type UserPresenceStatus as AuthUserPresenceStatus, Avatar, AvatarFallback, AvatarImage, AvatarWithStatus, type AvatarWithStatusProps, BackgroundRainbow, BackgroundStars, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, ButtonProps, CUPCODE_APP_VERSION_ENV_KEY, CUPCODE_APP_VERSION_ENV_KEYS, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardGlass, CardHeader, CardTitle, Checkbox, ChipTag, type ChipTagProps, type ChipVariant, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, AccordionContent$1 as CupcodeAccordionContent, AccordionItem$1 as CupcodeAccordionItem, AccordionTrigger$1 as CupcodeAccordionTrigger, Avatar$1 as CupcodeAvatar, AvatarFallback$1 as CupcodeAvatarFallback, AvatarImage$1 as CupcodeAvatarImage, type StatusType as CupcodeAvatarStatus, Badge$1 as CupcodeBadge, type CupcodeRuntimeEnv, type CupcodeRuntimeEnvValue, Select$1 as CupcodeSelect, SelectContent$1 as CupcodeSelectContent, SelectGroup$1 as CupcodeSelectGroup, SelectItem$1 as CupcodeSelectItem, SelectTrigger$1 as CupcodeSelectTrigger, SelectValue$1 as CupcodeSelectValue, Skeleton$1 as CupcodeSkeleton, type SkeletonProps as CupcodeSkeletonProps, SkeletonText as CupcodeSkeletonText, Switch$1 as CupcodeSwitch, Tabs$1 as CupcodeTabs, TabsContent$1 as CupcodeTabsContent, TabsList$1 as CupcodeTabsList, TabsTrigger$1 as CupcodeTabsTrigger, TooltipContent$1 as CupcodeTooltipContent, TooltipProvider$1 as CupcodeTooltipProvider, TooltipTrigger$1 as CupcodeTooltipTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Dock, type DockButton, type DockCard, type DockCategory, type DockItem, type DockProps, DockWrapper, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EnqueueResult, ErrorBoundary, Eyebrow, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HeroTitle, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputField, type InputFieldProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, JellyButton, JellyButtonOriginal, type JellyButtonOriginalProps, Label, LoadingScreen, LoadingSpinner, type LoadingSpinnerProps, MainNavbar, type MainNavbarAuthUser, type MainNavbarProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalTitle, ModalTrigger, type NavItem, NavbarCupcode, type NavbarCupcodeProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PRESENCE_ACTIVITY_THROTTLE_MS_ENV_KEY, PRESENCE_HEARTBEAT_INTERVAL_MS_ENV_KEY, PRESENCE_IDLE_TIMEOUT_MS_ENV_KEY, PRESENCE_OFFLINE_TIMEOUT_MS_ENV_KEY, PRESENCE_RUNTIME_ENV_KEYS, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, ParticleSystem, Popover, PopoverContent, PopoverTrigger, PricingCard, Progress, ProgressCupcode, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, type ResolveTelescupImageOptions, type ResponsiveSize, ScrollArea, ScrollBar, ScrollbarArea, type ScrollbarAreaProps, type ScrollbarColor, type ScrollbarThemeMode, ScrollbarThemeProvider, type ScrollbarThemeProviderProps, Select, SelectContent, SelectField, type SelectFieldProps, 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, Toaster$1 as SonnerToaster, type StatusType, Switch, SwitchField, type SwitchFieldProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagGroup, type TagGroupProps, type TelescupAsset, TelescupAssetPicker, type TelescupAssetPickerProps, type TelescupAssetType, type TelescupAssetsListResponse, type TelescupClient, type TelescupClientConfig, TelescupClientError, type TelescupFilters, TelescupImage, type TelescupLanguage, type TelescupMeta$1 as TelescupMeta, type TelescupUpdateMetaRequest, type TelescupUpdateMetaResponse, TelescupUpload, type TelescupUploadCompleteRequest, type TelescupUploadCompleteResponse, type TelescupUploadInitRequest, type TelescupUploadInitResponse, type TelescupUploadLabels, type TelescupUploadProps, TelescupUploader, type TelescupUploaderProps, TelescupVideo, Textarea, TextareaField, type TextareaFieldProps, type TextareaProps, ThemeToggle, Timeline, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastCupcode, type ToastCupcodeProps, ToastDescription, type ToastProps, ToastProvider, ToastTitle, type ToastVariant, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type TokenResponse, Tooltip, TooltipContent, TooltipCupcode, TooltipProvider, TooltipTrigger, USER_PRESENCE_LAST_ACTIVE_COLUMN_ENV_KEY, USER_PRESENCE_SOURCE_COLUMN_ENV_KEY, type UploadConflictPolicy, type UploadPolicy, type UploadQueueItem, type UploadQueueStatus, type UseTelescupAssetsOptions, type UseTelescupUploadQueueOptions, type UserMenuChatMessage, type UserMenuChatMessageLog, type UserMenuChatOpenRequest, type UserMenuChatReaction, type UserMenuChatUser, UserMenuCupcode, type UserMenuCupcodeProps, type UserMenuLanguage, type UserMenuNotification, type UserMenuNotificationKind, type UserMenuRecentActivity, type UserMenuTabId, type UserPresenceStatus$1 as UserPresenceStatus, badgeVariants, buildAuthorizeUrl, buildLogoutUrl, buildTelescupImageURL, buildTelescupVideoURL, cn, createTelescupClient, decodeJwt, exchangeCodeForToken, generateCodeChallenge, generateCodeVerifier, generateNonce, generateState, getAccountsConfig, getMainNavItems, getRuntimeEnv, getRuntimeEnvOr, getSupabase, getSupabasePublic, isRuntimeDev, navigationMenuTriggerStyle, parseAssetId, reducer, resolveCupcodeAppVersion, resolveOidcEndpoints, resolveTelescupImageURL, responsiveSizeClasses, setCupcodeRuntimeEnv, slugify, toast, toggleVariants, useActiveSection, useAuth, useBreakpoint, useFormField, useIsMobile, useSidebar, useTelescupAssets, useTelescupImage, useTelescupMeta, useTelescupUploadQueue, useToast };
1782
+ export { Accordion, AccordionContent, AccordionCupcode, AccordionItem, AccordionTrigger, type AccountsAuthConfig, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppSidebar, type AppSidebarGroup, type AppSidebarItem, type AppSidebarProps, AspectRatio, type AuthContextValue, AuthProvider, type AuthStatus, type AuthUser, type UserPresenceStatus as AuthUserPresenceStatus, Avatar, AvatarFallback, AvatarImage, AvatarWithStatus, type AvatarWithStatusProps, BackgroundRainbow, BackgroundStars, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, ButtonProps, CUPCODE_APP_VERSION_ENV_KEY, CUPCODE_APP_VERSION_ENV_KEYS, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardGlass, CardHeader, CardTitle, Checkbox, ChipTag, type ChipTagProps, type ChipVariant, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, AccordionContent$1 as CupcodeAccordionContent, AccordionItem$1 as CupcodeAccordionItem, AccordionTrigger$1 as CupcodeAccordionTrigger, Avatar$1 as CupcodeAvatar, AvatarFallback$1 as CupcodeAvatarFallback, AvatarImage$1 as CupcodeAvatarImage, type StatusType as CupcodeAvatarStatus, Badge$1 as CupcodeBadge, type CupcodeRuntimeEnv, type CupcodeRuntimeEnvValue, Select$1 as CupcodeSelect, SelectContent$1 as CupcodeSelectContent, SelectGroup$1 as CupcodeSelectGroup, SelectItem$1 as CupcodeSelectItem, SelectTrigger$1 as CupcodeSelectTrigger, SelectValue$1 as CupcodeSelectValue, Skeleton$1 as CupcodeSkeleton, type SkeletonProps as CupcodeSkeletonProps, SkeletonText as CupcodeSkeletonText, Switch$1 as CupcodeSwitch, Tabs$1 as CupcodeTabs, TabsContent$1 as CupcodeTabsContent, TabsList$1 as CupcodeTabsList, TabsTrigger$1 as CupcodeTabsTrigger, TooltipContent$1 as CupcodeTooltipContent, TooltipProvider$1 as CupcodeTooltipProvider, TooltipTrigger$1 as CupcodeTooltipTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Dock, type DockButton, type DockCard, type DockCategory, type DockItem, type DockProps, DockWrapper, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EnqueueResult, ErrorBoundary, Eyebrow, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GlassCard, HeroTitle, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputField, type InputFieldProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, JellyButton, JellyButtonOriginal, type JellyButtonOriginalProps, Label, type LayoutMode, LoadingScreen, LoadingSpinner, type LoadingSpinnerProps, MainLayout, type MainLayoutProps, MainNavbar, type MainNavbarAuthUser, type MainNavbarProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalTitle, ModalTrigger, type NavItem, NavbarCupcode, type NavbarCupcodeProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PRESENCE_ACTIVITY_THROTTLE_MS_ENV_KEY, PRESENCE_HEARTBEAT_INTERVAL_MS_ENV_KEY, PRESENCE_IDLE_TIMEOUT_MS_ENV_KEY, PRESENCE_OFFLINE_TIMEOUT_MS_ENV_KEY, PRESENCE_RUNTIME_ENV_KEYS, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, ParticleSystem, Popover, PopoverContent, PopoverTrigger, PricingCard, Progress, ProgressCupcode, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, type ResolveTelescupImageOptions, type ResponsiveSize, ScrollArea, ScrollBar, ScrollbarArea, type ScrollbarAreaProps, type ScrollbarColor, type ScrollbarThemeMode, ScrollbarThemeProvider, type ScrollbarThemeProviderProps, Select, SelectContent, SelectField, type SelectFieldProps, 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, Toaster$1 as SonnerToaster, type StatusType, Switch, SwitchField, type SwitchFieldProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagGroup, type TagGroupProps, type TelescupAsset, TelescupAssetPicker, type TelescupAssetPickerProps, type TelescupAssetType, type TelescupAssetsListResponse, type TelescupClient, type TelescupClientConfig, TelescupClientError, type TelescupFilters, TelescupImage, type TelescupLanguage, type TelescupMeta$1 as TelescupMeta, type TelescupUpdateMetaRequest, type TelescupUpdateMetaResponse, TelescupUpload, type TelescupUploadCompleteRequest, type TelescupUploadCompleteResponse, type TelescupUploadInitRequest, type TelescupUploadInitResponse, type TelescupUploadLabels, type TelescupUploadProps, TelescupUploader, type TelescupUploaderProps, TelescupVideo, Textarea, TextareaField, type TextareaFieldProps, type TextareaProps, ThemeToggle, Timeline, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastCupcode, type ToastCupcodeProps, ToastDescription, type ToastProps, ToastProvider, ToastTitle, type ToastVariant, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type TokenResponse, Tooltip, TooltipContent, TooltipCupcode, TooltipProvider, TooltipTrigger, USER_PRESENCE_LAST_ACTIVE_COLUMN_ENV_KEY, USER_PRESENCE_SOURCE_COLUMN_ENV_KEY, type UploadConflictPolicy, type UploadPolicy, type UploadQueueItem, type UploadQueueStatus, type UseTelescupAssetsOptions, type UseTelescupUploadQueueOptions, type UserMenuChatMessage, type UserMenuChatMessageLog, type UserMenuChatOpenRequest, type UserMenuChatReaction, type UserMenuChatUser, UserMenuCupcode, type UserMenuCupcodeProps, type UserMenuLanguage, type UserMenuNotification, type UserMenuNotificationKind, type UserMenuRecentActivity, type UserMenuTabId, type UserPresenceStatus$1 as UserPresenceStatus, VideoWatchButton, type VideoWatchButtonProps, badgeVariants, buildAuthorizeUrl, buildLogoutUrl, buildSidebarGroupsFromNavItems, buildTelescupImageURL, buildTelescupVideoURL, cn, createTelescupClient, decodeJwt, defaultSidebarGroups, exchangeCodeForToken, generateCodeChallenge, generateCodeVerifier, generateNonce, generateState, getAccountsConfig, getMainNavItems, getRuntimeEnv, getRuntimeEnvOr, getSupabase, getSupabasePublic, isRuntimeDev, navigationMenuTriggerStyle, parseAssetId, readStoredLayoutMode, reducer, resolveCupcodeAppVersion, resolveOidcEndpoints, resolveTelescupImageURL, responsiveSizeClasses, setCupcodeRuntimeEnv, slugify, toast, toggleVariants, useActiveSection, useAuth, useBreakpoint, useFormField, useIsMobile, useLayoutMode, useLayoutModeControl, useSidebar, useTelescupAssets, useTelescupImage, useTelescupMeta, useTelescupUploadQueue, useToast, writeStoredLayoutMode };