@algenium/blocks 1.5.0 → 1.7.0-rc.1
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.cjs +794 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +123 -1
- package/dist/index.d.ts +123 -1
- package/dist/index.js +790 -12
- package/dist/index.js.map +1 -1
- package/package.json +5 -1
package/dist/index.d.cts
CHANGED
|
@@ -677,6 +677,18 @@ 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
|
+
/**
|
|
685
|
+
* Like {@link useDebouncedValue} but the returned value is `undefined` until
|
|
686
|
+
* the first `delayMs` has elapsed for the current `value`, and resets to
|
|
687
|
+
* `undefined` whenever `value` changes. Use for “only act after user pauses”
|
|
688
|
+
* (e.g. auto-submit / auto-validate) without firing on the initial tick.
|
|
689
|
+
*/
|
|
690
|
+
declare function useDebouncedValueStrict<T>(value: T, delayMs: number): T | undefined;
|
|
691
|
+
|
|
680
692
|
declare const buttonVariants: (props?: ({
|
|
681
693
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
682
694
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
@@ -753,6 +765,116 @@ declare function PopoverAnchor({ ...props }: React.ComponentProps<typeof Popover
|
|
|
753
765
|
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
754
766
|
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
|
|
755
767
|
|
|
768
|
+
interface CardTokenResult {
|
|
769
|
+
tokenId: string;
|
|
770
|
+
brand: string;
|
|
771
|
+
last4: string;
|
|
772
|
+
expMonth: number;
|
|
773
|
+
expYear: number;
|
|
774
|
+
masked: string;
|
|
775
|
+
holderName?: string | null;
|
|
776
|
+
}
|
|
777
|
+
interface CardInputLabels {
|
|
778
|
+
number: string;
|
|
779
|
+
expiry: string;
|
|
780
|
+
cvc: string;
|
|
781
|
+
holderName: string;
|
|
782
|
+
tokenize: string;
|
|
783
|
+
tokenized: string;
|
|
784
|
+
replace: string;
|
|
785
|
+
invalidNumber: string;
|
|
786
|
+
expiredCard: string;
|
|
787
|
+
invalidCvc: string;
|
|
788
|
+
tokenizeFailed: string;
|
|
789
|
+
}
|
|
790
|
+
interface CardInputProps {
|
|
791
|
+
tokenize: (input: {
|
|
792
|
+
pan: string;
|
|
793
|
+
expMonth: number;
|
|
794
|
+
expYear: number;
|
|
795
|
+
cvc: string;
|
|
796
|
+
holderName?: string;
|
|
797
|
+
}) => Promise<CardTokenResult>;
|
|
798
|
+
value?: CardTokenResult | null;
|
|
799
|
+
onChange: (token: CardTokenResult | null) => void;
|
|
800
|
+
acceptedBrands?: string[];
|
|
801
|
+
requireHolderName?: boolean;
|
|
802
|
+
labels: CardInputLabels;
|
|
803
|
+
disabled?: boolean;
|
|
804
|
+
largeText?: boolean;
|
|
805
|
+
className?: string;
|
|
806
|
+
onError?: (message: string) => void;
|
|
807
|
+
}
|
|
808
|
+
declare function CardInput({ tokenize, value, onChange, acceptedBrands, requireHolderName, labels, disabled, largeText, className, onError, }: CardInputProps): react_jsx_runtime.JSX.Element;
|
|
809
|
+
|
|
810
|
+
interface USAddressValue {
|
|
811
|
+
street: string;
|
|
812
|
+
street2?: string;
|
|
813
|
+
city: string;
|
|
814
|
+
state: string;
|
|
815
|
+
zip: string;
|
|
816
|
+
country: "US";
|
|
817
|
+
}
|
|
818
|
+
interface USAddressInputLabels {
|
|
819
|
+
street: string;
|
|
820
|
+
street2?: string;
|
|
821
|
+
city: string;
|
|
822
|
+
state: string;
|
|
823
|
+
zip: string;
|
|
824
|
+
searchPlaceholder: string;
|
|
825
|
+
/** Kept for backward compatibility; manual validate button removed */
|
|
826
|
+
uspsValidate: string;
|
|
827
|
+
uspsValidating: string;
|
|
828
|
+
uspsVerified: string;
|
|
829
|
+
uspsSuggested: string;
|
|
830
|
+
uspsUseSuggestion: string;
|
|
831
|
+
uspsKeepMine: string;
|
|
832
|
+
uspsApplied: string;
|
|
833
|
+
uspsUnavailable: string;
|
|
834
|
+
zipLookupFailed: string;
|
|
835
|
+
placeLookupFailed: string;
|
|
836
|
+
autocompleteUnavailable: string;
|
|
837
|
+
/** @deprecated Toggle removed; kept for consumer compatibility */
|
|
838
|
+
autocompleteTitle?: string;
|
|
839
|
+
/** @deprecated Toggle removed; kept for consumer compatibility */
|
|
840
|
+
autocompleteDescription?: string;
|
|
841
|
+
streetPlaceholder?: string;
|
|
842
|
+
street2Placeholder?: string;
|
|
843
|
+
cityPlaceholder?: string;
|
|
844
|
+
statePlaceholder?: string;
|
|
845
|
+
zipPlaceholder?: string;
|
|
846
|
+
street2OptionalHint?: string;
|
|
847
|
+
countryLabel?: string;
|
|
848
|
+
}
|
|
849
|
+
interface AddressAutocompleteAdapter {
|
|
850
|
+
search: (q: string, sessionToken: string, signal: AbortSignal) => Promise<Array<{
|
|
851
|
+
placeId: string;
|
|
852
|
+
mainText: string;
|
|
853
|
+
secondaryText: string;
|
|
854
|
+
}>>;
|
|
855
|
+
details: (placeId: string, signal: AbortSignal) => Promise<USAddressValue>;
|
|
856
|
+
}
|
|
857
|
+
interface USAddressInputProps {
|
|
858
|
+
value?: USAddressValue;
|
|
859
|
+
onChange: (value: USAddressValue) => void;
|
|
860
|
+
lookupZip?: (zip: string, signal: AbortSignal) => Promise<{
|
|
861
|
+
city: string;
|
|
862
|
+
state: string;
|
|
863
|
+
}>;
|
|
864
|
+
validateAddress?: (addr: USAddressValue, signal: AbortSignal) => Promise<{
|
|
865
|
+
standardized: USAddressValue;
|
|
866
|
+
dpvMatch?: "Y" | "N" | "S" | "D" | "";
|
|
867
|
+
changed: boolean;
|
|
868
|
+
}>;
|
|
869
|
+
autocomplete?: AddressAutocompleteAdapter;
|
|
870
|
+
labels: USAddressInputLabels;
|
|
871
|
+
disabled?: boolean;
|
|
872
|
+
largeText?: boolean;
|
|
873
|
+
className?: string;
|
|
874
|
+
onError?: (message: string) => void;
|
|
875
|
+
}
|
|
876
|
+
declare function USAddressInput({ value, onChange, lookupZip, validateAddress, autocomplete, labels, disabled, largeText, className, onError, }: USAddressInputProps): react_jsx_runtime.JSX.Element;
|
|
877
|
+
|
|
756
878
|
declare function cn(...inputs: ClassValue[]): string;
|
|
757
879
|
|
|
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 };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -677,6 +677,18 @@ 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
|
+
/**
|
|
685
|
+
* Like {@link useDebouncedValue} but the returned value is `undefined` until
|
|
686
|
+
* the first `delayMs` has elapsed for the current `value`, and resets to
|
|
687
|
+
* `undefined` whenever `value` changes. Use for “only act after user pauses”
|
|
688
|
+
* (e.g. auto-submit / auto-validate) without firing on the initial tick.
|
|
689
|
+
*/
|
|
690
|
+
declare function useDebouncedValueStrict<T>(value: T, delayMs: number): T | undefined;
|
|
691
|
+
|
|
680
692
|
declare const buttonVariants: (props?: ({
|
|
681
693
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
682
694
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
@@ -753,6 +765,116 @@ declare function PopoverAnchor({ ...props }: React.ComponentProps<typeof Popover
|
|
|
753
765
|
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
754
766
|
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
|
|
755
767
|
|
|
768
|
+
interface CardTokenResult {
|
|
769
|
+
tokenId: string;
|
|
770
|
+
brand: string;
|
|
771
|
+
last4: string;
|
|
772
|
+
expMonth: number;
|
|
773
|
+
expYear: number;
|
|
774
|
+
masked: string;
|
|
775
|
+
holderName?: string | null;
|
|
776
|
+
}
|
|
777
|
+
interface CardInputLabels {
|
|
778
|
+
number: string;
|
|
779
|
+
expiry: string;
|
|
780
|
+
cvc: string;
|
|
781
|
+
holderName: string;
|
|
782
|
+
tokenize: string;
|
|
783
|
+
tokenized: string;
|
|
784
|
+
replace: string;
|
|
785
|
+
invalidNumber: string;
|
|
786
|
+
expiredCard: string;
|
|
787
|
+
invalidCvc: string;
|
|
788
|
+
tokenizeFailed: string;
|
|
789
|
+
}
|
|
790
|
+
interface CardInputProps {
|
|
791
|
+
tokenize: (input: {
|
|
792
|
+
pan: string;
|
|
793
|
+
expMonth: number;
|
|
794
|
+
expYear: number;
|
|
795
|
+
cvc: string;
|
|
796
|
+
holderName?: string;
|
|
797
|
+
}) => Promise<CardTokenResult>;
|
|
798
|
+
value?: CardTokenResult | null;
|
|
799
|
+
onChange: (token: CardTokenResult | null) => void;
|
|
800
|
+
acceptedBrands?: string[];
|
|
801
|
+
requireHolderName?: boolean;
|
|
802
|
+
labels: CardInputLabels;
|
|
803
|
+
disabled?: boolean;
|
|
804
|
+
largeText?: boolean;
|
|
805
|
+
className?: string;
|
|
806
|
+
onError?: (message: string) => void;
|
|
807
|
+
}
|
|
808
|
+
declare function CardInput({ tokenize, value, onChange, acceptedBrands, requireHolderName, labels, disabled, largeText, className, onError, }: CardInputProps): react_jsx_runtime.JSX.Element;
|
|
809
|
+
|
|
810
|
+
interface USAddressValue {
|
|
811
|
+
street: string;
|
|
812
|
+
street2?: string;
|
|
813
|
+
city: string;
|
|
814
|
+
state: string;
|
|
815
|
+
zip: string;
|
|
816
|
+
country: "US";
|
|
817
|
+
}
|
|
818
|
+
interface USAddressInputLabels {
|
|
819
|
+
street: string;
|
|
820
|
+
street2?: string;
|
|
821
|
+
city: string;
|
|
822
|
+
state: string;
|
|
823
|
+
zip: string;
|
|
824
|
+
searchPlaceholder: string;
|
|
825
|
+
/** Kept for backward compatibility; manual validate button removed */
|
|
826
|
+
uspsValidate: string;
|
|
827
|
+
uspsValidating: string;
|
|
828
|
+
uspsVerified: string;
|
|
829
|
+
uspsSuggested: string;
|
|
830
|
+
uspsUseSuggestion: string;
|
|
831
|
+
uspsKeepMine: string;
|
|
832
|
+
uspsApplied: string;
|
|
833
|
+
uspsUnavailable: string;
|
|
834
|
+
zipLookupFailed: string;
|
|
835
|
+
placeLookupFailed: string;
|
|
836
|
+
autocompleteUnavailable: string;
|
|
837
|
+
/** @deprecated Toggle removed; kept for consumer compatibility */
|
|
838
|
+
autocompleteTitle?: string;
|
|
839
|
+
/** @deprecated Toggle removed; kept for consumer compatibility */
|
|
840
|
+
autocompleteDescription?: string;
|
|
841
|
+
streetPlaceholder?: string;
|
|
842
|
+
street2Placeholder?: string;
|
|
843
|
+
cityPlaceholder?: string;
|
|
844
|
+
statePlaceholder?: string;
|
|
845
|
+
zipPlaceholder?: string;
|
|
846
|
+
street2OptionalHint?: string;
|
|
847
|
+
countryLabel?: string;
|
|
848
|
+
}
|
|
849
|
+
interface AddressAutocompleteAdapter {
|
|
850
|
+
search: (q: string, sessionToken: string, signal: AbortSignal) => Promise<Array<{
|
|
851
|
+
placeId: string;
|
|
852
|
+
mainText: string;
|
|
853
|
+
secondaryText: string;
|
|
854
|
+
}>>;
|
|
855
|
+
details: (placeId: string, signal: AbortSignal) => Promise<USAddressValue>;
|
|
856
|
+
}
|
|
857
|
+
interface USAddressInputProps {
|
|
858
|
+
value?: USAddressValue;
|
|
859
|
+
onChange: (value: USAddressValue) => void;
|
|
860
|
+
lookupZip?: (zip: string, signal: AbortSignal) => Promise<{
|
|
861
|
+
city: string;
|
|
862
|
+
state: string;
|
|
863
|
+
}>;
|
|
864
|
+
validateAddress?: (addr: USAddressValue, signal: AbortSignal) => Promise<{
|
|
865
|
+
standardized: USAddressValue;
|
|
866
|
+
dpvMatch?: "Y" | "N" | "S" | "D" | "";
|
|
867
|
+
changed: boolean;
|
|
868
|
+
}>;
|
|
869
|
+
autocomplete?: AddressAutocompleteAdapter;
|
|
870
|
+
labels: USAddressInputLabels;
|
|
871
|
+
disabled?: boolean;
|
|
872
|
+
largeText?: boolean;
|
|
873
|
+
className?: string;
|
|
874
|
+
onError?: (message: string) => void;
|
|
875
|
+
}
|
|
876
|
+
declare function USAddressInput({ value, onChange, lookupZip, validateAddress, autocomplete, labels, disabled, largeText, className, onError, }: USAddressInputProps): react_jsx_runtime.JSX.Element;
|
|
877
|
+
|
|
756
878
|
declare function cn(...inputs: ClassValue[]): string;
|
|
757
879
|
|
|
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 };
|
|
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 };
|