@algenium/blocks 1.7.0-rc.2 → 1.7.0-rc.3
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 +587 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +64 -2
- package/dist/index.d.ts +64 -2
- package/dist/index.js +587 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
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,66 @@ 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
|
+
}
|
|
893
|
+
type PdfViewerDocumentOptions = Omit<Partial<DocumentInitParameters>, "url" | "data">;
|
|
894
|
+
interface PdfViewerProps {
|
|
895
|
+
src: string | ArrayBuffer | Uint8Array;
|
|
896
|
+
workerSrc: string;
|
|
897
|
+
documentOptions?: PdfViewerDocumentOptions;
|
|
898
|
+
initialPage?: number;
|
|
899
|
+
initialScale?: number;
|
|
900
|
+
minScale?: number;
|
|
901
|
+
maxScale?: number;
|
|
902
|
+
scaleStep?: number;
|
|
903
|
+
enableKeyboardShortcuts?: boolean;
|
|
904
|
+
labels?: PdfViewerLabels;
|
|
905
|
+
onLoad?: (pdf: PDFDocumentProxy) => void;
|
|
906
|
+
onError?: (error: Error) => void;
|
|
907
|
+
onPageChange?: (page: number) => void;
|
|
908
|
+
onScaleChange?: (scale: number) => void;
|
|
909
|
+
className?: string;
|
|
910
|
+
toolbarClassName?: string;
|
|
911
|
+
pageClassName?: string;
|
|
912
|
+
toolbarEndSlot?: ReactNode;
|
|
913
|
+
}
|
|
914
|
+
declare function PdfViewer({ src, workerSrc, documentOptions, initialPage, initialScale, minScale, maxScale, scaleStep, enableKeyboardShortcuts, labels, onLoad, onError, onPageChange, onScaleChange, className, toolbarClassName, pageClassName, toolbarEndSlot, }: PdfViewerProps): react_jsx_runtime.JSX.Element;
|
|
915
|
+
|
|
916
|
+
interface PdfViewerDialogLabels extends PdfViewerLabels {
|
|
917
|
+
/** Accessible label for the close control (toolbar). Defaults to `"Close"`. */
|
|
918
|
+
close?: string;
|
|
919
|
+
/** Screen-reader title for the dialog surface. */
|
|
920
|
+
dialogTitle?: string;
|
|
921
|
+
/** Screen-reader description for the dialog surface. */
|
|
922
|
+
dialogDescription?: string;
|
|
923
|
+
}
|
|
924
|
+
type PdfViewerDialogForwardedProps = Omit<PdfViewerProps, "src" | "workerSrc" | "documentOptions" | "toolbarEndSlot">;
|
|
925
|
+
interface PdfViewerDialogProps {
|
|
926
|
+
open: boolean;
|
|
927
|
+
onOpenChange: (open: boolean) => void;
|
|
928
|
+
src: PdfViewerProps["src"];
|
|
929
|
+
workerSrc: string;
|
|
930
|
+
documentOptions?: PdfViewerDocumentOptions;
|
|
931
|
+
/** Optional trigger wrapped by Radix `DialogTrigger`. */
|
|
932
|
+
trigger?: ReactNode;
|
|
933
|
+
/** Shortcut for `labels.dialogTitle`. */
|
|
934
|
+
title?: string;
|
|
935
|
+
labels?: PdfViewerDialogLabels;
|
|
936
|
+
forwardedProps?: PdfViewerDialogForwardedProps;
|
|
937
|
+
}
|
|
938
|
+
declare function PdfViewerDialog({ open, onOpenChange, src, workerSrc, documentOptions, trigger, title, labels, forwardedProps, }: PdfViewerDialogProps): react_jsx_runtime.JSX.Element;
|
|
939
|
+
|
|
878
940
|
declare function cn(...inputs: ClassValue[]): string;
|
|
879
941
|
|
|
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 };
|
|
942
|
+
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,66 @@ 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
|
+
}
|
|
893
|
+
type PdfViewerDocumentOptions = Omit<Partial<DocumentInitParameters>, "url" | "data">;
|
|
894
|
+
interface PdfViewerProps {
|
|
895
|
+
src: string | ArrayBuffer | Uint8Array;
|
|
896
|
+
workerSrc: string;
|
|
897
|
+
documentOptions?: PdfViewerDocumentOptions;
|
|
898
|
+
initialPage?: number;
|
|
899
|
+
initialScale?: number;
|
|
900
|
+
minScale?: number;
|
|
901
|
+
maxScale?: number;
|
|
902
|
+
scaleStep?: number;
|
|
903
|
+
enableKeyboardShortcuts?: boolean;
|
|
904
|
+
labels?: PdfViewerLabels;
|
|
905
|
+
onLoad?: (pdf: PDFDocumentProxy) => void;
|
|
906
|
+
onError?: (error: Error) => void;
|
|
907
|
+
onPageChange?: (page: number) => void;
|
|
908
|
+
onScaleChange?: (scale: number) => void;
|
|
909
|
+
className?: string;
|
|
910
|
+
toolbarClassName?: string;
|
|
911
|
+
pageClassName?: string;
|
|
912
|
+
toolbarEndSlot?: ReactNode;
|
|
913
|
+
}
|
|
914
|
+
declare function PdfViewer({ src, workerSrc, documentOptions, initialPage, initialScale, minScale, maxScale, scaleStep, enableKeyboardShortcuts, labels, onLoad, onError, onPageChange, onScaleChange, className, toolbarClassName, pageClassName, toolbarEndSlot, }: PdfViewerProps): react_jsx_runtime.JSX.Element;
|
|
915
|
+
|
|
916
|
+
interface PdfViewerDialogLabels extends PdfViewerLabels {
|
|
917
|
+
/** Accessible label for the close control (toolbar). Defaults to `"Close"`. */
|
|
918
|
+
close?: string;
|
|
919
|
+
/** Screen-reader title for the dialog surface. */
|
|
920
|
+
dialogTitle?: string;
|
|
921
|
+
/** Screen-reader description for the dialog surface. */
|
|
922
|
+
dialogDescription?: string;
|
|
923
|
+
}
|
|
924
|
+
type PdfViewerDialogForwardedProps = Omit<PdfViewerProps, "src" | "workerSrc" | "documentOptions" | "toolbarEndSlot">;
|
|
925
|
+
interface PdfViewerDialogProps {
|
|
926
|
+
open: boolean;
|
|
927
|
+
onOpenChange: (open: boolean) => void;
|
|
928
|
+
src: PdfViewerProps["src"];
|
|
929
|
+
workerSrc: string;
|
|
930
|
+
documentOptions?: PdfViewerDocumentOptions;
|
|
931
|
+
/** Optional trigger wrapped by Radix `DialogTrigger`. */
|
|
932
|
+
trigger?: ReactNode;
|
|
933
|
+
/** Shortcut for `labels.dialogTitle`. */
|
|
934
|
+
title?: string;
|
|
935
|
+
labels?: PdfViewerDialogLabels;
|
|
936
|
+
forwardedProps?: PdfViewerDialogForwardedProps;
|
|
937
|
+
}
|
|
938
|
+
declare function PdfViewerDialog({ open, onOpenChange, src, workerSrc, documentOptions, trigger, title, labels, forwardedProps, }: PdfViewerDialogProps): react_jsx_runtime.JSX.Element;
|
|
939
|
+
|
|
878
940
|
declare function cn(...inputs: ClassValue[]): string;
|
|
879
941
|
|
|
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 };
|
|
942
|
+
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 };
|