@algenium/blocks 1.18.0 → 1.19.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.cjs +432 -111
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +46 -3
- package/dist/index.d.ts +46 -3
- package/dist/index.js +433 -112
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -17,6 +17,13 @@ import { Command as Command$1 } from 'cmdk';
|
|
|
17
17
|
import * as RPNInput from 'react-phone-number-input';
|
|
18
18
|
import { ClassValue } from 'clsx';
|
|
19
19
|
|
|
20
|
+
interface EventCategory {
|
|
21
|
+
id: string;
|
|
22
|
+
name: string;
|
|
23
|
+
alias: string;
|
|
24
|
+
iconColor: string;
|
|
25
|
+
bgColor: string;
|
|
26
|
+
}
|
|
20
27
|
interface CalendarEvent {
|
|
21
28
|
id: string;
|
|
22
29
|
calendarId: string;
|
|
@@ -30,6 +37,13 @@ interface CalendarEvent {
|
|
|
30
37
|
rrule?: string | null;
|
|
31
38
|
referenceType?: string | null;
|
|
32
39
|
referenceId?: string | null;
|
|
40
|
+
/** Display label for the linked entity (case number, etc.) */
|
|
41
|
+
linkedEntityLabel?: string | null;
|
|
42
|
+
categoryId?: string | null;
|
|
43
|
+
category?: EventCategory | null;
|
|
44
|
+
priorityStatus?: "high" | "medium" | "low" | string;
|
|
45
|
+
rescheduledCount?: number;
|
|
46
|
+
completedAt?: string | null;
|
|
33
47
|
attendees?: Array<{
|
|
34
48
|
email: string;
|
|
35
49
|
displayName?: string | null;
|
|
@@ -49,9 +63,15 @@ interface CalendarData {
|
|
|
49
63
|
description?: string | null;
|
|
50
64
|
feedToken?: string;
|
|
51
65
|
}
|
|
66
|
+
interface CalendarLinkOption {
|
|
67
|
+
id: string;
|
|
68
|
+
label: string;
|
|
69
|
+
description?: string;
|
|
70
|
+
}
|
|
52
71
|
interface CalendarContextValue {
|
|
53
72
|
calendars: CalendarData[];
|
|
54
73
|
events: CalendarEvent[];
|
|
74
|
+
categories: EventCategory[];
|
|
55
75
|
isLoading: boolean;
|
|
56
76
|
error: string | null;
|
|
57
77
|
feedUrl: string | null;
|
|
@@ -60,6 +80,11 @@ interface CalendarContextValue {
|
|
|
60
80
|
updateEvent?: (eventId: string, data: Partial<CalendarEvent>) => Promise<void>;
|
|
61
81
|
deleteEvent?: (eventId: string) => Promise<void>;
|
|
62
82
|
rsvpEvent?: (eventId: string, partstat: string) => Promise<void>;
|
|
83
|
+
completeEvent?: (eventId: string) => Promise<void>;
|
|
84
|
+
searchEvents?: (query: string, range?: {
|
|
85
|
+
from?: string;
|
|
86
|
+
to?: string;
|
|
87
|
+
}) => Promise<CalendarEvent[]>;
|
|
63
88
|
}
|
|
64
89
|
declare const CalendarContext: React.Context<CalendarContextValue | null>;
|
|
65
90
|
declare function useCalendarContext(): CalendarContextValue | null;
|
|
@@ -589,6 +614,7 @@ interface CalendarViewLabels {
|
|
|
589
614
|
today?: string;
|
|
590
615
|
newEvent?: string;
|
|
591
616
|
noEvents?: string;
|
|
617
|
+
searchPlaceholder?: string;
|
|
592
618
|
}
|
|
593
619
|
interface CalendarViewProps {
|
|
594
620
|
events: CalendarEvent[];
|
|
@@ -596,14 +622,17 @@ interface CalendarViewProps {
|
|
|
596
622
|
onEventClick?: (event: CalendarEvent) => void;
|
|
597
623
|
onDateSelect?: (date: Date) => void;
|
|
598
624
|
onCreateEvent?: () => void;
|
|
625
|
+
/** Debounced search callback — when provided, shows a search input */
|
|
626
|
+
onSearch?: (query: string) => void;
|
|
599
627
|
labels?: CalendarViewLabels;
|
|
600
628
|
className?: string;
|
|
601
629
|
}
|
|
602
|
-
declare function CalendarView({ events, isLoading, onEventClick, onDateSelect, onCreateEvent, labels, className, }: CalendarViewProps): react_jsx_runtime.JSX.Element;
|
|
630
|
+
declare function CalendarView({ events, isLoading, onEventClick, onDateSelect, onCreateEvent, onSearch, labels, className, }: CalendarViewProps): react_jsx_runtime.JSX.Element;
|
|
603
631
|
|
|
604
632
|
interface EventDialogLabels {
|
|
605
633
|
createTitle?: string;
|
|
606
634
|
editTitle?: string;
|
|
635
|
+
previewTitle?: string;
|
|
607
636
|
summary?: string;
|
|
608
637
|
description?: string;
|
|
609
638
|
location?: string;
|
|
@@ -612,19 +641,33 @@ interface EventDialogLabels {
|
|
|
612
641
|
allDay?: string;
|
|
613
642
|
attendees?: string;
|
|
614
643
|
reminder?: string;
|
|
644
|
+
category?: string;
|
|
645
|
+
link?: string;
|
|
646
|
+
linkPlaceholder?: string;
|
|
615
647
|
save?: string;
|
|
616
648
|
cancel?: string;
|
|
617
649
|
delete?: string;
|
|
650
|
+
edit?: string;
|
|
651
|
+
markComplete?: string;
|
|
652
|
+
completed?: string;
|
|
653
|
+
noCategory?: string;
|
|
654
|
+
}
|
|
655
|
+
interface EventDialogLinkSearch {
|
|
656
|
+
label?: string;
|
|
657
|
+
search: (query: string) => Promise<CalendarLinkOption[]>;
|
|
618
658
|
}
|
|
619
659
|
interface EventDialogProps {
|
|
620
660
|
open: boolean;
|
|
621
661
|
onOpenChange: (open: boolean) => void;
|
|
622
662
|
event?: Partial<CalendarEvent>;
|
|
663
|
+
categories?: EventCategory[];
|
|
664
|
+
linkSearch?: EventDialogLinkSearch;
|
|
623
665
|
onSave: (data: Partial<CalendarEvent>) => Promise<void>;
|
|
624
666
|
onDelete?: () => Promise<void>;
|
|
667
|
+
onComplete?: () => Promise<void>;
|
|
625
668
|
labels?: EventDialogLabels;
|
|
626
669
|
}
|
|
627
|
-
declare function EventDialog({ open, onOpenChange, event, onSave, onDelete, labels, }: EventDialogProps): react_jsx_runtime.JSX.Element;
|
|
670
|
+
declare function EventDialog({ open, onOpenChange, event, categories, linkSearch, onSave, onDelete, onComplete, labels, }: EventDialogProps): react_jsx_runtime.JSX.Element;
|
|
628
671
|
|
|
629
672
|
interface UpcomingEventsProps {
|
|
630
673
|
events: CalendarEvent[];
|
|
@@ -1409,4 +1452,4 @@ declare const MEXICO_STATE_PATHS: Record<MexicoStateId, string>;
|
|
|
1409
1452
|
|
|
1410
1453
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1411
1454
|
|
|
1412
|
-
export { type AddressAutocompleteAdapter, type AutoplayState, 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, type ChatStatusTone, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type DescribedPlaybackError, 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, type EmojiCategoryData, type EmojiCategoryKey, type EmojiDatum, EmojiPicker, type EmojiPickerLabels, type EmojiPickerLocale, EmojiPickerPopover, type EmojiPickerPopoverProps, type EmojiPickerProps, type EmojiSkinTone, 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 FeatureEntry, type HlsPlayerMode, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, LoadingState, MEXICO_STATES, MEXICO_STATE_PATHS, MexicoMap, type MexicoMapProps, type MexicoState, type MexicoStateId, MiniCalendar, type MiniCalendarProps, type Notification, type NotificationType, NotificationsContext, type NotificationsContextValue, NotificationsWidget, type NotificationsWidgetProps, OrgSwitcher, type OrgSwitcherLabels, type OrgSwitcherProps, type OrgSwitcherTenant, PhoneInput, type PhoneInputProps, type PlaybackErrorContext, type PlaybackErrorDetail, type PlaybackErrorKind, type PlaybackState, type PlaybackStats, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProfessionalVerificationStatus, type QualityLevel, ScrollArea, ScrollBar, SearchCommand, type SearchCommandLabels, type SearchCommandProps, type SearchCommandSelection, type SearchHit, Slider, ThemeSwitcher, type ThemeSwitcherLabels, type ThemeSwitcherProps, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, USAddressInput, type USAddressInputLabels, type USAddressInputProps, type USAddressValue, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, type UseHlsPlaybackOptions, type UseHlsPlaybackResult, type UsePlaybackStatsOptions, type UseSearchHotkeyOptions, type UseSearchHotkeyResult, VerifiedProfessionalBadge, type VerifiedProfessionalBadgeProps, VideoPlayer, type VideoPlayerLabels, type VideoPlayerProps, buttonVariants, cn, createLiveHlsConfig, createVodHlsConfig, defaultLanguages, describePlaybackError, fuzzyMatch, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, normalizeEmojiQuery, shouldRetryLiveEdge404, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useHlsPlayback, useLanguageContext, useNotificationsContext, usePlaybackStats, useSearchHotkey };
|
|
1455
|
+
export { type AddressAutocompleteAdapter, type AutoplayState, AvatarEditor, AvatarEditorDialog, type AvatarEditorDialogProps, type AvatarEditorProps, BLOCKS_DATA_ENVIRONMENTS, type BlocksDataEnvironment, type BlocksLanguage, type BlocksNotification, Button, CalendarContext, type CalendarContextValue, type CalendarData, type CalendarEvent, type CalendarLinkOption, 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, type ChatStatusTone, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type DescribedPlaybackError, 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, type EmojiCategoryData, type EmojiCategoryKey, type EmojiDatum, EmojiPicker, type EmojiPickerLabels, type EmojiPickerLocale, EmojiPickerPopover, type EmojiPickerPopoverProps, type EmojiPickerProps, type EmojiSkinTone, EmptyState, type EmptyStateProps, EnvironmentBanner, type EnvironmentBannerLabels, type EnvironmentBannerProps, EnvironmentContext, type EnvironmentContextValue, EnvironmentDot, type EnvironmentDotProps, EnvironmentMiniBadge, type EnvironmentMiniBadgeProps, EnvironmentSwitcher, type EnvironmentSwitcherLabels, type EnvironmentSwitcherProps, ErrorState, type EventCategory, EventDialog, type EventDialogLabels, type EventDialogLinkSearch, type EventDialogProps, EventRsvpBadge, type EventRsvpBadgeProps, type FeatureEntry, type HlsPlayerMode, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, LoadingState, MEXICO_STATES, MEXICO_STATE_PATHS, MexicoMap, type MexicoMapProps, type MexicoState, type MexicoStateId, MiniCalendar, type MiniCalendarProps, type Notification, type NotificationType, NotificationsContext, type NotificationsContextValue, NotificationsWidget, type NotificationsWidgetProps, OrgSwitcher, type OrgSwitcherLabels, type OrgSwitcherProps, type OrgSwitcherTenant, PhoneInput, type PhoneInputProps, type PlaybackErrorContext, type PlaybackErrorDetail, type PlaybackErrorKind, type PlaybackState, type PlaybackStats, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProfessionalVerificationStatus, type QualityLevel, ScrollArea, ScrollBar, SearchCommand, type SearchCommandLabels, type SearchCommandProps, type SearchCommandSelection, type SearchHit, Slider, ThemeSwitcher, type ThemeSwitcherLabels, type ThemeSwitcherProps, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, USAddressInput, type USAddressInputLabels, type USAddressInputProps, type USAddressValue, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, type UseHlsPlaybackOptions, type UseHlsPlaybackResult, type UsePlaybackStatsOptions, type UseSearchHotkeyOptions, type UseSearchHotkeyResult, VerifiedProfessionalBadge, type VerifiedProfessionalBadgeProps, VideoPlayer, type VideoPlayerLabels, type VideoPlayerProps, buttonVariants, cn, createLiveHlsConfig, createVodHlsConfig, defaultLanguages, describePlaybackError, fuzzyMatch, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, normalizeEmojiQuery, shouldRetryLiveEdge404, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useHlsPlayback, useLanguageContext, useNotificationsContext, usePlaybackStats, useSearchHotkey };
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,13 @@ import { Command as Command$1 } from 'cmdk';
|
|
|
17
17
|
import * as RPNInput from 'react-phone-number-input';
|
|
18
18
|
import { ClassValue } from 'clsx';
|
|
19
19
|
|
|
20
|
+
interface EventCategory {
|
|
21
|
+
id: string;
|
|
22
|
+
name: string;
|
|
23
|
+
alias: string;
|
|
24
|
+
iconColor: string;
|
|
25
|
+
bgColor: string;
|
|
26
|
+
}
|
|
20
27
|
interface CalendarEvent {
|
|
21
28
|
id: string;
|
|
22
29
|
calendarId: string;
|
|
@@ -30,6 +37,13 @@ interface CalendarEvent {
|
|
|
30
37
|
rrule?: string | null;
|
|
31
38
|
referenceType?: string | null;
|
|
32
39
|
referenceId?: string | null;
|
|
40
|
+
/** Display label for the linked entity (case number, etc.) */
|
|
41
|
+
linkedEntityLabel?: string | null;
|
|
42
|
+
categoryId?: string | null;
|
|
43
|
+
category?: EventCategory | null;
|
|
44
|
+
priorityStatus?: "high" | "medium" | "low" | string;
|
|
45
|
+
rescheduledCount?: number;
|
|
46
|
+
completedAt?: string | null;
|
|
33
47
|
attendees?: Array<{
|
|
34
48
|
email: string;
|
|
35
49
|
displayName?: string | null;
|
|
@@ -49,9 +63,15 @@ interface CalendarData {
|
|
|
49
63
|
description?: string | null;
|
|
50
64
|
feedToken?: string;
|
|
51
65
|
}
|
|
66
|
+
interface CalendarLinkOption {
|
|
67
|
+
id: string;
|
|
68
|
+
label: string;
|
|
69
|
+
description?: string;
|
|
70
|
+
}
|
|
52
71
|
interface CalendarContextValue {
|
|
53
72
|
calendars: CalendarData[];
|
|
54
73
|
events: CalendarEvent[];
|
|
74
|
+
categories: EventCategory[];
|
|
55
75
|
isLoading: boolean;
|
|
56
76
|
error: string | null;
|
|
57
77
|
feedUrl: string | null;
|
|
@@ -60,6 +80,11 @@ interface CalendarContextValue {
|
|
|
60
80
|
updateEvent?: (eventId: string, data: Partial<CalendarEvent>) => Promise<void>;
|
|
61
81
|
deleteEvent?: (eventId: string) => Promise<void>;
|
|
62
82
|
rsvpEvent?: (eventId: string, partstat: string) => Promise<void>;
|
|
83
|
+
completeEvent?: (eventId: string) => Promise<void>;
|
|
84
|
+
searchEvents?: (query: string, range?: {
|
|
85
|
+
from?: string;
|
|
86
|
+
to?: string;
|
|
87
|
+
}) => Promise<CalendarEvent[]>;
|
|
63
88
|
}
|
|
64
89
|
declare const CalendarContext: React.Context<CalendarContextValue | null>;
|
|
65
90
|
declare function useCalendarContext(): CalendarContextValue | null;
|
|
@@ -589,6 +614,7 @@ interface CalendarViewLabels {
|
|
|
589
614
|
today?: string;
|
|
590
615
|
newEvent?: string;
|
|
591
616
|
noEvents?: string;
|
|
617
|
+
searchPlaceholder?: string;
|
|
592
618
|
}
|
|
593
619
|
interface CalendarViewProps {
|
|
594
620
|
events: CalendarEvent[];
|
|
@@ -596,14 +622,17 @@ interface CalendarViewProps {
|
|
|
596
622
|
onEventClick?: (event: CalendarEvent) => void;
|
|
597
623
|
onDateSelect?: (date: Date) => void;
|
|
598
624
|
onCreateEvent?: () => void;
|
|
625
|
+
/** Debounced search callback — when provided, shows a search input */
|
|
626
|
+
onSearch?: (query: string) => void;
|
|
599
627
|
labels?: CalendarViewLabels;
|
|
600
628
|
className?: string;
|
|
601
629
|
}
|
|
602
|
-
declare function CalendarView({ events, isLoading, onEventClick, onDateSelect, onCreateEvent, labels, className, }: CalendarViewProps): react_jsx_runtime.JSX.Element;
|
|
630
|
+
declare function CalendarView({ events, isLoading, onEventClick, onDateSelect, onCreateEvent, onSearch, labels, className, }: CalendarViewProps): react_jsx_runtime.JSX.Element;
|
|
603
631
|
|
|
604
632
|
interface EventDialogLabels {
|
|
605
633
|
createTitle?: string;
|
|
606
634
|
editTitle?: string;
|
|
635
|
+
previewTitle?: string;
|
|
607
636
|
summary?: string;
|
|
608
637
|
description?: string;
|
|
609
638
|
location?: string;
|
|
@@ -612,19 +641,33 @@ interface EventDialogLabels {
|
|
|
612
641
|
allDay?: string;
|
|
613
642
|
attendees?: string;
|
|
614
643
|
reminder?: string;
|
|
644
|
+
category?: string;
|
|
645
|
+
link?: string;
|
|
646
|
+
linkPlaceholder?: string;
|
|
615
647
|
save?: string;
|
|
616
648
|
cancel?: string;
|
|
617
649
|
delete?: string;
|
|
650
|
+
edit?: string;
|
|
651
|
+
markComplete?: string;
|
|
652
|
+
completed?: string;
|
|
653
|
+
noCategory?: string;
|
|
654
|
+
}
|
|
655
|
+
interface EventDialogLinkSearch {
|
|
656
|
+
label?: string;
|
|
657
|
+
search: (query: string) => Promise<CalendarLinkOption[]>;
|
|
618
658
|
}
|
|
619
659
|
interface EventDialogProps {
|
|
620
660
|
open: boolean;
|
|
621
661
|
onOpenChange: (open: boolean) => void;
|
|
622
662
|
event?: Partial<CalendarEvent>;
|
|
663
|
+
categories?: EventCategory[];
|
|
664
|
+
linkSearch?: EventDialogLinkSearch;
|
|
623
665
|
onSave: (data: Partial<CalendarEvent>) => Promise<void>;
|
|
624
666
|
onDelete?: () => Promise<void>;
|
|
667
|
+
onComplete?: () => Promise<void>;
|
|
625
668
|
labels?: EventDialogLabels;
|
|
626
669
|
}
|
|
627
|
-
declare function EventDialog({ open, onOpenChange, event, onSave, onDelete, labels, }: EventDialogProps): react_jsx_runtime.JSX.Element;
|
|
670
|
+
declare function EventDialog({ open, onOpenChange, event, categories, linkSearch, onSave, onDelete, onComplete, labels, }: EventDialogProps): react_jsx_runtime.JSX.Element;
|
|
628
671
|
|
|
629
672
|
interface UpcomingEventsProps {
|
|
630
673
|
events: CalendarEvent[];
|
|
@@ -1409,4 +1452,4 @@ declare const MEXICO_STATE_PATHS: Record<MexicoStateId, string>;
|
|
|
1409
1452
|
|
|
1410
1453
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1411
1454
|
|
|
1412
|
-
export { type AddressAutocompleteAdapter, type AutoplayState, 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, type ChatStatusTone, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type DescribedPlaybackError, 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, type EmojiCategoryData, type EmojiCategoryKey, type EmojiDatum, EmojiPicker, type EmojiPickerLabels, type EmojiPickerLocale, EmojiPickerPopover, type EmojiPickerPopoverProps, type EmojiPickerProps, type EmojiSkinTone, 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 FeatureEntry, type HlsPlayerMode, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, LoadingState, MEXICO_STATES, MEXICO_STATE_PATHS, MexicoMap, type MexicoMapProps, type MexicoState, type MexicoStateId, MiniCalendar, type MiniCalendarProps, type Notification, type NotificationType, NotificationsContext, type NotificationsContextValue, NotificationsWidget, type NotificationsWidgetProps, OrgSwitcher, type OrgSwitcherLabels, type OrgSwitcherProps, type OrgSwitcherTenant, PhoneInput, type PhoneInputProps, type PlaybackErrorContext, type PlaybackErrorDetail, type PlaybackErrorKind, type PlaybackState, type PlaybackStats, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProfessionalVerificationStatus, type QualityLevel, ScrollArea, ScrollBar, SearchCommand, type SearchCommandLabels, type SearchCommandProps, type SearchCommandSelection, type SearchHit, Slider, ThemeSwitcher, type ThemeSwitcherLabels, type ThemeSwitcherProps, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, USAddressInput, type USAddressInputLabels, type USAddressInputProps, type USAddressValue, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, type UseHlsPlaybackOptions, type UseHlsPlaybackResult, type UsePlaybackStatsOptions, type UseSearchHotkeyOptions, type UseSearchHotkeyResult, VerifiedProfessionalBadge, type VerifiedProfessionalBadgeProps, VideoPlayer, type VideoPlayerLabels, type VideoPlayerProps, buttonVariants, cn, createLiveHlsConfig, createVodHlsConfig, defaultLanguages, describePlaybackError, fuzzyMatch, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, normalizeEmojiQuery, shouldRetryLiveEdge404, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useHlsPlayback, useLanguageContext, useNotificationsContext, usePlaybackStats, useSearchHotkey };
|
|
1455
|
+
export { type AddressAutocompleteAdapter, type AutoplayState, AvatarEditor, AvatarEditorDialog, type AvatarEditorDialogProps, type AvatarEditorProps, BLOCKS_DATA_ENVIRONMENTS, type BlocksDataEnvironment, type BlocksLanguage, type BlocksNotification, Button, CalendarContext, type CalendarContextValue, type CalendarData, type CalendarEvent, type CalendarLinkOption, 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, type ChatStatusTone, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type DescribedPlaybackError, 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, type EmojiCategoryData, type EmojiCategoryKey, type EmojiDatum, EmojiPicker, type EmojiPickerLabels, type EmojiPickerLocale, EmojiPickerPopover, type EmojiPickerPopoverProps, type EmojiPickerProps, type EmojiSkinTone, EmptyState, type EmptyStateProps, EnvironmentBanner, type EnvironmentBannerLabels, type EnvironmentBannerProps, EnvironmentContext, type EnvironmentContextValue, EnvironmentDot, type EnvironmentDotProps, EnvironmentMiniBadge, type EnvironmentMiniBadgeProps, EnvironmentSwitcher, type EnvironmentSwitcherLabels, type EnvironmentSwitcherProps, ErrorState, type EventCategory, EventDialog, type EventDialogLabels, type EventDialogLinkSearch, type EventDialogProps, EventRsvpBadge, type EventRsvpBadgeProps, type FeatureEntry, type HlsPlayerMode, type Language, LanguageContext, type LanguageContextValue, LanguageSwitcher, type LanguageSwitcherLabels, type LanguageSwitcherProps, LoadingState, MEXICO_STATES, MEXICO_STATE_PATHS, MexicoMap, type MexicoMapProps, type MexicoState, type MexicoStateId, MiniCalendar, type MiniCalendarProps, type Notification, type NotificationType, NotificationsContext, type NotificationsContextValue, NotificationsWidget, type NotificationsWidgetProps, OrgSwitcher, type OrgSwitcherLabels, type OrgSwitcherProps, type OrgSwitcherTenant, PhoneInput, type PhoneInputProps, type PlaybackErrorContext, type PlaybackErrorDetail, type PlaybackErrorKind, type PlaybackState, type PlaybackStats, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProfessionalVerificationStatus, type QualityLevel, ScrollArea, ScrollBar, SearchCommand, type SearchCommandLabels, type SearchCommandProps, type SearchCommandSelection, type SearchHit, Slider, ThemeSwitcher, type ThemeSwitcherLabels, type ThemeSwitcherProps, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, USAddressInput, type USAddressInputLabels, type USAddressInputProps, type USAddressValue, UpcomingEvents, type UpcomingEventsProps, type UseChatRoomResult, type UseHlsPlaybackOptions, type UseHlsPlaybackResult, type UsePlaybackStatsOptions, type UseSearchHotkeyOptions, type UseSearchHotkeyResult, VerifiedProfessionalBadge, type VerifiedProfessionalBadgeProps, VideoPlayer, type VideoPlayerLabels, type VideoPlayerProps, buttonVariants, cn, createLiveHlsConfig, createVodHlsConfig, defaultLanguages, describePlaybackError, fuzzyMatch, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, normalizeEmojiQuery, shouldRetryLiveEdge404, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useHlsPlayback, useLanguageContext, useNotificationsContext, usePlaybackStats, useSearchHotkey };
|