@algenium/blocks 1.13.0 → 1.14.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/README.md +160 -0
- package/dist/index.cjs +1752 -168
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +291 -7
- package/dist/index.d.ts +291 -7
- package/dist/index.js +1600 -26
- package/dist/index.js.map +1 -1
- package/package.json +15 -5
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import * as React from 'react';
|
|
|
2
2
|
import React__default, { ReactNode } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { LucideIcon } from 'lucide-react';
|
|
5
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
6
|
+
import { HlsConfig, RetryConfig, LoaderResponse } from 'hls.js';
|
|
5
7
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
6
8
|
import { VariantProps } from 'class-variance-authority';
|
|
7
9
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
@@ -10,7 +12,6 @@ import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
|
10
12
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
11
13
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
12
14
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
13
|
-
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
14
15
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
15
16
|
import { ClassValue } from 'clsx';
|
|
16
17
|
|
|
@@ -731,6 +732,294 @@ interface ChatSidebarProps {
|
|
|
731
732
|
}
|
|
732
733
|
declare function ChatSidebar({ currentUserId, config, labels, roleLabel, roomTypeLabel, mobileTopOffset, className, }: ChatSidebarProps): react_jsx_runtime.JSX.Element | null;
|
|
733
734
|
|
|
735
|
+
/** Category keys, in display order. */
|
|
736
|
+
type EmojiCategoryKey = "smileys" | "people" | "nature" | "food" | "travel" | "activities" | "objects" | "symbols" | "flags";
|
|
737
|
+
interface EmojiDatum {
|
|
738
|
+
/** The emoji glyph to insert. */
|
|
739
|
+
e: string;
|
|
740
|
+
/** English label, for aria-label / tooltip. */
|
|
741
|
+
n: string;
|
|
742
|
+
/** Normalized bilingual (en+es) search haystack; space-joined tokens. */
|
|
743
|
+
k: string;
|
|
744
|
+
/** Uniform skin-tone variants, tone 1..5. Present only when applicable. */
|
|
745
|
+
t?: string[];
|
|
746
|
+
}
|
|
747
|
+
interface EmojiCategoryData {
|
|
748
|
+
key: EmojiCategoryKey;
|
|
749
|
+
emojis: EmojiDatum[];
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
/** 0 = default (no modifier / yellow); 1..5 = Fitzpatrick light..dark. */
|
|
753
|
+
type EmojiSkinTone = 0 | 1 | 2 | 3 | 4 | 5;
|
|
754
|
+
type EmojiPickerLocale = "en" | "es";
|
|
755
|
+
interface EmojiPickerLabels {
|
|
756
|
+
searchPlaceholder?: string;
|
|
757
|
+
searchAriaLabel?: string;
|
|
758
|
+
noResults?: string;
|
|
759
|
+
recentTitle?: string;
|
|
760
|
+
skinToneAriaLabel?: string;
|
|
761
|
+
/** Overrides the built-in category section titles (keyed by category, plus
|
|
762
|
+
* `recent`). When omitted, titles come from `locale`. */
|
|
763
|
+
categoryTitles?: Partial<Record<EmojiCategoryKey | "recent", string>>;
|
|
764
|
+
}
|
|
765
|
+
interface EmojiPickerProps {
|
|
766
|
+
/** Called with the (skin-tone-applied) emoji glyph when one is chosen. */
|
|
767
|
+
onSelect: (emoji: string) => void;
|
|
768
|
+
/** Drives the default section titles + skin-tone labels. Search is always
|
|
769
|
+
* bilingual regardless. Default `"en"`. */
|
|
770
|
+
locale?: EmojiPickerLocale;
|
|
771
|
+
labels?: EmojiPickerLabels;
|
|
772
|
+
className?: string;
|
|
773
|
+
/** How many recently-used emoji to remember. Default 24. */
|
|
774
|
+
recentLimit?: number;
|
|
775
|
+
/** localStorage namespace for recents + skin-tone preference. Default
|
|
776
|
+
* `"blocks-emoji"`. Set to `null` to disable persistence entirely. */
|
|
777
|
+
storageKey?: string | null;
|
|
778
|
+
}
|
|
779
|
+
/**
|
|
780
|
+
* Normalizes a search query the same way keyword haystacks are normalized at
|
|
781
|
+
* generation time (see `scripts/generate-emoji-data.mjs`): lowercased, accents
|
|
782
|
+
* stripped, punctuation collapsed to spaces. Keeping the two in lockstep is
|
|
783
|
+
* what lets "corazón", "corazon" and "heart" all match the same emoji.
|
|
784
|
+
*/
|
|
785
|
+
declare function normalizeEmojiQuery(input: string): string;
|
|
786
|
+
/**
|
|
787
|
+
* Zero-dependency emoji picker with bilingual (English + Spanish) search,
|
|
788
|
+
* category navigation, a persisted "frequently used" section, a global skin
|
|
789
|
+
* tone preference, and keyboard navigation (desktop-first). Usable standalone
|
|
790
|
+
* or inside {@link EmojiPickerPopover}.
|
|
791
|
+
*/
|
|
792
|
+
declare function EmojiPicker({ onSelect, locale, labels, className, recentLimit, storageKey, }: EmojiPickerProps): react_jsx_runtime.JSX.Element;
|
|
793
|
+
|
|
794
|
+
declare function Popover({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
795
|
+
declare function PopoverTrigger({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
796
|
+
declare function PopoverContent({ className, align, sideOffset, ...props }: React.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
797
|
+
declare function PopoverAnchor({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime.JSX.Element;
|
|
798
|
+
|
|
799
|
+
interface EmojiPickerPopoverProps extends EmojiPickerProps {
|
|
800
|
+
/** aria-label for the trigger button. Defaults by `locale`. */
|
|
801
|
+
triggerLabel?: string;
|
|
802
|
+
/** Extra classes for the trigger button. */
|
|
803
|
+
triggerClassName?: string;
|
|
804
|
+
/** Popover side. Default `"top"`. */
|
|
805
|
+
side?: React.ComponentProps<typeof PopoverContent>["side"];
|
|
806
|
+
/** Popover alignment. Default `"end"`. */
|
|
807
|
+
align?: React.ComponentProps<typeof PopoverContent>["align"];
|
|
808
|
+
/** Controlled open state (optional). */
|
|
809
|
+
open?: boolean;
|
|
810
|
+
onOpenChange?: (open: boolean) => void;
|
|
811
|
+
/** Keep the popover open after choosing an emoji (e.g. to add several).
|
|
812
|
+
* Default `false`. */
|
|
813
|
+
keepOpenOnSelect?: boolean;
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* Convenience wrapper: a `Smile` icon button that opens {@link EmojiPicker} in
|
|
817
|
+
* a popover. Drop it next to a textarea/input; wire `onSelect` to insert at the
|
|
818
|
+
* caret. Uncontrolled by default; pass `open`/`onOpenChange` to control it.
|
|
819
|
+
*/
|
|
820
|
+
declare function EmojiPickerPopover({ onSelect, triggerLabel, triggerClassName, side, align, open, onOpenChange, keepOpenOnSelect, locale, ...pickerProps }: EmojiPickerPopoverProps): react_jsx_runtime.JSX.Element;
|
|
821
|
+
|
|
822
|
+
/**
|
|
823
|
+
* Playback error description, ported from the app's HLS player but stripped of
|
|
824
|
+
* Sentry. `@algenium/blocks` must stay reporting-agnostic: the player surfaces
|
|
825
|
+
* a {@link DescribedPlaybackError} through an optional `onError` prop so each
|
|
826
|
+
* app can wire its own reporting (Sentry, Datadog, console, …).
|
|
827
|
+
*
|
|
828
|
+
* User-facing messages are intentionally NOT baked in here — they come from the
|
|
829
|
+
* player's `labels` prop so they stay translatable. This module only classifies
|
|
830
|
+
* the error and produces a machine-readable summary + detail for logging.
|
|
831
|
+
*/
|
|
832
|
+
type HlsPlayerMode = "live" | "vod";
|
|
833
|
+
/** Coarse category the player uses to pick the right localized message. */
|
|
834
|
+
type PlaybackErrorKind = "unavailable" | "network" | "media" | "unsupported" | "generic";
|
|
835
|
+
type PlaybackErrorContext = {
|
|
836
|
+
mode: HlsPlayerMode;
|
|
837
|
+
src: string;
|
|
838
|
+
manifestParsed: boolean;
|
|
839
|
+
retryCount?: number;
|
|
840
|
+
source: "hls" | "native" | "unsupported";
|
|
841
|
+
};
|
|
842
|
+
type PlaybackErrorDetail = {
|
|
843
|
+
source: PlaybackErrorContext["source"];
|
|
844
|
+
kind: PlaybackErrorKind;
|
|
845
|
+
type?: string;
|
|
846
|
+
details?: string;
|
|
847
|
+
fatal?: boolean;
|
|
848
|
+
httpStatus?: number;
|
|
849
|
+
url?: string;
|
|
850
|
+
reason?: string;
|
|
851
|
+
errorMessage?: string;
|
|
852
|
+
mediaErrorCode?: number;
|
|
853
|
+
mediaErrorName?: string;
|
|
854
|
+
context: PlaybackErrorContext;
|
|
855
|
+
};
|
|
856
|
+
type DescribePlaybackErrorInput = {
|
|
857
|
+
source: "hls";
|
|
858
|
+
type?: string;
|
|
859
|
+
details?: string;
|
|
860
|
+
fatal: boolean;
|
|
861
|
+
url?: string;
|
|
862
|
+
response?: {
|
|
863
|
+
code?: number;
|
|
864
|
+
text?: string;
|
|
865
|
+
};
|
|
866
|
+
reason?: string;
|
|
867
|
+
error?: unknown;
|
|
868
|
+
context: PlaybackErrorContext;
|
|
869
|
+
} | {
|
|
870
|
+
source: "native";
|
|
871
|
+
mediaError?: MediaError | null;
|
|
872
|
+
context: PlaybackErrorContext;
|
|
873
|
+
} | {
|
|
874
|
+
source: "unsupported";
|
|
875
|
+
context: PlaybackErrorContext;
|
|
876
|
+
};
|
|
877
|
+
type DescribedPlaybackError = {
|
|
878
|
+
/** Machine-readable one-line summary for logs. */
|
|
879
|
+
summary: string;
|
|
880
|
+
/** Coarse category for choosing a localized message. */
|
|
881
|
+
kind: PlaybackErrorKind;
|
|
882
|
+
detail: PlaybackErrorDetail;
|
|
883
|
+
};
|
|
884
|
+
declare function describePlaybackError(input: DescribePlaybackErrorInput): DescribedPlaybackError;
|
|
885
|
+
|
|
886
|
+
interface PlaybackStats {
|
|
887
|
+
/** Concurrent live viewers (meaningful in live mode). */
|
|
888
|
+
viewers?: number;
|
|
889
|
+
/** Cumulative VOD reproductions. */
|
|
890
|
+
views?: number;
|
|
891
|
+
}
|
|
892
|
+
interface UsePlaybackStatsOptions {
|
|
893
|
+
/** Poll interval in ms. Default 15000. */
|
|
894
|
+
intervalMs?: number;
|
|
895
|
+
/** When false, polling is paused. Default true. */
|
|
896
|
+
enabled?: boolean;
|
|
897
|
+
}
|
|
898
|
+
/**
|
|
899
|
+
* Polls a playback-stats endpoint (media-svc `GET /playback/:mediaId/stats`)
|
|
900
|
+
* and returns `{ viewers, views }`. Plain `fetch`, zero dependencies, so wiring
|
|
901
|
+
* it into an app is a one-liner. Fails silently (stats are non-critical); the
|
|
902
|
+
* last successful value is retained across transient errors.
|
|
903
|
+
*/
|
|
904
|
+
declare function usePlaybackStats(statsUrl: string | null | undefined, { intervalMs, enabled }?: UsePlaybackStatsOptions): PlaybackStats;
|
|
905
|
+
|
|
906
|
+
interface VideoPlayerLabels {
|
|
907
|
+
play?: string;
|
|
908
|
+
pause?: string;
|
|
909
|
+
mute?: string;
|
|
910
|
+
unmute?: string;
|
|
911
|
+
enterFullscreen?: string;
|
|
912
|
+
exitFullscreen?: string;
|
|
913
|
+
pictureInPicture?: string;
|
|
914
|
+
settings?: string;
|
|
915
|
+
quality?: string;
|
|
916
|
+
auto?: string;
|
|
917
|
+
speed?: string;
|
|
918
|
+
live?: string;
|
|
919
|
+
goLive?: string;
|
|
920
|
+
tapToUnmute?: string;
|
|
921
|
+
loading?: string;
|
|
922
|
+
waiting?: string;
|
|
923
|
+
retry?: string;
|
|
924
|
+
/** Messages by error kind; a generic fallback covers the rest. */
|
|
925
|
+
errorUnavailable?: string;
|
|
926
|
+
errorNetwork?: string;
|
|
927
|
+
errorMedia?: string;
|
|
928
|
+
errorUnsupported?: string;
|
|
929
|
+
errorGeneric?: string;
|
|
930
|
+
/** `(n) => "N watching"`. */
|
|
931
|
+
formatViewers?: (n: number) => string;
|
|
932
|
+
/** `(n) => "N views"`. */
|
|
933
|
+
formatViews?: (n: number) => string;
|
|
934
|
+
}
|
|
935
|
+
interface VideoPlayerProps {
|
|
936
|
+
src: string;
|
|
937
|
+
mode: "live" | "vod";
|
|
938
|
+
/** Cover image; renders a click-to-play state before attaching HLS. */
|
|
939
|
+
poster?: string;
|
|
940
|
+
autoPlay?: boolean;
|
|
941
|
+
muted?: boolean;
|
|
942
|
+
/** Presentational stats (see `usePlaybackStats`). */
|
|
943
|
+
stats?: PlaybackStats;
|
|
944
|
+
labels?: VideoPlayerLabels;
|
|
945
|
+
/** Show the resolution picker when multiple levels exist. Default true. */
|
|
946
|
+
showQualitySelector?: boolean;
|
|
947
|
+
onPlayingChange?: (playing: boolean) => void;
|
|
948
|
+
/** Fires once, the first time playback actually starts — wire your view
|
|
949
|
+
* beacon here. */
|
|
950
|
+
onFirstPlay?: () => void;
|
|
951
|
+
onError?: (error: DescribedPlaybackError) => void;
|
|
952
|
+
className?: string;
|
|
953
|
+
}
|
|
954
|
+
/**
|
|
955
|
+
* Standardized HLS video player with a fully custom control bar (no native
|
|
956
|
+
* `controls`): click-to-play poster, play/pause, mute + volume, resolution
|
|
957
|
+
* picker, playback speed (VOD), Picture-in-Picture, fullscreen, a VOD seekbar
|
|
958
|
+
* with buffered ranges, and a live badge (no seekbar) with a "go live"
|
|
959
|
+
* affordance. `stats` renders live viewer / VOD reproduction counts.
|
|
960
|
+
*
|
|
961
|
+
* hls.js is a peer dependency loaded on demand; see {@link useHlsPlayback}.
|
|
962
|
+
*/
|
|
963
|
+
declare function VideoPlayer({ src, mode, poster, autoPlay, muted, stats, labels, showQualitySelector, onPlayingChange, onFirstPlay, onError, className, }: VideoPlayerProps): react_jsx_runtime.JSX.Element;
|
|
964
|
+
|
|
965
|
+
type PlaybackState = "idle" | "loading" | "ready" | "waiting" | "error";
|
|
966
|
+
/** Autoplay overlay state once the manifest is parsed. */
|
|
967
|
+
type AutoplayState = "none" | "playing" | "muted" | "blocked";
|
|
968
|
+
interface QualityLevel {
|
|
969
|
+
/** hls.js level index. */
|
|
970
|
+
index: number;
|
|
971
|
+
/** Vertical resolution, e.g. 720. */
|
|
972
|
+
height: number;
|
|
973
|
+
}
|
|
974
|
+
interface UseHlsPlaybackOptions {
|
|
975
|
+
src: string;
|
|
976
|
+
mode: HlsPlayerMode;
|
|
977
|
+
/** When false, nothing is attached/loaded (poster gating). */
|
|
978
|
+
active: boolean;
|
|
979
|
+
/** Attempt autoplay once the manifest is ready. Live always autoplays. */
|
|
980
|
+
autoPlay?: boolean;
|
|
981
|
+
/** Start muted (independent of the autoplay cascade). */
|
|
982
|
+
muted?: boolean;
|
|
983
|
+
onError?: (error: DescribedPlaybackError) => void;
|
|
984
|
+
onPlayingChange?: (playing: boolean) => void;
|
|
985
|
+
}
|
|
986
|
+
interface UseHlsPlaybackResult {
|
|
987
|
+
videoRef: React.RefObject<HTMLVideoElement | null>;
|
|
988
|
+
state: PlaybackState;
|
|
989
|
+
/** Available quality levels (empty for native HLS / single-level). */
|
|
990
|
+
qualities: QualityLevel[];
|
|
991
|
+
/** Selected level index, or -1 for automatic. */
|
|
992
|
+
activeLevel: number;
|
|
993
|
+
setLevel: (index: number) => void;
|
|
994
|
+
autoplayState: AutoplayState;
|
|
995
|
+
/** The classified error, when `state === "error"`. */
|
|
996
|
+
error: DescribedPlaybackError | null;
|
|
997
|
+
retry: () => void;
|
|
998
|
+
}
|
|
999
|
+
/**
|
|
1000
|
+
* Attaches hls.js (loaded on demand via dynamic import) or native HLS to a
|
|
1001
|
+
* `<video>` element and exposes the state a custom control bar needs. Ported
|
|
1002
|
+
* from the app's production `HlsPlayer` effect, minus the built-in UI and
|
|
1003
|
+
* Sentry: errors are classified and handed to `onError`.
|
|
1004
|
+
*/
|
|
1005
|
+
declare function useHlsPlayback({ src, mode, active, autoPlay, muted, onError, onPlayingChange, }: UseHlsPlaybackOptions): UseHlsPlaybackResult;
|
|
1006
|
+
|
|
1007
|
+
/** Retry transient live-edge 404s; hls.js skips all 4xx by default. */
|
|
1008
|
+
declare function shouldRetryLiveEdge404(retryConfig: RetryConfig | null | undefined, retryCount: number, _isTimeout: boolean, loaderResponse: LoaderResponse | undefined, defaultRetry: boolean): boolean;
|
|
1009
|
+
/**
|
|
1010
|
+
* HLS.js options tuned for live playback through a Cloudflare R2 custom domain.
|
|
1011
|
+
* Ported from the app's production player: stays 4 segments (~8s) behind the
|
|
1012
|
+
* live edge so transient upload lag never reaches the playhead, and retries the
|
|
1013
|
+
* 404s that appear while a new segment is still being written.
|
|
1014
|
+
*/
|
|
1015
|
+
declare function createLiveHlsConfig(): Partial<HlsConfig>;
|
|
1016
|
+
/**
|
|
1017
|
+
* HLS.js options for on-demand (VOD) playback. No live-edge cushion; enables
|
|
1018
|
+
* the worker and lets hls.js manage the buffer with its defaults, which are
|
|
1019
|
+
* well suited to seekable recordings.
|
|
1020
|
+
*/
|
|
1021
|
+
declare function createVodHlsConfig(): Partial<HlsConfig>;
|
|
1022
|
+
|
|
734
1023
|
/**
|
|
735
1024
|
* Debounces a value — useful for ZIP lookups and autocomplete queries.
|
|
736
1025
|
*/
|
|
@@ -811,11 +1100,6 @@ declare function DrawerFooter({ className, ...props }: React.ComponentProps<"div
|
|
|
811
1100
|
declare function DrawerTitle({ className, ...props }: React.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
|
|
812
1101
|
declare function DrawerDescription({ className, ...props }: React.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
|
|
813
1102
|
|
|
814
|
-
declare function Popover({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
815
|
-
declare function PopoverTrigger({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
816
|
-
declare function PopoverContent({ className, align, sideOffset, ...props }: React.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
817
|
-
declare function PopoverAnchor({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime.JSX.Element;
|
|
818
|
-
|
|
819
1103
|
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
820
1104
|
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
|
|
821
1105
|
|
|
@@ -958,4 +1242,4 @@ declare const MEXICO_STATE_PATHS: Record<MexicoStateId, string>;
|
|
|
958
1242
|
|
|
959
1243
|
declare function cn(...inputs: ClassValue[]): string;
|
|
960
1244
|
|
|
961
|
-
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, 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, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProfessionalVerificationStatus, 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, VerifiedProfessionalBadge, type VerifiedProfessionalBadgeProps, buttonVariants, cn, defaultLanguages, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useLanguageContext, useNotificationsContext };
|
|
1245
|
+
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 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 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, type PlaybackErrorContext, type PlaybackErrorDetail, type PlaybackErrorKind, type PlaybackState, type PlaybackStats, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProfessionalVerificationStatus, type QualityLevel, 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, type UseHlsPlaybackOptions, type UseHlsPlaybackResult, type UsePlaybackStatsOptions, VerifiedProfessionalBadge, type VerifiedProfessionalBadgeProps, VideoPlayer, type VideoPlayerLabels, type VideoPlayerProps, buttonVariants, cn, createLiveHlsConfig, createVodHlsConfig, defaultLanguages, describePlaybackError, getEnvironmentDotClass, getEnvironmentLabel, isBlocksDataEnvironment, normalizeEmojiQuery, shouldRetryLiveEdge404, toggleVariants, useCalendarContext, useChatRoom, useChatSidebar, useDebouncedValue, useDebouncedValueStrict, useEnvironmentContext, useHlsPlayback, useLanguageContext, useNotificationsContext, usePlaybackStats };
|