@cupcodev/ui 8.0.0 → 8.1.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 +7 -7
- package/dist/index.cjs +19747 -24336
- package/dist/index.d.cts +46 -135
- package/dist/index.d.ts +46 -135
- package/dist/index.js +19893 -24530
- package/dist/styles.css +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -153,70 +153,8 @@ type Props = {
|
|
|
153
153
|
};
|
|
154
154
|
declare const DockWrapper: React__default.FC<Props>;
|
|
155
155
|
|
|
156
|
-
type UserMenuTabId = "profile" | "
|
|
156
|
+
type UserMenuTabId = "profile" | "settings" | "logout";
|
|
157
157
|
type UserPresenceStatus$1 = "online" | "away" | "busy" | "lunch" | "call" | "coding" | "designing" | "offline";
|
|
158
|
-
type UserMenuNotificationKind = "system" | "comment" | "access" | "billing" | "chat" | "security";
|
|
159
|
-
type UserMenuNotification = {
|
|
160
|
-
id: string;
|
|
161
|
-
title: string;
|
|
162
|
-
description: string;
|
|
163
|
-
timeLabel?: string;
|
|
164
|
-
createdAt?: string;
|
|
165
|
-
kind?: UserMenuNotificationKind;
|
|
166
|
-
topic?: string;
|
|
167
|
-
actionLabel?: string;
|
|
168
|
-
actionHref?: string;
|
|
169
|
-
actionChatUserId?: string;
|
|
170
|
-
unread?: boolean;
|
|
171
|
-
};
|
|
172
|
-
type UserMenuChatUser = {
|
|
173
|
-
id: string;
|
|
174
|
-
name: string;
|
|
175
|
-
username: string;
|
|
176
|
-
email?: string;
|
|
177
|
-
avatarUrl?: string;
|
|
178
|
-
roleLabel?: string;
|
|
179
|
-
status: UserPresenceStatus$1;
|
|
180
|
-
statusLabel?: string;
|
|
181
|
-
isGroup?: boolean;
|
|
182
|
-
memberIds?: string[];
|
|
183
|
-
};
|
|
184
|
-
type UserMenuChatMessage = {
|
|
185
|
-
id: string;
|
|
186
|
-
contactId: string;
|
|
187
|
-
sender: "me" | "them";
|
|
188
|
-
senderId?: string;
|
|
189
|
-
recipientId?: string;
|
|
190
|
-
text: string;
|
|
191
|
-
timeLabel?: string;
|
|
192
|
-
createdAt?: string;
|
|
193
|
-
editedAt?: string | null;
|
|
194
|
-
readAt?: string | null;
|
|
195
|
-
replyToMessageId?: string | null;
|
|
196
|
-
deletedAt?: string | null;
|
|
197
|
-
deletedBy?: string | null;
|
|
198
|
-
};
|
|
199
|
-
type UserMenuChatOpenRequest = {
|
|
200
|
-
userId: string;
|
|
201
|
-
at: number;
|
|
202
|
-
};
|
|
203
|
-
type UserMenuChatReaction = {
|
|
204
|
-
id: string;
|
|
205
|
-
messageId: string;
|
|
206
|
-
userId: string;
|
|
207
|
-
emoji: string;
|
|
208
|
-
createdAt?: string;
|
|
209
|
-
};
|
|
210
|
-
type UserMenuChatMessageLog = {
|
|
211
|
-
id: string;
|
|
212
|
-
messageId: string;
|
|
213
|
-
contactId?: string;
|
|
214
|
-
actorId?: string;
|
|
215
|
-
action: "edit" | "delete";
|
|
216
|
-
previousText?: string | null;
|
|
217
|
-
nextText?: string | null;
|
|
218
|
-
createdAt?: string;
|
|
219
|
-
};
|
|
220
158
|
type UserMenuLanguage = "pt-BR" | "en-US" | "es-ES";
|
|
221
159
|
type UserMenuRecentActivity = {
|
|
222
160
|
id: string;
|
|
@@ -234,56 +172,9 @@ type UserMenuCupcodeProps = {
|
|
|
234
172
|
email?: string;
|
|
235
173
|
avatarUrl?: string;
|
|
236
174
|
roleLabel?: string;
|
|
175
|
+
tenantId?: string;
|
|
237
176
|
status?: UserPresenceStatus$1;
|
|
238
177
|
defaultStatus?: UserPresenceStatus$1;
|
|
239
|
-
notifications?: UserMenuNotification[];
|
|
240
|
-
chatUsers?: UserMenuChatUser[];
|
|
241
|
-
chatMessages?: UserMenuChatMessage[];
|
|
242
|
-
chatReactions?: UserMenuChatReaction[];
|
|
243
|
-
chatMessageLogs?: UserMenuChatMessageLog[];
|
|
244
|
-
chatOpenRequest?: UserMenuChatOpenRequest | null;
|
|
245
|
-
currentChatUserId?: string | null;
|
|
246
|
-
chatUnreadCount?: number;
|
|
247
|
-
chatUnreadByUser?: Record<string, number>;
|
|
248
|
-
isChatSuperAdmin?: boolean;
|
|
249
|
-
isChatLoading?: boolean;
|
|
250
|
-
isChatSending?: boolean;
|
|
251
|
-
chatError?: string | null;
|
|
252
|
-
onChatSendMessage?: (payload: {
|
|
253
|
-
recipientId: string;
|
|
254
|
-
text: string;
|
|
255
|
-
replyToMessageId?: string | null;
|
|
256
|
-
}) => Promise<void> | void;
|
|
257
|
-
onChatMarkConversationRead?: (payload: {
|
|
258
|
-
contactId: string;
|
|
259
|
-
}) => Promise<void> | void;
|
|
260
|
-
onChatToggleReaction?: (payload: {
|
|
261
|
-
messageId: string;
|
|
262
|
-
emoji: string;
|
|
263
|
-
}) => Promise<void> | void;
|
|
264
|
-
onChatEditMessage?: (payload: {
|
|
265
|
-
messageId: string;
|
|
266
|
-
text: string;
|
|
267
|
-
}) => Promise<void> | void;
|
|
268
|
-
onChatDeleteMessage?: (payload: {
|
|
269
|
-
messageId: string;
|
|
270
|
-
}) => Promise<void> | void;
|
|
271
|
-
onChatViewMessageData?: (payload: {
|
|
272
|
-
messageId: string;
|
|
273
|
-
}) => void;
|
|
274
|
-
onChatOpenUserProfile?: (payload: {
|
|
275
|
-
userId: string;
|
|
276
|
-
email?: string;
|
|
277
|
-
}) => void;
|
|
278
|
-
onChatSendEmail?: (payload: {
|
|
279
|
-
userId: string;
|
|
280
|
-
email?: string;
|
|
281
|
-
}) => void;
|
|
282
|
-
onChatAddToAgenda?: (payload: {
|
|
283
|
-
userId: string;
|
|
284
|
-
email?: string;
|
|
285
|
-
name?: string;
|
|
286
|
-
}) => void;
|
|
287
178
|
onStatusChange?: (status: UserPresenceStatus$1) => void | Promise<void>;
|
|
288
179
|
onLogin?: () => void;
|
|
289
180
|
onLogout?: () => void | Promise<void>;
|
|
@@ -297,6 +188,8 @@ type UserMenuCupcodeProps = {
|
|
|
297
188
|
}) => Promise<void> | void;
|
|
298
189
|
language?: UserMenuLanguage;
|
|
299
190
|
onLanguageChange?: (language: UserMenuLanguage) => void | Promise<void>;
|
|
191
|
+
twoFactorEnabled?: boolean | null;
|
|
192
|
+
isTwoFactorStatusLoading?: boolean;
|
|
300
193
|
recentActivity?: UserMenuRecentActivity[];
|
|
301
194
|
isRecentActivityLoading?: boolean;
|
|
302
195
|
telescupBaseUrl?: string;
|
|
@@ -396,8 +289,10 @@ type AppSidebarProps = {
|
|
|
396
289
|
groups?: AppSidebarGroup[];
|
|
397
290
|
logo?: ReactNode;
|
|
398
291
|
collapsedLogo?: ReactNode;
|
|
292
|
+
className?: string;
|
|
293
|
+
onNavigate?: () => void;
|
|
399
294
|
};
|
|
400
|
-
declare const AppSidebar: ({ isCollapsed, onToggle, groups, logo, collapsedLogo }: AppSidebarProps) => react_jsx_runtime.JSX.Element;
|
|
295
|
+
declare const AppSidebar: ({ isCollapsed, onToggle, groups, logo, collapsedLogo, className, onNavigate }: AppSidebarProps) => react_jsx_runtime.JSX.Element;
|
|
401
296
|
|
|
402
297
|
interface EmptyStateProps {
|
|
403
298
|
icon?: LucideIcon;
|
|
@@ -433,6 +328,11 @@ interface EyebrowProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
433
328
|
}
|
|
434
329
|
declare const Eyebrow: React$1.ForwardRefExoticComponent<EyebrowProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
435
330
|
|
|
331
|
+
type FooterCupcodeProps = {
|
|
332
|
+
embedded?: boolean;
|
|
333
|
+
};
|
|
334
|
+
declare function FooterCupcode({ embedded }: FooterCupcodeProps): react_jsx_runtime.JSX.Element;
|
|
335
|
+
|
|
436
336
|
interface HeroTitleProps {
|
|
437
337
|
eyebrow?: string;
|
|
438
338
|
smallPrefix?: string;
|
|
@@ -602,6 +502,7 @@ interface TelescupImageProps extends React__default.ImgHTMLAttributes<HTMLImageE
|
|
|
602
502
|
format?: 'avif' | 'webp' | 'jpeg' | 'png';
|
|
603
503
|
quality?: number;
|
|
604
504
|
lang?: string;
|
|
505
|
+
cacheRevision?: number | string;
|
|
605
506
|
}
|
|
606
507
|
declare const TelescupImage: React__default.FC<TelescupImageProps>;
|
|
607
508
|
|
|
@@ -712,6 +613,12 @@ type TelescupUploadInitResponse = {
|
|
|
712
613
|
existingAsset?: TelescupAsset;
|
|
713
614
|
conflict?: UploadConflictPolicy | "exists" | "conflict" | "duplicate" | "name_collision" | "none";
|
|
714
615
|
resolvedName?: string;
|
|
616
|
+
suggestedName?: string;
|
|
617
|
+
uploadMode?: "proxy" | "direct";
|
|
618
|
+
};
|
|
619
|
+
type TelescupUploadBinaryRequest = {
|
|
620
|
+
uploadId: string;
|
|
621
|
+
storageKey: string;
|
|
715
622
|
};
|
|
716
623
|
type TelescupUploadCompleteRequest = {
|
|
717
624
|
uploadId?: string;
|
|
@@ -754,6 +661,7 @@ declare class TelescupClientError extends Error {
|
|
|
754
661
|
declare const createTelescupClient: (config: TelescupClientConfig) => {
|
|
755
662
|
listAssets: (filters: TelescupFilters) => Promise<TelescupAssetsListResponse>;
|
|
756
663
|
initUpload: (payload: TelescupUploadInitRequest) => Promise<TelescupUploadInitResponse>;
|
|
664
|
+
uploadBinary: (file: File, payload: TelescupUploadBinaryRequest, onProgress?: (pct: number) => void) => Promise<void>;
|
|
757
665
|
completeUpload: (payload: TelescupUploadCompleteRequest) => Promise<TelescupUploadCompleteResponse>;
|
|
758
666
|
updateMeta: (payload: TelescupUpdateMetaRequest) => Promise<TelescupUpdateMetaResponse>;
|
|
759
667
|
generateAlt: (asset: Pick<TelescupAsset, "id" | "mimeType"> & {
|
|
@@ -782,6 +690,7 @@ type TelescupUploadLabels = {
|
|
|
782
690
|
hasAlt: string;
|
|
783
691
|
language: string;
|
|
784
692
|
allTypes: string;
|
|
693
|
+
allFolders: string;
|
|
785
694
|
};
|
|
786
695
|
empty: {
|
|
787
696
|
title: string;
|
|
@@ -806,13 +715,22 @@ type TelescupUploadLabels = {
|
|
|
806
715
|
success: string;
|
|
807
716
|
error: string;
|
|
808
717
|
conflict: string;
|
|
718
|
+
conflictWaiting: string;
|
|
719
|
+
skipped: string;
|
|
720
|
+
duplicateInQueue: string;
|
|
809
721
|
};
|
|
810
722
|
conflict: {
|
|
811
723
|
title: string;
|
|
812
724
|
description: string;
|
|
725
|
+
descriptionWithSuggestion: string;
|
|
726
|
+
queueHint: string;
|
|
727
|
+
existingLabel: string;
|
|
813
728
|
skip: string;
|
|
814
729
|
rename: string;
|
|
815
730
|
replace: string;
|
|
731
|
+
renameHint: string;
|
|
732
|
+
replaceHint: string;
|
|
733
|
+
skipHint: string;
|
|
816
734
|
};
|
|
817
735
|
meta: {
|
|
818
736
|
title: string;
|
|
@@ -850,6 +768,8 @@ type TelescupAssetPickerProps = {
|
|
|
850
768
|
labels: TelescupUploadLabels;
|
|
851
769
|
className?: string;
|
|
852
770
|
enabled?: boolean;
|
|
771
|
+
libraryRefreshKey?: number | string;
|
|
772
|
+
previewRevisions?: Record<string, number | string>;
|
|
853
773
|
onAssetsLoaded?: (assets: TelescupAsset[]) => void;
|
|
854
774
|
onTotalAssetsChange?: (total: number) => void;
|
|
855
775
|
};
|
|
@@ -975,27 +895,6 @@ declare const VideoWatchButton: React__default.ForwardRefExoticComponent<Omit<Re
|
|
|
975
895
|
label?: string;
|
|
976
896
|
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
977
897
|
|
|
978
|
-
type CustomerUserMenuCupcodeProps = {
|
|
979
|
-
isAuthenticated: boolean;
|
|
980
|
-
isLoading?: boolean;
|
|
981
|
-
loginLabel?: string;
|
|
982
|
-
displayName?: string;
|
|
983
|
-
username?: string;
|
|
984
|
-
email?: string;
|
|
985
|
-
tenantId?: string;
|
|
986
|
-
avatarUrl?: string;
|
|
987
|
-
roleLabel?: string;
|
|
988
|
-
onLogin?: () => void;
|
|
989
|
-
onLogout?: () => void | Promise<void>;
|
|
990
|
-
onProfileAvatarChange?: (payload: {
|
|
991
|
-
avatarId: string;
|
|
992
|
-
avatarUrl?: string;
|
|
993
|
-
}) => Promise<void> | void;
|
|
994
|
-
telescupBaseUrl?: string;
|
|
995
|
-
getTelescupAccessToken?: () => Promise<string>;
|
|
996
|
-
};
|
|
997
|
-
declare function CustomerUserMenuCupcode({ isAuthenticated, isLoading, loginLabel, displayName, username, email, tenantId, avatarUrl, roleLabel, onLogin, onLogout, onProfileAvatarChange, telescupBaseUrl, getTelescupAccessToken, }: CustomerUserMenuCupcodeProps): react_jsx_runtime.JSX.Element;
|
|
998
|
-
|
|
999
898
|
declare const TooltipProvider$1: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
1000
899
|
declare const TooltipCupcode: React$1.FC<TooltipPrimitive.TooltipProps>;
|
|
1001
900
|
declare const TooltipTrigger$1: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1577,7 +1476,9 @@ type UseTelescupAssetsOptions = {
|
|
|
1577
1476
|
enabled?: boolean;
|
|
1578
1477
|
pageSize?: number;
|
|
1579
1478
|
cacheTimeMs?: number;
|
|
1479
|
+
refreshKey?: number | string;
|
|
1580
1480
|
};
|
|
1481
|
+
declare function invalidateTelescupAssetsCache(baseUrl?: string): void;
|
|
1581
1482
|
declare function useTelescupAssets(options: UseTelescupAssetsOptions): {
|
|
1582
1483
|
items: TelescupAsset[];
|
|
1583
1484
|
total: number | undefined;
|
|
@@ -1633,6 +1534,7 @@ type UploadQueueItem = {
|
|
|
1633
1534
|
finalFilename?: string;
|
|
1634
1535
|
requiredHeaders?: Record<string, string>;
|
|
1635
1536
|
resolvedName?: string;
|
|
1537
|
+
suggestedName?: string;
|
|
1636
1538
|
};
|
|
1637
1539
|
type EnqueueResult = {
|
|
1638
1540
|
accepted: UploadQueueItem[];
|
|
@@ -1714,6 +1616,7 @@ interface TelescupImageOptions {
|
|
|
1714
1616
|
fit?: 'cover' | 'contain' | 'fill' | 'inside' | 'outside';
|
|
1715
1617
|
format?: 'avif' | 'webp' | 'jpeg' | 'png';
|
|
1716
1618
|
quality?: number;
|
|
1619
|
+
cacheRevision?: number | string;
|
|
1717
1620
|
}
|
|
1718
1621
|
interface TelescupMeta {
|
|
1719
1622
|
alt?: string;
|
|
@@ -1740,7 +1643,10 @@ declare function parseAssetId(input?: string): string | undefined;
|
|
|
1740
1643
|
|
|
1741
1644
|
declare function slugify(value: string): string;
|
|
1742
1645
|
|
|
1743
|
-
|
|
1646
|
+
type MainNavItemsOptions = {
|
|
1647
|
+
includePrivate?: boolean;
|
|
1648
|
+
};
|
|
1649
|
+
declare const getMainNavItems: ({ includePrivate }?: MainNavItemsOptions) => NavItem[];
|
|
1744
1650
|
|
|
1745
1651
|
type LayoutMode = "navbar" | "sidebar";
|
|
1746
1652
|
declare const readStoredLayoutMode: () => LayoutMode;
|
|
@@ -1773,6 +1679,7 @@ type AccountsAuthConfig = {
|
|
|
1773
1679
|
redirectUri: string;
|
|
1774
1680
|
scope: string;
|
|
1775
1681
|
audience?: string;
|
|
1682
|
+
resource?: string;
|
|
1776
1683
|
authUrl?: string;
|
|
1777
1684
|
tokenUrl?: string;
|
|
1778
1685
|
logoutUrl?: string;
|
|
@@ -1801,9 +1708,13 @@ type TokenResponse = {
|
|
|
1801
1708
|
expires_in?: number | string;
|
|
1802
1709
|
};
|
|
1803
1710
|
declare const exchangeCodeForToken: (config: AccountsAuthConfig, tokenUrl: string, code: string, verifier: string) => Promise<TokenResponse>;
|
|
1711
|
+
declare const refreshTokens: (config: AccountsAuthConfig, tokenUrl: string, refreshToken: string) => Promise<TokenResponse>;
|
|
1804
1712
|
declare const buildLogoutUrl: (config: AccountsAuthConfig, logoutUrl?: string, idTokenHint?: string, refreshToken?: string) => string | undefined;
|
|
1713
|
+
declare function clearOidcContinueCookie(config: AccountsAuthConfig): Promise<void>;
|
|
1805
1714
|
declare const decodeJwt: (token?: string) => Record<string, unknown> | null;
|
|
1806
1715
|
|
|
1716
|
+
declare const hasPendingOidcFlow: () => boolean;
|
|
1717
|
+
declare const abortStaleOidcFlow: () => Promise<void>;
|
|
1807
1718
|
type UserPresenceStatus = "online" | "away" | "busy" | "lunch" | "call" | "coding" | "designing" | "offline";
|
|
1808
1719
|
type AuthUser = {
|
|
1809
1720
|
sub?: string;
|
|
@@ -1881,4 +1792,4 @@ declare const getRuntimeEnvOr: (key: string, fallback: string) => string;
|
|
|
1881
1792
|
declare const isRuntimeDev: () => boolean;
|
|
1882
1793
|
declare const resolveCupcodeAppVersion: (explicitVersion?: CupcodeRuntimeEnvValue) => string | undefined;
|
|
1883
1794
|
|
|
1884
|
-
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,
|
|
1795
|
+
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, FooterCupcode, 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, UserMenuCupcode, type UserMenuCupcodeProps, type UserMenuLanguage, type UserMenuRecentActivity, type UserMenuTabId, type UserPresenceStatus$1 as UserPresenceStatus, VideoWatchButton, type VideoWatchButtonProps, abortStaleOidcFlow, badgeVariants, buildAuthorizeUrl, buildLogoutUrl, buildSidebarGroupsFromNavItems, buildTelescupImageURL, buildTelescupVideoURL, clearOidcContinueCookie, clearTelescupOidcTokens, cn, completeTelescupOidcCallback, createTelescupClient, decodeJwt, defaultSidebarGroups, ensureTelescupOidcToken, exchangeCodeForToken, generateCodeChallenge, generateCodeVerifier, generateNonce, generateState, getAccountsConfig, getMainNavItems, getRuntimeEnv, getRuntimeEnvOr, getSupabase, getSupabasePublic, getTelescupOidcToken, hasPendingOidcFlow, invalidateTelescupAssetsCache, isRuntimeDev, isStoredThemeMode, navigationMenuTriggerStyle, normalizeStoredThemePreference, parseAssetId, parseStoredThemePreference, persistThemePreferenceSelection, readStoredLayoutMode, readStoredThemeMode, reducer, refreshTokens, 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 };
|