@cupcodev/ui 6.1.1 → 7.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/README.md +22 -0
- package/dist/index.cjs +2319 -1721
- package/dist/index.d.cts +23 -2
- package/dist/index.d.ts +23 -2
- package/dist/index.js +1586 -1012
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/styles/dock.css +14 -7
- package/styles/global.css +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -892,6 +892,11 @@ interface TextareaFieldProps extends React$1.TextareaHTMLAttributes<HTMLTextArea
|
|
|
892
892
|
}
|
|
893
893
|
declare const TextareaField: React$1.ForwardRefExoticComponent<TextareaFieldProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
894
894
|
|
|
895
|
+
type ThemeBackgroundProps = {
|
|
896
|
+
enableStars?: boolean;
|
|
897
|
+
};
|
|
898
|
+
declare const ThemeBackground: ({ enableStars }: ThemeBackgroundProps) => react_jsx_runtime.JSX.Element;
|
|
899
|
+
|
|
895
900
|
type ThemeMode = "light" | "dark";
|
|
896
901
|
interface ThemeToggleProps$1 {
|
|
897
902
|
className?: string;
|
|
@@ -902,7 +907,7 @@ interface ThemeToggleProps$1 {
|
|
|
902
907
|
declare const ThemeToggle$1: React$1.FC<ThemeToggleProps$1>;
|
|
903
908
|
|
|
904
909
|
interface ThemeProviderProps {
|
|
905
|
-
children:
|
|
910
|
+
children: React.ReactNode;
|
|
906
911
|
}
|
|
907
912
|
declare function ThemeProvider({ children }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
908
913
|
declare function ThemeScript(): react_jsx_runtime.JSX.Element;
|
|
@@ -1711,6 +1716,22 @@ declare const useLayoutModeControl: () => {
|
|
|
1711
1716
|
setMode: (nextMode: LayoutMode) => void;
|
|
1712
1717
|
};
|
|
1713
1718
|
|
|
1719
|
+
type StoredThemeMode = "light" | "dark";
|
|
1720
|
+
type StoredThemePreference = StoredThemeMode | "system";
|
|
1721
|
+
declare const THEME_STORAGE_KEY = "cupcode-theme";
|
|
1722
|
+
declare const LEGACY_THEME_STORAGE_KEY = "theme";
|
|
1723
|
+
declare const THEME_PREFERENCE_STORAGE_KEY = "cupcode-theme-preference";
|
|
1724
|
+
declare const EXPERIENCE_SETTINGS_STORAGE_KEY = "cc_user_menu_experience_settings";
|
|
1725
|
+
declare const THEME_PREFERENCE_CHANGE_EVENT = "cupcode:theme-preference-change";
|
|
1726
|
+
declare function isStoredThemeMode(value: unknown): value is StoredThemeMode;
|
|
1727
|
+
declare function parseStoredThemePreference(value: unknown): StoredThemePreference | null;
|
|
1728
|
+
declare function normalizeStoredThemePreference(value: unknown): StoredThemePreference;
|
|
1729
|
+
declare function readStoredThemeMode(): StoredThemeMode | null;
|
|
1730
|
+
declare function resolveSystemThemeMode(): StoredThemeMode;
|
|
1731
|
+
declare function resolveAppliedThemeMode(preference: StoredThemePreference): StoredThemeMode;
|
|
1732
|
+
declare function persistThemePreferenceSelection(preference: StoredThemePreference): void;
|
|
1733
|
+
declare function resolveStoredThemePreference(experienceSettingsTheme?: string | null): StoredThemePreference;
|
|
1734
|
+
|
|
1714
1735
|
type AccountsAuthConfig = {
|
|
1715
1736
|
baseUrl: string;
|
|
1716
1737
|
clientId: string;
|
|
@@ -1803,4 +1824,4 @@ declare const getRuntimeEnvOr: (key: string, fallback: string) => string;
|
|
|
1803
1824
|
declare const isRuntimeDev: () => boolean;
|
|
1804
1825
|
declare const resolveCupcodeAppVersion: (explicitVersion?: CupcodeRuntimeEnvValue) => string | undefined;
|
|
1805
1826
|
|
|
1806
|
-
export { Accordion, AccordionContent, AccordionCupcode, AccordionItem, AccordionTrigger, type AccountsAuthConfig, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ThemeToggle as AnimatedThemeToggle, type ThemeToggleProps as AnimatedThemeToggleProps, 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, type ClickCoords, 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, type JellyButtonProps, 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, type Theme, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, ThemeScript, ThemeToggle$1 as 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, useAppTheme, useAuth, useBreakpoint, useFormField, useIsMobile, useLayoutMode, useLayoutModeControl, useSidebar, useTelescupAssets, useTelescupImage, useTelescupMeta, useTelescupUploadQueue, useToast, writeStoredLayoutMode };
|
|
1827
|
+
export { Accordion, AccordionContent, AccordionCupcode, AccordionItem, AccordionTrigger, type AccountsAuthConfig, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ThemeToggle as AnimatedThemeToggle, type ThemeToggleProps as AnimatedThemeToggleProps, 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, type ClickCoords, 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, EXPERIENCE_SETTINGS_STORAGE_KEY, 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, type JellyButtonProps, LEGACY_THEME_STORAGE_KEY, 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, Skeleton as PrimitiveSkeleton, Tabs as PrimitiveTabs, TabsContent as PrimitiveTabsContent, TabsList as PrimitiveTabsList, TabsTrigger as PrimitiveTabsTrigger, Tooltip as PrimitiveTooltip, TooltipContent as PrimitiveTooltipContent, TooltipProvider as PrimitiveTooltipProvider, TooltipTrigger as PrimitiveTooltipTrigger, 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$1 as Skeleton, SkeletonText, Slider, Toaster$1 as SonnerToaster, type StatusType, type StoredThemeMode, type StoredThemePreference, Switch, SwitchField, type SwitchFieldProps, THEME_PREFERENCE_CHANGE_EVENT, THEME_PREFERENCE_STORAGE_KEY, THEME_STORAGE_KEY, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs$1 as Tabs, TabsContent$1 as TabsContent, TabsList$1 as TabsList, TabsTrigger$1 as 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, type Theme, ThemeBackground, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, ThemeScript, ThemeToggle$1 as 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, TooltipCupcode as Tooltip, TooltipContent$1 as TooltipContent, TooltipCupcode, TooltipProvider$1 as TooltipProvider, TooltipTrigger$1 as 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, isStoredThemeMode, navigationMenuTriggerStyle, normalizeStoredThemePreference, parseAssetId, parseStoredThemePreference, persistThemePreferenceSelection, readStoredLayoutMode, readStoredThemeMode, reducer, resolveAppliedThemeMode, resolveCupcodeAppVersion, resolveOidcEndpoints, resolveStoredThemePreference, resolveSystemThemeMode, resolveTelescupImageURL, responsiveSizeClasses, setCupcodeRuntimeEnv, slugify, toast, toggleVariants, useActiveSection, useAppTheme, useAuth, useBreakpoint, useFormField, useIsMobile, useLayoutMode, useLayoutModeControl, useSidebar, useTelescupAssets, useTelescupImage, useTelescupMeta, useTelescupUploadQueue, useToast, writeStoredLayoutMode };
|
package/dist/index.d.ts
CHANGED
|
@@ -892,6 +892,11 @@ interface TextareaFieldProps extends React$1.TextareaHTMLAttributes<HTMLTextArea
|
|
|
892
892
|
}
|
|
893
893
|
declare const TextareaField: React$1.ForwardRefExoticComponent<TextareaFieldProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
894
894
|
|
|
895
|
+
type ThemeBackgroundProps = {
|
|
896
|
+
enableStars?: boolean;
|
|
897
|
+
};
|
|
898
|
+
declare const ThemeBackground: ({ enableStars }: ThemeBackgroundProps) => react_jsx_runtime.JSX.Element;
|
|
899
|
+
|
|
895
900
|
type ThemeMode = "light" | "dark";
|
|
896
901
|
interface ThemeToggleProps$1 {
|
|
897
902
|
className?: string;
|
|
@@ -902,7 +907,7 @@ interface ThemeToggleProps$1 {
|
|
|
902
907
|
declare const ThemeToggle$1: React$1.FC<ThemeToggleProps$1>;
|
|
903
908
|
|
|
904
909
|
interface ThemeProviderProps {
|
|
905
|
-
children:
|
|
910
|
+
children: React.ReactNode;
|
|
906
911
|
}
|
|
907
912
|
declare function ThemeProvider({ children }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
908
913
|
declare function ThemeScript(): react_jsx_runtime.JSX.Element;
|
|
@@ -1711,6 +1716,22 @@ declare const useLayoutModeControl: () => {
|
|
|
1711
1716
|
setMode: (nextMode: LayoutMode) => void;
|
|
1712
1717
|
};
|
|
1713
1718
|
|
|
1719
|
+
type StoredThemeMode = "light" | "dark";
|
|
1720
|
+
type StoredThemePreference = StoredThemeMode | "system";
|
|
1721
|
+
declare const THEME_STORAGE_KEY = "cupcode-theme";
|
|
1722
|
+
declare const LEGACY_THEME_STORAGE_KEY = "theme";
|
|
1723
|
+
declare const THEME_PREFERENCE_STORAGE_KEY = "cupcode-theme-preference";
|
|
1724
|
+
declare const EXPERIENCE_SETTINGS_STORAGE_KEY = "cc_user_menu_experience_settings";
|
|
1725
|
+
declare const THEME_PREFERENCE_CHANGE_EVENT = "cupcode:theme-preference-change";
|
|
1726
|
+
declare function isStoredThemeMode(value: unknown): value is StoredThemeMode;
|
|
1727
|
+
declare function parseStoredThemePreference(value: unknown): StoredThemePreference | null;
|
|
1728
|
+
declare function normalizeStoredThemePreference(value: unknown): StoredThemePreference;
|
|
1729
|
+
declare function readStoredThemeMode(): StoredThemeMode | null;
|
|
1730
|
+
declare function resolveSystemThemeMode(): StoredThemeMode;
|
|
1731
|
+
declare function resolveAppliedThemeMode(preference: StoredThemePreference): StoredThemeMode;
|
|
1732
|
+
declare function persistThemePreferenceSelection(preference: StoredThemePreference): void;
|
|
1733
|
+
declare function resolveStoredThemePreference(experienceSettingsTheme?: string | null): StoredThemePreference;
|
|
1734
|
+
|
|
1714
1735
|
type AccountsAuthConfig = {
|
|
1715
1736
|
baseUrl: string;
|
|
1716
1737
|
clientId: string;
|
|
@@ -1803,4 +1824,4 @@ declare const getRuntimeEnvOr: (key: string, fallback: string) => string;
|
|
|
1803
1824
|
declare const isRuntimeDev: () => boolean;
|
|
1804
1825
|
declare const resolveCupcodeAppVersion: (explicitVersion?: CupcodeRuntimeEnvValue) => string | undefined;
|
|
1805
1826
|
|
|
1806
|
-
export { Accordion, AccordionContent, AccordionCupcode, AccordionItem, AccordionTrigger, type AccountsAuthConfig, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ThemeToggle as AnimatedThemeToggle, type ThemeToggleProps as AnimatedThemeToggleProps, 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, type ClickCoords, 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, type JellyButtonProps, 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, type Theme, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, ThemeScript, ThemeToggle$1 as 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, useAppTheme, useAuth, useBreakpoint, useFormField, useIsMobile, useLayoutMode, useLayoutModeControl, useSidebar, useTelescupAssets, useTelescupImage, useTelescupMeta, useTelescupUploadQueue, useToast, writeStoredLayoutMode };
|
|
1827
|
+
export { Accordion, AccordionContent, AccordionCupcode, AccordionItem, AccordionTrigger, type AccountsAuthConfig, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ThemeToggle as AnimatedThemeToggle, type ThemeToggleProps as AnimatedThemeToggleProps, 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, type ClickCoords, 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, EXPERIENCE_SETTINGS_STORAGE_KEY, 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, type JellyButtonProps, LEGACY_THEME_STORAGE_KEY, 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, Skeleton as PrimitiveSkeleton, Tabs as PrimitiveTabs, TabsContent as PrimitiveTabsContent, TabsList as PrimitiveTabsList, TabsTrigger as PrimitiveTabsTrigger, Tooltip as PrimitiveTooltip, TooltipContent as PrimitiveTooltipContent, TooltipProvider as PrimitiveTooltipProvider, TooltipTrigger as PrimitiveTooltipTrigger, 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$1 as Skeleton, SkeletonText, Slider, Toaster$1 as SonnerToaster, type StatusType, type StoredThemeMode, type StoredThemePreference, Switch, SwitchField, type SwitchFieldProps, THEME_PREFERENCE_CHANGE_EVENT, THEME_PREFERENCE_STORAGE_KEY, THEME_STORAGE_KEY, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs$1 as Tabs, TabsContent$1 as TabsContent, TabsList$1 as TabsList, TabsTrigger$1 as 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, type Theme, ThemeBackground, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, ThemeScript, ThemeToggle$1 as 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, TooltipCupcode as Tooltip, TooltipContent$1 as TooltipContent, TooltipCupcode, TooltipProvider$1 as TooltipProvider, TooltipTrigger$1 as 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, isStoredThemeMode, navigationMenuTriggerStyle, normalizeStoredThemePreference, parseAssetId, parseStoredThemePreference, persistThemePreferenceSelection, readStoredLayoutMode, readStoredThemeMode, reducer, resolveAppliedThemeMode, resolveCupcodeAppVersion, resolveOidcEndpoints, resolveStoredThemePreference, resolveSystemThemeMode, resolveTelescupImageURL, responsiveSizeClasses, setCupcodeRuntimeEnv, slugify, toast, toggleVariants, useActiveSection, useAppTheme, useAuth, useBreakpoint, useFormField, useIsMobile, useLayoutMode, useLayoutModeControl, useSidebar, useTelescupAssets, useTelescupImage, useTelescupMeta, useTelescupUploadQueue, useToast, writeStoredLayoutMode };
|