@algenium/blocks 1.7.0 → 1.9.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
@@ -1,6 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import React__default from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import { LucideIcon } from 'lucide-react';
4
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
5
6
  import { VariantProps } from 'class-variance-authority';
6
7
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
@@ -193,6 +194,26 @@ interface EnvironmentContextValue {
193
194
  declare const EnvironmentContext: React.Context<EnvironmentContextValue | null>;
194
195
  declare function useEnvironmentContext(): EnvironmentContextValue | null;
195
196
 
197
+ declare function LoadingState({ label, className, }: {
198
+ label?: string;
199
+ className?: string;
200
+ }): react_jsx_runtime.JSX.Element;
201
+ declare function ErrorState({ title, description, action, className, }: {
202
+ title?: string;
203
+ description?: string;
204
+ action?: React.ReactNode;
205
+ className?: string;
206
+ }): react_jsx_runtime.JSX.Element;
207
+ type EmptyStateProps = {
208
+ title: string;
209
+ description?: string;
210
+ action?: React.ReactNode;
211
+ icon?: LucideIcon;
212
+ variant?: "default" | "compact";
213
+ className?: string;
214
+ };
215
+ declare function EmptyState({ title, description, action, icon: Icon, variant, className, }: EmptyStateProps): react_jsx_runtime.JSX.Element;
216
+
196
217
  type ThemeSwitcherLabels = {
197
218
  /** Tooltip label for the theme switcher */
198
219
  theme?: string;
@@ -215,16 +236,16 @@ type ThemeSwitcherProps = {
215
236
  align?: "start" | "center" | "end";
216
237
  /** Dropdown side (for mini variant) */
217
238
  side?: "top" | "bottom" | "left" | "right";
218
- /** Tooltip position relative to the mini trigger (mini variant only) */
239
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
219
240
  tooltipSide?: "top" | "right" | "bottom" | "left";
220
- /** Tooltip alignment (mini variant only) */
241
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
221
242
  tooltipAlign?: "start" | "center" | "end";
222
- /** Tooltip offset from the trigger in px (mini variant only) */
243
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
223
244
  tooltipSideOffset?: number;
224
245
  /** Translation labels - consumers can pass their own t() values */
225
246
  labels?: ThemeSwitcherLabels;
226
247
  };
227
- declare function ThemeSwitcher({ className, size, shape, variant, align, side, tooltipSide, tooltipAlign, tooltipSideOffset, labels: userLabels, }: ThemeSwitcherProps): react_jsx_runtime.JSX.Element;
248
+ declare function ThemeSwitcher({ className, size, shape, variant, align, side, labels: userLabels, }: ThemeSwitcherProps): react_jsx_runtime.JSX.Element;
228
249
 
229
250
  type Language = {
230
251
  /** Language key/code (e.g., "en", "es") */
@@ -274,14 +295,14 @@ type LanguageSwitcherProps = {
274
295
  align?: "start" | "center" | "end";
275
296
  /** Dropdown side */
276
297
  side?: "top" | "bottom" | "left" | "right";
277
- /** Tooltip position relative to the mini trigger (mini variant only) */
298
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
278
299
  tooltipSide?: "top" | "right" | "bottom" | "left";
279
- /** Tooltip alignment (mini variant only) */
300
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
280
301
  tooltipAlign?: "start" | "center" | "end";
281
- /** Tooltip offset from the trigger in px (mini variant only) */
302
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
282
303
  tooltipSideOffset?: number;
283
304
  };
284
- declare function LanguageSwitcher({ languages: propLanguages, currentLanguage: propCurrentLanguage, onLanguageChange: propOnLanguageChange, labels, className, size, shape, variant, showIcon, align, side, tooltipSide, tooltipAlign, tooltipSideOffset, }: LanguageSwitcherProps): react_jsx_runtime.JSX.Element;
305
+ declare function LanguageSwitcher({ languages: propLanguages, currentLanguage: propCurrentLanguage, onLanguageChange: propOnLanguageChange, labels, className, size, shape, variant, showIcon, align, side, }: LanguageSwitcherProps): react_jsx_runtime.JSX.Element;
285
306
 
286
307
  type EnvironmentSwitcherLabels = {
287
308
  /** Tooltip / aria for the control */
@@ -336,11 +357,14 @@ type EnvironmentSwitcherProps = {
336
357
  variant?: "default" | "mini";
337
358
  align?: "start" | "center" | "end";
338
359
  side?: "top" | "bottom" | "left" | "right";
360
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
339
361
  tooltipSide?: "top" | "right" | "bottom" | "left";
362
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
340
363
  tooltipAlign?: "start" | "center" | "end";
364
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
341
365
  tooltipSideOffset?: number;
342
366
  };
343
- declare function EnvironmentSwitcher({ className, environment: propEnvironment, onEnvironmentChange: propOnEnvironmentChange, environments: propEnvironments, labels: userLabels, size, shape, variant, align, side, tooltipSide, tooltipAlign, tooltipSideOffset, }: EnvironmentSwitcherProps): react_jsx_runtime.JSX.Element;
367
+ declare function EnvironmentSwitcher({ className, environment: propEnvironment, onEnvironmentChange: propOnEnvironmentChange, environments: propEnvironments, labels: userLabels, size, shape, variant, align, side, }: EnvironmentSwitcherProps): react_jsx_runtime.JSX.Element;
344
368
 
345
369
  type EnvironmentBannerLabels = {
346
370
  stagingMessage?: string;
@@ -690,8 +714,8 @@ declare function useDebouncedValue<T>(value: T, delayMs: number): T;
690
714
  declare function useDebouncedValueStrict<T>(value: T, delayMs: number): T | undefined;
691
715
 
692
716
  declare const buttonVariants: (props?: ({
693
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
694
- size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
717
+ variant?: "default" | "link" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
718
+ size?: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null | undefined;
695
719
  } & class_variance_authority_types.ClassProp) | undefined) => string;
696
720
  declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
697
721
  asChild?: boolean;
@@ -877,4 +901,4 @@ declare function USAddressInput({ value, onChange, lookupZip, validateAddress, a
877
901
 
878
902
  declare function cn(...inputs: ClassValue[]): string;
879
903
 
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 };
904
+ 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, EmptyState, type EmptyStateProps, EnvironmentBanner, type EnvironmentBannerLabels, type EnvironmentBannerProps, EnvironmentContext, type EnvironmentContextValue, EnvironmentDot, type EnvironmentDotProps, EnvironmentMiniBadge, type EnvironmentMiniBadgeProps, EnvironmentSwitcher, type EnvironmentSwitcherLabels, type EnvironmentSwitcherProps, ErrorState, EventDialog, type EventDialogLabels, type EventDialogProps, EventRsvpBadge, type EventRsvpBadgeProps, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, LoadingState, 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
@@ -1,6 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import React__default from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import { LucideIcon } from 'lucide-react';
4
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
5
6
  import { VariantProps } from 'class-variance-authority';
6
7
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
@@ -193,6 +194,26 @@ interface EnvironmentContextValue {
193
194
  declare const EnvironmentContext: React.Context<EnvironmentContextValue | null>;
194
195
  declare function useEnvironmentContext(): EnvironmentContextValue | null;
195
196
 
197
+ declare function LoadingState({ label, className, }: {
198
+ label?: string;
199
+ className?: string;
200
+ }): react_jsx_runtime.JSX.Element;
201
+ declare function ErrorState({ title, description, action, className, }: {
202
+ title?: string;
203
+ description?: string;
204
+ action?: React.ReactNode;
205
+ className?: string;
206
+ }): react_jsx_runtime.JSX.Element;
207
+ type EmptyStateProps = {
208
+ title: string;
209
+ description?: string;
210
+ action?: React.ReactNode;
211
+ icon?: LucideIcon;
212
+ variant?: "default" | "compact";
213
+ className?: string;
214
+ };
215
+ declare function EmptyState({ title, description, action, icon: Icon, variant, className, }: EmptyStateProps): react_jsx_runtime.JSX.Element;
216
+
196
217
  type ThemeSwitcherLabels = {
197
218
  /** Tooltip label for the theme switcher */
198
219
  theme?: string;
@@ -215,16 +236,16 @@ type ThemeSwitcherProps = {
215
236
  align?: "start" | "center" | "end";
216
237
  /** Dropdown side (for mini variant) */
217
238
  side?: "top" | "bottom" | "left" | "right";
218
- /** Tooltip position relative to the mini trigger (mini variant only) */
239
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
219
240
  tooltipSide?: "top" | "right" | "bottom" | "left";
220
- /** Tooltip alignment (mini variant only) */
241
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
221
242
  tooltipAlign?: "start" | "center" | "end";
222
- /** Tooltip offset from the trigger in px (mini variant only) */
243
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
223
244
  tooltipSideOffset?: number;
224
245
  /** Translation labels - consumers can pass their own t() values */
225
246
  labels?: ThemeSwitcherLabels;
226
247
  };
227
- declare function ThemeSwitcher({ className, size, shape, variant, align, side, tooltipSide, tooltipAlign, tooltipSideOffset, labels: userLabels, }: ThemeSwitcherProps): react_jsx_runtime.JSX.Element;
248
+ declare function ThemeSwitcher({ className, size, shape, variant, align, side, labels: userLabels, }: ThemeSwitcherProps): react_jsx_runtime.JSX.Element;
228
249
 
229
250
  type Language = {
230
251
  /** Language key/code (e.g., "en", "es") */
@@ -274,14 +295,14 @@ type LanguageSwitcherProps = {
274
295
  align?: "start" | "center" | "end";
275
296
  /** Dropdown side */
276
297
  side?: "top" | "bottom" | "left" | "right";
277
- /** Tooltip position relative to the mini trigger (mini variant only) */
298
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
278
299
  tooltipSide?: "top" | "right" | "bottom" | "left";
279
- /** Tooltip alignment (mini variant only) */
300
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
280
301
  tooltipAlign?: "start" | "center" | "end";
281
- /** Tooltip offset from the trigger in px (mini variant only) */
302
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
282
303
  tooltipSideOffset?: number;
283
304
  };
284
- declare function LanguageSwitcher({ languages: propLanguages, currentLanguage: propCurrentLanguage, onLanguageChange: propOnLanguageChange, labels, className, size, shape, variant, showIcon, align, side, tooltipSide, tooltipAlign, tooltipSideOffset, }: LanguageSwitcherProps): react_jsx_runtime.JSX.Element;
305
+ declare function LanguageSwitcher({ languages: propLanguages, currentLanguage: propCurrentLanguage, onLanguageChange: propOnLanguageChange, labels, className, size, shape, variant, showIcon, align, side, }: LanguageSwitcherProps): react_jsx_runtime.JSX.Element;
285
306
 
286
307
  type EnvironmentSwitcherLabels = {
287
308
  /** Tooltip / aria for the control */
@@ -336,11 +357,14 @@ type EnvironmentSwitcherProps = {
336
357
  variant?: "default" | "mini";
337
358
  align?: "start" | "center" | "end";
338
359
  side?: "top" | "bottom" | "left" | "right";
360
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
339
361
  tooltipSide?: "top" | "right" | "bottom" | "left";
362
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
340
363
  tooltipAlign?: "start" | "center" | "end";
364
+ /** @deprecated No longer used; mini variant no longer renders a tooltip. */
341
365
  tooltipSideOffset?: number;
342
366
  };
343
- declare function EnvironmentSwitcher({ className, environment: propEnvironment, onEnvironmentChange: propOnEnvironmentChange, environments: propEnvironments, labels: userLabels, size, shape, variant, align, side, tooltipSide, tooltipAlign, tooltipSideOffset, }: EnvironmentSwitcherProps): react_jsx_runtime.JSX.Element;
367
+ declare function EnvironmentSwitcher({ className, environment: propEnvironment, onEnvironmentChange: propOnEnvironmentChange, environments: propEnvironments, labels: userLabels, size, shape, variant, align, side, }: EnvironmentSwitcherProps): react_jsx_runtime.JSX.Element;
344
368
 
345
369
  type EnvironmentBannerLabels = {
346
370
  stagingMessage?: string;
@@ -690,8 +714,8 @@ declare function useDebouncedValue<T>(value: T, delayMs: number): T;
690
714
  declare function useDebouncedValueStrict<T>(value: T, delayMs: number): T | undefined;
691
715
 
692
716
  declare const buttonVariants: (props?: ({
693
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
694
- size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
717
+ variant?: "default" | "link" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
718
+ size?: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null | undefined;
695
719
  } & class_variance_authority_types.ClassProp) | undefined) => string;
696
720
  declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
697
721
  asChild?: boolean;
@@ -877,4 +901,4 @@ declare function USAddressInput({ value, onChange, lookupZip, validateAddress, a
877
901
 
878
902
  declare function cn(...inputs: ClassValue[]): string;
879
903
 
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 };
904
+ 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, EmptyState, type EmptyStateProps, EnvironmentBanner, type EnvironmentBannerLabels, type EnvironmentBannerProps, EnvironmentContext, type EnvironmentContextValue, EnvironmentDot, type EnvironmentDotProps, EnvironmentMiniBadge, type EnvironmentMiniBadgeProps, EnvironmentSwitcher, type EnvironmentSwitcherLabels, type EnvironmentSwitcherProps, ErrorState, EventDialog, type EventDialogLabels, type EventDialogProps, EventRsvpBadge, type EventRsvpBadgeProps, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, LoadingState, 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 };