@algenium/blocks 1.5.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -677,6 +677,11 @@ interface ChatSidebarProps {
677
677
  }
678
678
  declare function ChatSidebar({ currentUserId, config, labels, roleLabel, roomTypeLabel, mobileTopOffset, className, }: ChatSidebarProps): react_jsx_runtime.JSX.Element | null;
679
679
 
680
+ /**
681
+ * Debounces a value — useful for ZIP lookups and autocomplete queries.
682
+ */
683
+ declare function useDebouncedValue<T>(value: T, delayMs: number): T;
684
+
680
685
  declare const buttonVariants: (props?: ({
681
686
  variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
682
687
  size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
@@ -753,6 +758,119 @@ declare function PopoverAnchor({ ...props }: React.ComponentProps<typeof Popover
753
758
  declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
754
759
  declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
755
760
 
761
+ interface CardTokenResult {
762
+ tokenId: string;
763
+ brand: string;
764
+ last4: string;
765
+ expMonth: number;
766
+ expYear: number;
767
+ masked: string;
768
+ holderName?: string | null;
769
+ }
770
+ interface CardInputLabels {
771
+ number: string;
772
+ expiry: string;
773
+ cvc: string;
774
+ holderName: string;
775
+ tokenize: string;
776
+ tokenized: string;
777
+ replace: string;
778
+ invalidNumber: string;
779
+ expiredCard: string;
780
+ invalidCvc: string;
781
+ tokenizeFailed: string;
782
+ }
783
+ interface CardInputProps {
784
+ tokenize: (input: {
785
+ pan: string;
786
+ expMonth: number;
787
+ expYear: number;
788
+ cvc: string;
789
+ holderName?: string;
790
+ }) => Promise<CardTokenResult>;
791
+ value?: CardTokenResult | null;
792
+ onChange: (token: CardTokenResult | null) => void;
793
+ acceptedBrands?: string[];
794
+ requireHolderName?: boolean;
795
+ labels: CardInputLabels;
796
+ disabled?: boolean;
797
+ largeText?: boolean;
798
+ className?: string;
799
+ onError?: (message: string) => void;
800
+ }
801
+ declare function CardInput({ tokenize, value, onChange, acceptedBrands, requireHolderName, labels, disabled, largeText, className, onError, }: CardInputProps): react_jsx_runtime.JSX.Element;
802
+
803
+ interface USAddressValue {
804
+ street: string;
805
+ street2?: string;
806
+ city: string;
807
+ state: string;
808
+ zip: string;
809
+ country: "US";
810
+ }
811
+ interface USAddressInputLabels {
812
+ street: string;
813
+ street2?: string;
814
+ city: string;
815
+ state: string;
816
+ zip: string;
817
+ searchPlaceholder: string;
818
+ uspsValidate: string;
819
+ uspsValidating: string;
820
+ uspsSuggested: string;
821
+ uspsUseSuggestion: string;
822
+ uspsKeepMine: string;
823
+ uspsApplied: string;
824
+ uspsUnavailable: string;
825
+ zipLookupFailed: string;
826
+ placeLookupFailed: string;
827
+ autocompleteUnavailable: string;
828
+ /** Optional copy for the autocomplete toggle header */
829
+ autocompleteTitle?: string;
830
+ /** Optional copy under the autocomplete toggle title */
831
+ autocompleteDescription?: string;
832
+ /** Optional placeholders for fields */
833
+ streetPlaceholder?: string;
834
+ street2Placeholder?: string;
835
+ cityPlaceholder?: string;
836
+ statePlaceholder?: string;
837
+ zipPlaceholder?: string;
838
+ /** Shown next to street2 label (e.g. "(optional)") */
839
+ street2OptionalHint?: string;
840
+ /** Fixed country line (US-only component) */
841
+ countryLabel?: string;
842
+ }
843
+ interface AddressAutocompleteAdapter {
844
+ search: (q: string, sessionToken: string, signal: AbortSignal) => Promise<Array<{
845
+ placeId: string;
846
+ mainText: string;
847
+ secondaryText: string;
848
+ }>>;
849
+ details: (placeId: string, signal: AbortSignal) => Promise<USAddressValue>;
850
+ }
851
+ interface USAddressInputProps {
852
+ value?: USAddressValue;
853
+ onChange: (value: USAddressValue) => void;
854
+ lookupZip?: (zip: string, signal: AbortSignal) => Promise<{
855
+ city: string;
856
+ state: string;
857
+ }>;
858
+ validateAddress?: (addr: USAddressValue, signal: AbortSignal) => Promise<{
859
+ standardized: USAddressValue;
860
+ dpvMatch?: "Y" | "N" | "S" | "D" | "";
861
+ changed: boolean;
862
+ }>;
863
+ autocomplete?: AddressAutocompleteAdapter;
864
+ labels: USAddressInputLabels;
865
+ disabled?: boolean;
866
+ largeText?: boolean;
867
+ className?: string;
868
+ onError?: (message: string) => void;
869
+ /** When false, hide the autocomplete on/off row (autocomplete still works if forced on externally — prefer leaving default true when adapter exists). */
870
+ showAutocompleteToggle?: boolean;
871
+ }
872
+ declare function USAddressInput({ value, onChange, lookupZip, validateAddress, autocomplete, labels, disabled, largeText, className, onError, showAutocompleteToggle, }: USAddressInputProps): react_jsx_runtime.JSX.Element;
873
+
756
874
  declare function cn(...inputs: ClassValue[]): string;
757
875
 
758
- export { 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, 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, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, buttonVariants, cn, defaultLanguages, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useEnvironmentContext, useLanguageContext, useNotificationsContext };
876
+ 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, useEnvironmentContext, useLanguageContext, useNotificationsContext };
package/dist/index.d.ts CHANGED
@@ -677,6 +677,11 @@ interface ChatSidebarProps {
677
677
  }
678
678
  declare function ChatSidebar({ currentUserId, config, labels, roleLabel, roomTypeLabel, mobileTopOffset, className, }: ChatSidebarProps): react_jsx_runtime.JSX.Element | null;
679
679
 
680
+ /**
681
+ * Debounces a value — useful for ZIP lookups and autocomplete queries.
682
+ */
683
+ declare function useDebouncedValue<T>(value: T, delayMs: number): T;
684
+
680
685
  declare const buttonVariants: (props?: ({
681
686
  variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
682
687
  size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
@@ -753,6 +758,119 @@ declare function PopoverAnchor({ ...props }: React.ComponentProps<typeof Popover
753
758
  declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
754
759
  declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
755
760
 
761
+ interface CardTokenResult {
762
+ tokenId: string;
763
+ brand: string;
764
+ last4: string;
765
+ expMonth: number;
766
+ expYear: number;
767
+ masked: string;
768
+ holderName?: string | null;
769
+ }
770
+ interface CardInputLabels {
771
+ number: string;
772
+ expiry: string;
773
+ cvc: string;
774
+ holderName: string;
775
+ tokenize: string;
776
+ tokenized: string;
777
+ replace: string;
778
+ invalidNumber: string;
779
+ expiredCard: string;
780
+ invalidCvc: string;
781
+ tokenizeFailed: string;
782
+ }
783
+ interface CardInputProps {
784
+ tokenize: (input: {
785
+ pan: string;
786
+ expMonth: number;
787
+ expYear: number;
788
+ cvc: string;
789
+ holderName?: string;
790
+ }) => Promise<CardTokenResult>;
791
+ value?: CardTokenResult | null;
792
+ onChange: (token: CardTokenResult | null) => void;
793
+ acceptedBrands?: string[];
794
+ requireHolderName?: boolean;
795
+ labels: CardInputLabels;
796
+ disabled?: boolean;
797
+ largeText?: boolean;
798
+ className?: string;
799
+ onError?: (message: string) => void;
800
+ }
801
+ declare function CardInput({ tokenize, value, onChange, acceptedBrands, requireHolderName, labels, disabled, largeText, className, onError, }: CardInputProps): react_jsx_runtime.JSX.Element;
802
+
803
+ interface USAddressValue {
804
+ street: string;
805
+ street2?: string;
806
+ city: string;
807
+ state: string;
808
+ zip: string;
809
+ country: "US";
810
+ }
811
+ interface USAddressInputLabels {
812
+ street: string;
813
+ street2?: string;
814
+ city: string;
815
+ state: string;
816
+ zip: string;
817
+ searchPlaceholder: string;
818
+ uspsValidate: string;
819
+ uspsValidating: string;
820
+ uspsSuggested: string;
821
+ uspsUseSuggestion: string;
822
+ uspsKeepMine: string;
823
+ uspsApplied: string;
824
+ uspsUnavailable: string;
825
+ zipLookupFailed: string;
826
+ placeLookupFailed: string;
827
+ autocompleteUnavailable: string;
828
+ /** Optional copy for the autocomplete toggle header */
829
+ autocompleteTitle?: string;
830
+ /** Optional copy under the autocomplete toggle title */
831
+ autocompleteDescription?: string;
832
+ /** Optional placeholders for fields */
833
+ streetPlaceholder?: string;
834
+ street2Placeholder?: string;
835
+ cityPlaceholder?: string;
836
+ statePlaceholder?: string;
837
+ zipPlaceholder?: string;
838
+ /** Shown next to street2 label (e.g. "(optional)") */
839
+ street2OptionalHint?: string;
840
+ /** Fixed country line (US-only component) */
841
+ countryLabel?: string;
842
+ }
843
+ interface AddressAutocompleteAdapter {
844
+ search: (q: string, sessionToken: string, signal: AbortSignal) => Promise<Array<{
845
+ placeId: string;
846
+ mainText: string;
847
+ secondaryText: string;
848
+ }>>;
849
+ details: (placeId: string, signal: AbortSignal) => Promise<USAddressValue>;
850
+ }
851
+ interface USAddressInputProps {
852
+ value?: USAddressValue;
853
+ onChange: (value: USAddressValue) => void;
854
+ lookupZip?: (zip: string, signal: AbortSignal) => Promise<{
855
+ city: string;
856
+ state: string;
857
+ }>;
858
+ validateAddress?: (addr: USAddressValue, signal: AbortSignal) => Promise<{
859
+ standardized: USAddressValue;
860
+ dpvMatch?: "Y" | "N" | "S" | "D" | "";
861
+ changed: boolean;
862
+ }>;
863
+ autocomplete?: AddressAutocompleteAdapter;
864
+ labels: USAddressInputLabels;
865
+ disabled?: boolean;
866
+ largeText?: boolean;
867
+ className?: string;
868
+ onError?: (message: string) => void;
869
+ /** When false, hide the autocomplete on/off row (autocomplete still works if forced on externally — prefer leaving default true when adapter exists). */
870
+ showAutocompleteToggle?: boolean;
871
+ }
872
+ declare function USAddressInput({ value, onChange, lookupZip, validateAddress, autocomplete, labels, disabled, largeText, className, onError, showAutocompleteToggle, }: USAddressInputProps): react_jsx_runtime.JSX.Element;
873
+
756
874
  declare function cn(...inputs: ClassValue[]): string;
757
875
 
758
- export { 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, 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, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, buttonVariants, cn, defaultLanguages, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useEnvironmentContext, useLanguageContext, useNotificationsContext };
876
+ 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, useEnvironmentContext, useLanguageContext, useNotificationsContext };