@algenium/blocks 1.7.0-rc.2 → 1.7.0-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import React__default from 'react';
2
+ import React__default, { ReactNode } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as class_variance_authority_types from 'class-variance-authority/types';
5
5
  import { VariantProps } from 'class-variance-authority';
@@ -11,6 +11,8 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
11
11
  import { Drawer as Drawer$1 } from 'vaul';
12
12
  import * as PopoverPrimitive from '@radix-ui/react-popover';
13
13
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
14
+ import { PDFDocumentProxy } from 'pdfjs-dist';
15
+ import { DocumentInitParameters } from 'pdfjs-dist/types/src/display/api';
14
16
  import { ClassValue } from 'clsx';
15
17
 
16
18
  interface CalendarEvent {
@@ -875,6 +877,84 @@ interface USAddressInputProps {
875
877
  }
876
878
  declare function USAddressInput({ value, onChange, lookupZip, validateAddress, autocomplete, labels, disabled, largeText, className, onError, }: USAddressInputProps): react_jsx_runtime.JSX.Element;
877
879
 
880
+ /** User-visible copy; localize from your application. */
881
+ interface PdfViewerLabels {
882
+ pageOf?: (page: number, total: number) => string;
883
+ goToPage?: string;
884
+ zoomIn?: string;
885
+ zoomOut?: string;
886
+ resetZoom?: string;
887
+ fitToWidth?: string;
888
+ toolbar?: string;
889
+ loading?: string;
890
+ error?: string;
891
+ workerMissing?: string;
892
+ /** Accessible label for the thumbnail sidebar container. */
893
+ thumbnailSidebar?: string;
894
+ /** Accessible label for the control that shows / hides the thumbnail sidebar. */
895
+ toggleThumbnailSidebar?: string;
896
+ /** Accessible label for one thumbnail button; receives 1-based page index. */
897
+ pageThumbnail?: (pageNumber: number) => string;
898
+ }
899
+ type PdfViewerDocumentOptions = Omit<Partial<DocumentInitParameters>, "url" | "data">;
900
+ interface PdfViewerProps {
901
+ src: string | ArrayBuffer | Uint8Array;
902
+ workerSrc: string;
903
+ documentOptions?: PdfViewerDocumentOptions;
904
+ initialPage?: number;
905
+ initialScale?: number;
906
+ minScale?: number;
907
+ maxScale?: number;
908
+ scaleStep?: number;
909
+ enableKeyboardShortcuts?: boolean;
910
+ /**
911
+ * Trackpad pinch (Ctrl/Cmd+wheel) and two-finger touch pinch on the page area.
912
+ * @defaultValue true
913
+ */
914
+ enablePinchZoom?: boolean;
915
+ /**
916
+ * Collapsible scrollable thumbnail column for quick navigation.
917
+ * @defaultValue true
918
+ */
919
+ enableThumbnailSidebar?: boolean;
920
+ /** Initial visibility of the thumbnail sidebar when enabled. @defaultValue true */
921
+ thumbnailSidebarDefaultOpen?: boolean;
922
+ labels?: PdfViewerLabels;
923
+ onLoad?: (pdf: PDFDocumentProxy) => void;
924
+ onError?: (error: Error) => void;
925
+ onPageChange?: (page: number) => void;
926
+ onScaleChange?: (scale: number) => void;
927
+ className?: string;
928
+ toolbarClassName?: string;
929
+ pageClassName?: string;
930
+ toolbarEndSlot?: ReactNode;
931
+ }
932
+ declare function PdfViewer({ src, workerSrc, documentOptions, initialPage, initialScale, minScale, maxScale, scaleStep, enableKeyboardShortcuts, enablePinchZoom, enableThumbnailSidebar, thumbnailSidebarDefaultOpen, labels, onLoad, onError, onPageChange, onScaleChange, className, toolbarClassName, pageClassName, toolbarEndSlot, }: PdfViewerProps): react_jsx_runtime.JSX.Element;
933
+
934
+ interface PdfViewerDialogLabels extends PdfViewerLabels {
935
+ /** Accessible label for the close control (toolbar). Defaults to `"Close"`. */
936
+ close?: string;
937
+ /** Screen-reader title for the dialog surface. */
938
+ dialogTitle?: string;
939
+ /** Screen-reader description for the dialog surface. */
940
+ dialogDescription?: string;
941
+ }
942
+ type PdfViewerDialogForwardedProps = Omit<PdfViewerProps, "src" | "workerSrc" | "documentOptions" | "toolbarEndSlot">;
943
+ interface PdfViewerDialogProps {
944
+ open: boolean;
945
+ onOpenChange: (open: boolean) => void;
946
+ src: PdfViewerProps["src"];
947
+ workerSrc: string;
948
+ documentOptions?: PdfViewerDocumentOptions;
949
+ /** Optional trigger wrapped by Radix `DialogTrigger`. */
950
+ trigger?: ReactNode;
951
+ /** Shortcut for `labels.dialogTitle`. */
952
+ title?: string;
953
+ labels?: PdfViewerDialogLabels;
954
+ forwardedProps?: PdfViewerDialogForwardedProps;
955
+ }
956
+ declare function PdfViewerDialog({ open, onOpenChange, src, workerSrc, documentOptions, trigger, title, labels, forwardedProps, }: PdfViewerDialogProps): react_jsx_runtime.JSX.Element;
957
+
878
958
  declare function cn(...inputs: ClassValue[]): string;
879
959
 
880
- export { type AddressAutocompleteAdapter, AvatarEditor, AvatarEditorDialog, type AvatarEditorDialogProps, type AvatarEditorProps, BLOCKS_DATA_ENVIRONMENTS, type BlocksDataEnvironment, type BlocksLanguage, type BlocksNotification, Button, CalendarContext, type CalendarContextValue, type CalendarData, type CalendarEvent, CalendarSubscribeButton, type CalendarSubscribeButtonProps, CalendarView, type CalendarViewLabels, type CalendarViewMode, type CalendarViewProps, CalendarWidget, type CalendarWidgetLabels, type CalendarWidgetProps, CardInput, type CardInputLabels, type CardInputProps, type CardTokenResult, type ChatConversation, type ChatConversationRoom, type ChatMessageData, type ChatRoomConfig, ChatRoomView, type ChatRoomViewLabels, type ChatRoomViewProps, ChatSidebar, ChatSidebarContext, type ChatSidebarContextValue, type ChatSidebarLabels, type ChatSidebarProps, ChatSidebarProvider, type ChatSidebarProviderProps, type ChatSidebarView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, 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, EnvironmentBanner, type EnvironmentBannerLabels, type EnvironmentBannerProps, EnvironmentContext, type EnvironmentContextValue, EnvironmentDot, type EnvironmentDotProps, EnvironmentMiniBadge, type EnvironmentMiniBadgeProps, EnvironmentSwitcher, type EnvironmentSwitcherLabels, type EnvironmentSwitcherProps, EventDialog, type EventDialogLabels, type EventDialogProps, EventRsvpBadge, type EventRsvpBadgeProps, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, MiniCalendar, type MiniCalendarProps, type Notification, type NotificationType, NotificationsContext, type NotificationsContextValue, NotificationsWidget, type NotificationsWidgetProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, ScrollArea, ScrollBar, Slider, ThemeSwitcher, type ThemeSwitcherLabels, type ThemeSwitcherProps, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, USAddressInput, type USAddressInputLabels, type USAddressInputProps, type USAddressValue, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, buttonVariants, cn, defaultLanguages, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useLanguageContext, useNotificationsContext };
960
+ export { type AddressAutocompleteAdapter, AvatarEditor, AvatarEditorDialog, type AvatarEditorDialogProps, type AvatarEditorProps, BLOCKS_DATA_ENVIRONMENTS, type BlocksDataEnvironment, type BlocksLanguage, type BlocksNotification, Button, CalendarContext, type CalendarContextValue, type CalendarData, type CalendarEvent, CalendarSubscribeButton, type CalendarSubscribeButtonProps, CalendarView, type CalendarViewLabels, type CalendarViewMode, type CalendarViewProps, CalendarWidget, type CalendarWidgetLabels, type CalendarWidgetProps, CardInput, type CardInputLabels, type CardInputProps, type CardTokenResult, type ChatConversation, type ChatConversationRoom, type ChatMessageData, type ChatRoomConfig, ChatRoomView, type ChatRoomViewLabels, type ChatRoomViewProps, ChatSidebar, ChatSidebarContext, type ChatSidebarContextValue, type ChatSidebarLabels, type ChatSidebarProps, ChatSidebarProvider, type ChatSidebarProviderProps, type ChatSidebarView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, 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, EnvironmentBanner, type EnvironmentBannerLabels, type EnvironmentBannerProps, EnvironmentContext, type EnvironmentContextValue, EnvironmentDot, type EnvironmentDotProps, EnvironmentMiniBadge, type EnvironmentMiniBadgeProps, EnvironmentSwitcher, type EnvironmentSwitcherLabels, type EnvironmentSwitcherProps, EventDialog, type EventDialogLabels, type EventDialogProps, EventRsvpBadge, type EventRsvpBadgeProps, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, MiniCalendar, type MiniCalendarProps, type Notification, type NotificationType, NotificationsContext, type NotificationsContextValue, NotificationsWidget, type NotificationsWidgetProps, PdfViewer, PdfViewerDialog, type PdfViewerDialogForwardedProps, type PdfViewerDialogLabels, type PdfViewerDialogProps, type PdfViewerDocumentOptions, type PdfViewerLabels, type PdfViewerProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, ScrollArea, ScrollBar, Slider, ThemeSwitcher, type ThemeSwitcherLabels, type ThemeSwitcherProps, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, USAddressInput, type USAddressInputLabels, type USAddressInputProps, type USAddressValue, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, buttonVariants, cn, defaultLanguages, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useLanguageContext, useNotificationsContext };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import React__default from 'react';
2
+ import React__default, { ReactNode } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as class_variance_authority_types from 'class-variance-authority/types';
5
5
  import { VariantProps } from 'class-variance-authority';
@@ -11,6 +11,8 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
11
11
  import { Drawer as Drawer$1 } from 'vaul';
12
12
  import * as PopoverPrimitive from '@radix-ui/react-popover';
13
13
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
14
+ import { PDFDocumentProxy } from 'pdfjs-dist';
15
+ import { DocumentInitParameters } from 'pdfjs-dist/types/src/display/api';
14
16
  import { ClassValue } from 'clsx';
15
17
 
16
18
  interface CalendarEvent {
@@ -875,6 +877,84 @@ interface USAddressInputProps {
875
877
  }
876
878
  declare function USAddressInput({ value, onChange, lookupZip, validateAddress, autocomplete, labels, disabled, largeText, className, onError, }: USAddressInputProps): react_jsx_runtime.JSX.Element;
877
879
 
880
+ /** User-visible copy; localize from your application. */
881
+ interface PdfViewerLabels {
882
+ pageOf?: (page: number, total: number) => string;
883
+ goToPage?: string;
884
+ zoomIn?: string;
885
+ zoomOut?: string;
886
+ resetZoom?: string;
887
+ fitToWidth?: string;
888
+ toolbar?: string;
889
+ loading?: string;
890
+ error?: string;
891
+ workerMissing?: string;
892
+ /** Accessible label for the thumbnail sidebar container. */
893
+ thumbnailSidebar?: string;
894
+ /** Accessible label for the control that shows / hides the thumbnail sidebar. */
895
+ toggleThumbnailSidebar?: string;
896
+ /** Accessible label for one thumbnail button; receives 1-based page index. */
897
+ pageThumbnail?: (pageNumber: number) => string;
898
+ }
899
+ type PdfViewerDocumentOptions = Omit<Partial<DocumentInitParameters>, "url" | "data">;
900
+ interface PdfViewerProps {
901
+ src: string | ArrayBuffer | Uint8Array;
902
+ workerSrc: string;
903
+ documentOptions?: PdfViewerDocumentOptions;
904
+ initialPage?: number;
905
+ initialScale?: number;
906
+ minScale?: number;
907
+ maxScale?: number;
908
+ scaleStep?: number;
909
+ enableKeyboardShortcuts?: boolean;
910
+ /**
911
+ * Trackpad pinch (Ctrl/Cmd+wheel) and two-finger touch pinch on the page area.
912
+ * @defaultValue true
913
+ */
914
+ enablePinchZoom?: boolean;
915
+ /**
916
+ * Collapsible scrollable thumbnail column for quick navigation.
917
+ * @defaultValue true
918
+ */
919
+ enableThumbnailSidebar?: boolean;
920
+ /** Initial visibility of the thumbnail sidebar when enabled. @defaultValue true */
921
+ thumbnailSidebarDefaultOpen?: boolean;
922
+ labels?: PdfViewerLabels;
923
+ onLoad?: (pdf: PDFDocumentProxy) => void;
924
+ onError?: (error: Error) => void;
925
+ onPageChange?: (page: number) => void;
926
+ onScaleChange?: (scale: number) => void;
927
+ className?: string;
928
+ toolbarClassName?: string;
929
+ pageClassName?: string;
930
+ toolbarEndSlot?: ReactNode;
931
+ }
932
+ declare function PdfViewer({ src, workerSrc, documentOptions, initialPage, initialScale, minScale, maxScale, scaleStep, enableKeyboardShortcuts, enablePinchZoom, enableThumbnailSidebar, thumbnailSidebarDefaultOpen, labels, onLoad, onError, onPageChange, onScaleChange, className, toolbarClassName, pageClassName, toolbarEndSlot, }: PdfViewerProps): react_jsx_runtime.JSX.Element;
933
+
934
+ interface PdfViewerDialogLabels extends PdfViewerLabels {
935
+ /** Accessible label for the close control (toolbar). Defaults to `"Close"`. */
936
+ close?: string;
937
+ /** Screen-reader title for the dialog surface. */
938
+ dialogTitle?: string;
939
+ /** Screen-reader description for the dialog surface. */
940
+ dialogDescription?: string;
941
+ }
942
+ type PdfViewerDialogForwardedProps = Omit<PdfViewerProps, "src" | "workerSrc" | "documentOptions" | "toolbarEndSlot">;
943
+ interface PdfViewerDialogProps {
944
+ open: boolean;
945
+ onOpenChange: (open: boolean) => void;
946
+ src: PdfViewerProps["src"];
947
+ workerSrc: string;
948
+ documentOptions?: PdfViewerDocumentOptions;
949
+ /** Optional trigger wrapped by Radix `DialogTrigger`. */
950
+ trigger?: ReactNode;
951
+ /** Shortcut for `labels.dialogTitle`. */
952
+ title?: string;
953
+ labels?: PdfViewerDialogLabels;
954
+ forwardedProps?: PdfViewerDialogForwardedProps;
955
+ }
956
+ declare function PdfViewerDialog({ open, onOpenChange, src, workerSrc, documentOptions, trigger, title, labels, forwardedProps, }: PdfViewerDialogProps): react_jsx_runtime.JSX.Element;
957
+
878
958
  declare function cn(...inputs: ClassValue[]): string;
879
959
 
880
- export { type AddressAutocompleteAdapter, AvatarEditor, AvatarEditorDialog, type AvatarEditorDialogProps, type AvatarEditorProps, BLOCKS_DATA_ENVIRONMENTS, type BlocksDataEnvironment, type BlocksLanguage, type BlocksNotification, Button, CalendarContext, type CalendarContextValue, type CalendarData, type CalendarEvent, CalendarSubscribeButton, type CalendarSubscribeButtonProps, CalendarView, type CalendarViewLabels, type CalendarViewMode, type CalendarViewProps, CalendarWidget, type CalendarWidgetLabels, type CalendarWidgetProps, CardInput, type CardInputLabels, type CardInputProps, type CardTokenResult, type ChatConversation, type ChatConversationRoom, type ChatMessageData, type ChatRoomConfig, ChatRoomView, type ChatRoomViewLabels, type ChatRoomViewProps, ChatSidebar, ChatSidebarContext, type ChatSidebarContextValue, type ChatSidebarLabels, type ChatSidebarProps, ChatSidebarProvider, type ChatSidebarProviderProps, type ChatSidebarView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, 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, EnvironmentBanner, type EnvironmentBannerLabels, type EnvironmentBannerProps, EnvironmentContext, type EnvironmentContextValue, EnvironmentDot, type EnvironmentDotProps, EnvironmentMiniBadge, type EnvironmentMiniBadgeProps, EnvironmentSwitcher, type EnvironmentSwitcherLabels, type EnvironmentSwitcherProps, EventDialog, type EventDialogLabels, type EventDialogProps, EventRsvpBadge, type EventRsvpBadgeProps, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, MiniCalendar, type MiniCalendarProps, type Notification, type NotificationType, NotificationsContext, type NotificationsContextValue, NotificationsWidget, type NotificationsWidgetProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, ScrollArea, ScrollBar, Slider, ThemeSwitcher, type ThemeSwitcherLabels, type ThemeSwitcherProps, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, USAddressInput, type USAddressInputLabels, type USAddressInputProps, type USAddressValue, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, buttonVariants, cn, defaultLanguages, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useLanguageContext, useNotificationsContext };
960
+ export { type AddressAutocompleteAdapter, AvatarEditor, AvatarEditorDialog, type AvatarEditorDialogProps, type AvatarEditorProps, BLOCKS_DATA_ENVIRONMENTS, type BlocksDataEnvironment, type BlocksLanguage, type BlocksNotification, Button, CalendarContext, type CalendarContextValue, type CalendarData, type CalendarEvent, CalendarSubscribeButton, type CalendarSubscribeButtonProps, CalendarView, type CalendarViewLabels, type CalendarViewMode, type CalendarViewProps, CalendarWidget, type CalendarWidgetLabels, type CalendarWidgetProps, CardInput, type CardInputLabels, type CardInputProps, type CardTokenResult, type ChatConversation, type ChatConversationRoom, type ChatMessageData, type ChatRoomConfig, ChatRoomView, type ChatRoomViewLabels, type ChatRoomViewProps, ChatSidebar, ChatSidebarContext, type ChatSidebarContextValue, type ChatSidebarLabels, type ChatSidebarProps, ChatSidebarProvider, type ChatSidebarProviderProps, type ChatSidebarView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, 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, EnvironmentBanner, type EnvironmentBannerLabels, type EnvironmentBannerProps, EnvironmentContext, type EnvironmentContextValue, EnvironmentDot, type EnvironmentDotProps, EnvironmentMiniBadge, type EnvironmentMiniBadgeProps, EnvironmentSwitcher, type EnvironmentSwitcherLabels, type EnvironmentSwitcherProps, EventDialog, type EventDialogLabels, type EventDialogProps, EventRsvpBadge, type EventRsvpBadgeProps, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, MiniCalendar, type MiniCalendarProps, type Notification, type NotificationType, NotificationsContext, type NotificationsContextValue, NotificationsWidget, type NotificationsWidgetProps, PdfViewer, PdfViewerDialog, type PdfViewerDialogForwardedProps, type PdfViewerDialogLabels, type PdfViewerDialogProps, type PdfViewerDocumentOptions, type PdfViewerLabels, type PdfViewerProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, ScrollArea, ScrollBar, Slider, ThemeSwitcher, type ThemeSwitcherLabels, type ThemeSwitcherProps, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, USAddressInput, type USAddressInputLabels, type USAddressInputProps, type USAddressValue, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, buttonVariants, cn, defaultLanguages, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useLanguageContext, useNotificationsContext };