@digilogiclabs/saas-factory-ui 1.32.1 → 1.33.2
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.mts +64 -4
- package/dist/index.d.ts +64 -4
- package/dist/index.js +321 -134
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +321 -134
- package/dist/index.mjs.map +1 -1
- package/dist/web/index.d.mts +54 -2
- package/dist/web/index.d.ts +54 -2
- package/dist/web/index.js +321 -134
- package/dist/web/index.js.map +1 -1
- package/dist/web/index.mjs +321 -134
- package/dist/web/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3759,8 +3759,16 @@ declare function useEscapeKey(handler: () => void, enabled?: boolean): void;
|
|
|
3759
3759
|
* 3. `prefers-color-scheme: dark` media query.
|
|
3760
3760
|
*
|
|
3761
3761
|
* Live-updates via a `MutationObserver` watching the root class attribute
|
|
3762
|
-
* and a `change` listener on the media query.
|
|
3763
|
-
*
|
|
3762
|
+
* and a `change` listener on the media query.
|
|
3763
|
+
*
|
|
3764
|
+
* SSR-safe by construction: the FIRST render always returns `false` (or the
|
|
3765
|
+
* `forced` value when provided), matching what the server renders. Detection
|
|
3766
|
+
* only runs after mount in `useEffect`, so the initial client render is
|
|
3767
|
+
* byte-identical to SSR — no hydration mismatch warnings. The trade-off is
|
|
3768
|
+
* a brief flash of light-theme markup before the effect commits the real
|
|
3769
|
+
* value; a no-flash app should also set `.dark` on `<html>` via a synchronous
|
|
3770
|
+
* script tag in the document head before React hydrates (next-themes does
|
|
3771
|
+
* this), in which case this hook then picks up that class on mount.
|
|
3764
3772
|
*/
|
|
3765
3773
|
declare function useDarkMode(forced?: boolean): boolean;
|
|
3766
3774
|
|
|
@@ -4319,8 +4327,38 @@ interface FilterableGridLabels {
|
|
|
4319
4327
|
layoutGridLabel: string;
|
|
4320
4328
|
layoutListLabel: string;
|
|
4321
4329
|
layoutToggleAriaLabel: string;
|
|
4330
|
+
/** Label for the deferred-mode "Apply" button. */
|
|
4331
|
+
applyFiltersLabel: string;
|
|
4332
|
+
/** Label for the deferred-mode "Cancel" button (revert draft). */
|
|
4333
|
+
cancelFiltersLabel: string;
|
|
4322
4334
|
countAnnouncement: (count: number, total: number) => string;
|
|
4323
4335
|
}
|
|
4336
|
+
/**
|
|
4337
|
+
* Sidebar section ordering for the filter panel.
|
|
4338
|
+
*
|
|
4339
|
+
* Default behavior (when omitted): all filters render in their declared
|
|
4340
|
+
* order, then the sort section renders last. Pass an explicit list to
|
|
4341
|
+
* interleave sort between filter groups — e.g., to put a globally-relevant
|
|
4342
|
+
* Sort section above a type-specific Organization filter.
|
|
4343
|
+
*/
|
|
4344
|
+
type FilterableGridSectionOrder = ReadonlyArray<{
|
|
4345
|
+
kind: "filter";
|
|
4346
|
+
key: string;
|
|
4347
|
+
} | {
|
|
4348
|
+
kind: "sort";
|
|
4349
|
+
}>;
|
|
4350
|
+
/**
|
|
4351
|
+
* How sidebar filter+sort selections propagate to `onStateChange`.
|
|
4352
|
+
*
|
|
4353
|
+
* - **`instant`** (default): every chip click in the sidebar emits state
|
|
4354
|
+
* immediately, just like search/category/quicktab changes.
|
|
4355
|
+
* - **`deferred`**: filter + sort chips update a local DRAFT inside the
|
|
4356
|
+
* sidebar. Nothing emits until the user clicks "Apply Filters" (commits
|
|
4357
|
+
* draft → real state → single emission) or "Cancel" (reverts draft).
|
|
4358
|
+
* Search, category, quicktab, and layout still apply instantly so the
|
|
4359
|
+
* primary nav stays responsive.
|
|
4360
|
+
*/
|
|
4361
|
+
type FilterableGridApplyMode = "instant" | "deferred";
|
|
4324
4362
|
interface FilterableGridProps<T> {
|
|
4325
4363
|
/** Items to display. In `client` mode these are filtered locally;
|
|
4326
4364
|
* in `server` mode they are rendered as-is. */
|
|
@@ -4342,6 +4380,28 @@ interface FilterableGridProps<T> {
|
|
|
4342
4380
|
defaultSort?: string | null;
|
|
4343
4381
|
defaultCategory?: string | null;
|
|
4344
4382
|
defaultLayout?: FilterableGridLayout;
|
|
4383
|
+
/** Initial sidebar filter selections (one-time seed at mount). Use
|
|
4384
|
+
* this to hydrate chip state from a URL or saved view, parallel to
|
|
4385
|
+
* `defaultCategory` / `defaultSort`. Subsequent prop changes do NOT
|
|
4386
|
+
* re-seed — the user's clicks are authoritative once the component
|
|
4387
|
+
* is mounted. */
|
|
4388
|
+
defaultFilters?: Record<string, string[]>;
|
|
4389
|
+
/** Initial active quick-tab key (one-time seed at mount). */
|
|
4390
|
+
defaultQuickTab?: string | null;
|
|
4391
|
+
/**
|
|
4392
|
+
* Controls how sidebar (filter + sort) changes propagate to
|
|
4393
|
+
* `onStateChange`. Default `"instant"`. See `FilterableGridApplyMode`.
|
|
4394
|
+
*/
|
|
4395
|
+
applyMode?: FilterableGridApplyMode;
|
|
4396
|
+
/**
|
|
4397
|
+
* Explicit ordering for sidebar sections (filters + sort). When
|
|
4398
|
+
* omitted, renders all filters in declared order followed by the sort
|
|
4399
|
+
* section. Useful for interleaving Sort between filter groups.
|
|
4400
|
+
* Sections referenced here render in the listed order; any filter
|
|
4401
|
+
* key NOT mentioned is appended at the end (preserving declared
|
|
4402
|
+
* order) so adding a new filter never goes missing.
|
|
4403
|
+
*/
|
|
4404
|
+
sectionOrder?: FilterableGridSectionOrder;
|
|
4345
4405
|
/** Items per page in client mode. `0` disables pagination. */
|
|
4346
4406
|
pageSize?: number;
|
|
4347
4407
|
showLayoutToggle?: boolean;
|
|
@@ -4373,7 +4433,7 @@ interface FilterableGridProps<T> {
|
|
|
4373
4433
|
labels?: Partial<FilterableGridLabels>;
|
|
4374
4434
|
className?: string;
|
|
4375
4435
|
}
|
|
4376
|
-
declare function FilterableGrid<T>({ items, mode, getId, getLabel, getCategory, getSearchText, categories, filters, sorts, quickTabs, defaultSort, defaultCategory, defaultLayout, pageSize, showLayoutToggle, showSearch, showCount, searchDebounceMs, staggerCap, staggerStepMs, renderCategoryNav, renderCard, renderEmpty, renderSkeleton, loading, hasMore: serverHasMore, totalCount: serverTotalCount, onLoadMore: serverOnLoadMore, onStateChange, favorites, onItemClick, labels: labelOverrides, className, }: FilterableGridProps<T>): react_jsx_runtime.JSX.Element;
|
|
4436
|
+
declare function FilterableGrid<T>({ items, mode, getId, getLabel, getCategory, getSearchText, categories, filters, sorts, quickTabs, defaultSort, defaultCategory, defaultLayout, defaultFilters, defaultQuickTab, applyMode, sectionOrder, pageSize, showLayoutToggle, showSearch, showCount, searchDebounceMs, staggerCap, staggerStepMs, renderCategoryNav, renderCard, renderEmpty, renderSkeleton, loading, hasMore: serverHasMore, totalCount: serverTotalCount, onLoadMore: serverOnLoadMore, onStateChange, favorites, onItemClick, labels: labelOverrides, className, }: FilterableGridProps<T>): react_jsx_runtime.JSX.Element;
|
|
4377
4437
|
|
|
4378
4438
|
type BrandLoaderMode = "draw" | "pulse";
|
|
4379
4439
|
interface BrandLoaderPath {
|
|
@@ -7667,4 +7727,4 @@ declare class OptimizedStateManager {
|
|
|
7667
7727
|
}
|
|
7668
7728
|
declare const stateManager: OptimizedStateManager;
|
|
7669
7729
|
|
|
7670
|
-
export { ANIMATION_DURATION, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActivityType, type AdvancedAudioTrack, AdvancedPlayer, type AdvancedPlayerProps, Alert, AlertDescription, AlertTitle, AnalyticsDashboard, AnimatedSectionTitle, type AnimatedSectionTitleProps, type AnimationPreset, type AnimationTokens, Breadcrumbs as AppBreadcrumbs, AppShell, AudioFeed, type AudioFeedProps, AudioPlayer, type AudioPlayerProps, SearchWithFilters as AudioSearch, type AudioTrack, type AudioTrackCardData, AuthLayout, Avatar, AvatarFallback, AvatarImage, Badge, BarChart, type BarChart3IconBand, type BarChartProps, type BaseAccordionItemProps, type BaseAccordionProps, type BaseBreadcrumbsProps, type BaseChartProps, type BaseComponentProps, type BaseEmptyStateProps, type BaseSliderProps, type BaseSwitchProps, type BaseTextareaProps, type BaseTheme, type BorderRadiusScale, BracketGenerator, type BracketGeneratorProps, type BracketMatch, type BracketMatchRenderContext, type BracketParticipant, type BracketSeedingStrategy, type BracketSize, type BracketState, type BracketThemeColors, type BracketThemePreset, BrandLoader, type BrandLoaderGradient, type BrandLoaderMode, type BrandLoaderPath, type BrandLoaderProps, type BreadcrumbItem$1 as BreadcrumbItem, Breadcrumbs$1 as Breadcrumbs, type BreadcrumbsProps$1 as BreadcrumbsProps, type BugReportPayload, BugReporter, type BugReporterProps, Button, type ButtonVariants, type CTAAction, CTACluster, type CTAClusterProps, type CacheStrategy, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, type ChartSeries, Checkbox, type CoinCustomTheme, CoinFlipper, type CoinFlipperProps, type CoinResult, type CoinTheme, type CoinThemePreset, type CoinTrigger, CollaborativePlaylist, type CollaborativePlaylistData, type CollaborativePlaylistProps, type Collaborator, type CollaboratorRole, type Column$1 as Column, CommandPalette, type Comment, type CommentData, CommentSystem, type CommentSystemProps, type CommentUser, type ComponentProps, type ComponentSize, type ComponentVariant, Container$1 as Container, ConversionKPI, type CrossfadeMode, DISTANCES, DURATIONS, DashboardGrid, DashboardLayout, DashboardWidget, type DashboardWidgetProps, DataGrid, type DataGridProps, type DataItem, DataTable, type Column as DataTableColumn, type DataTableProps, type DateFilter, type Delimiter, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, type DiceCount, type DiceCustomTheme, DiceRoller, type DiceRollerProps, type DiceTheme, type DiceThemePreset, type DiceTrigger, type Distance, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, type Duration, type DurationFilter, DynamicHeroBanner, EASINGS, type Easing, EmptyState, type EmptyStateProps, EnhancedScrollToTop, type EnhancedScrollToTopProps, type EnvConfig, ErrorAnimation, ErrorBoundary, type ErrorBoundaryProps, ErrorEmptyState, type ErrorEmptyStateProps, ErrorFallback, type ErrorFallbackProps, type ExportOptions, type ExportService, FLOW_TREE_CSS, FLOW_TREE_ICON_NAMES, FeatureGrid, type FeatureGridProps, FeatureHighlight, type FeatureItem, type FeedFilter, type FeedItem, type FeedSortOrder, type FeedbackCategory, FilterChip, type FilterChipProps, type FilterConfig, FilterableGrid, type FilterableGridCategory, type FilterableGridCategoryNavProps, type FilterableGridFilter, type FilterableGridFilterOption, type FilterableGridLabels, type FilterableGridLayout, type FilterableGridProps, type FilterableGridQuickTab, type FilterableGridRenderCardContext, type FilterableGridSort, type FilterableGridState, FixedAudioBar, type FixedAudioBarProps, FlowTree, type FlowTreeAction, type FlowTreeDetail, FlowTreeIcon, type FlowTreeIconName, type FlowTreeIconProps, type FlowTreeIconValue, type FlowTreeImageIcon, type FlowTreeLayoutOptions, type FlowTreeMetaRow, type FlowTreeNode, type FlowTreeProps, type FlowTreeTier, Form, FormBuilder, type FormBuilderProps, FormDescription, type FormField, FormGroup, FormLabel, FormMessage, FormProgress, type FormProps, type FormSchema, FormSection, GameTimer, type GameTimerCustomTheme, type GameTimerHandle, type GameTimerLap, type GameTimerMode, type GameTimerProps, type GameTimerTheme, type GameTimerThemePreset, type GenreFilter, type GlassmorphismTokens, GradientBorderCard, type GradientBorderCardProps, Grid$1 as Grid, GridItem, HOVER, HOVER_TRANSITION, HamburgerIcon, type HamburgerIconProps, Header, HeaderActions, HeaderBrand, HeaderContainer, HeaderDesktopNav, HeaderMobileTrigger, HeaderNavLink, Hero, type HeroBannerCta, type HeroBannerCtaVariant, type HeroBannerCustomTheme, type HeroBannerImageFilter, type HeroBannerMouseEffect, type HeroBannerProps, type HeroBannerSlide, type HeroBannerStat, type HeroBannerStatsBackground, type HeroBannerStatsLayout, type HeroBannerStatsPosition, type HeroBannerStatsSize, type HeroBannerTextAlign, type HeroBannerThemePreset, type HeroBannerTransition, HeroCTA, HeroContent, type HeroProps, HeroSubtitle, HeroTitle, ImageCropDropZone, type ImageCropDropZoneProps, type ImageCropFormat, ImageCropModal, type ImageCropModalProps, type ImageCropOutput, ImageCropper, type ImageCropperHandle, type ImageCropperProps, InfoAnimation, Input, type InputVariants, type IntersectionObserverOptions, KPIDashboard, type KPIData, KPIWidget, type KPIWidgetProps, Label, LavaLamp, type LavaLampProps, LazyImage, type LazyImagePlaceholder, type LazyImageProps, LineChart, type LineChartProps, type LoadingOverlayApi, type LoadingOverlayContextValue, LoadingOverlayProvider, type LoadingOverlayProviderProps, LoadingSpinner, LogoCloud, type LogoCloudProps, type LogoItem, MobileContainer, type MobileContainerProps, MobileContent, MobileEmailInput, MobileForm, MobileFormActions, MobileFormField, MobileFormGroup, type MobileFormProps, MobileFormSection, MobileGrid, MobileHero, type MobileHeroProps, MobileNavButton, MobileNavContent, MobileNavDrawer, MobileNavFooter, MobileNavHeader, MobileNavLink, MobileNavOverlay, MobileNavTrigger, MobileNavigation, MobileOTPInput, MobilePage, MobilePhoneInput, MobileSection, MobileSticky, Modal, type MotionVariant, MultiSlider, NativeAccordionComponent as NativeAccordion, NativeAccordionItem, type NativeAccordionItemComponentProps as NativeAccordionItemProps, type NativeAccordionComponentProps as NativeAccordionProps, NativeBreadcrumbsComponent as NativeBreadcrumbs, type NativeBreadcrumbsComponentProps as NativeBreadcrumbsProps, type NativeComponentProps, Container as NativeContainer, NativeEmptyStateComponent as NativeEmptyState, type NativeEmptyStateComponentProps as NativeEmptyStateProps, NativeErrorEmptyState, type NativeErrorEmptyStateProps as NativeErrorEmptyStateComponentProps, Grid as NativeGrid, NativeMultiSlider, NativeNoDataEmptyState, type NativeNoDataEmptyStateProps as NativeNoDataEmptyStateComponentProps, NativeNoResultsEmptyState, type NativeNoResultsEmptyStateProps as NativeNoResultsEmptyStateComponentProps, Section as NativeSection, type NativeSimpleAccordionItem, NativeSimpleBreadcrumbs, type NativeSimpleBreadcrumbsProps, NativeSliderComponent as NativeSlider, type NativeSliderComponentProps as NativeSliderProps, type NativeStyle, NativeSwitchComponent as NativeSwitch, type NativeSwitchComponentProps as NativeSwitchProps, NativeTextareaComponent as NativeTextarea, type NativeTextareaComponentProps as NativeTextareaProps, NativeTextareaWithCounter, type NativeTextareaWithCounterProps, Pagination as NavigationPagination, Stepper as NavigationStepper, Tabs as NavigationTabs, NetworkAwareContent, type NetworkAwareContentProps, type NetworkInfo, type NetworkSpeed, type NetworkType, NewsTicker, type NewsTickerFilter, type NewsTickerFilterOption, type NewsTickerProps, type NewsTickerSort, NoDataEmptyState, type NoDataEmptyStateProps, NoResultsEmptyState, type NoResultsEmptyStateProps, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationType, type NotificationUser, TrackCard as NowPlayingCard, OSS_LOGO_GRADIENT, OSS_LOGO_PATHS, OSS_LOGO_TRANSFORM, OSS_LOGO_VIEWBOX, OfflineWrapper, type OfflineWrapperProps, Onboarding, OptimizedStateManager, type OptimizedStoreOptions, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PageTransition, type PageTransitionDirection, type PageTransitionProps, type PageTransitionType, Pagination$1 as Pagination, type PaginationConfig, PaginationInfo, type PaginationInfoProps, type PaginationProps$1 as PaginationProps, type ParseRosterOptions, type ParsedTable, type PerformanceMetrics, type PieChartProps, PillToggle, type PillToggleMultiProps, type PillToggleOption, type PillToggleProps, type PillToggleSingleProps, Platform, type PlatformConfig, type PlatformSelect, type PlatformSelectMultiple, type PlatformType, type PlaybackQuality, type PlaybackState, type PlaylistActivity, PlaylistBuilder, type PlaylistBuilderProps, PlaylistBuilder as PlaylistCard, type PlaylistData, PlaylistBuilder as PlaylistSidebar, type PlaylistTrack, type PlaylistVisibility, Preloader, type PreloaderProps, PremiumCard, PremiumCardContent, PremiumCardFooter, PremiumCardHeader, type PremiumCardProps, PricingHero, type PricingHeroProps, type PricingPlan, Progress, ProgressiveImage, type ProgressiveImageProps, type ProgressiveImageStrategy, type ProgressiveImageTransition, PullToRefresh, type PullToRefreshProps, PulseIndicator, type PulseIndicatorProps, type PulseStatus, QuickForm, ROSTER_IMPORT_MAX_BYTES, type RandomPlayerIntensity, type RandomPlayerMode, type RandomPlayerParticipant, RandomPlayerPicker, type RandomPlayerPickerProps, type RandomPlayerPlaceholderMode, type RandomPlayerTheme, type RandomPlayerThemeColors, type RandomPlayerThemePreset, type RandomPlayerTrigger, type RefreshState, type RepeatMode, type ResponsiveColumns, ResponsiveFlex, ResponsiveGrid, type ResponsiveGridProps, ResponsiveHeader, type ResponsiveHeaderProps, RevenueKPI, RosterFileTooLargeError, RosterImport, type RosterImportLabels, type RosterImportProps, type RoundRobinCustomTheme, type RoundRobinLabels, type RoundRobinMatchup, type RoundRobinRound, RoundRobinScheduler, type RoundRobinSchedulerProps, type RoundRobinTheme, type RoundRobinThemePreset, STAGGER, STAGGER_CONTAINERS, STAGGER_ITEMS, SafeAreaWrapper, Scoreboard, type ScoreboardCustomTheme, type ScoreboardLabels, type ScoreboardProps, type ScoreboardRoundSnapshot, type ScoreboardTeam, type ScoreboardTheme, type ScoreboardThemePreset, ScrollProgressBar, type ScrollProgressBarProps, ScrollProgressLine, type ScrollProgressLineProps, ScrollToTop, type ScrollToTopProps, type SearchCategory, type SearchFilters, type SearchResult, type SearchSortBy, type SearchSuggestion, SearchWithFilters, type SearchWithFiltersProps, Section$1 as Section, SectionBlock, type SectionBlockProps, SectionLabel, type SectionLabelProps, SectionTitle, SectionedListEditor, type SectionedListEditorProps, type SectionedListSection, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionConfig, SettingsLayout, type ShareOption, Sidebar, SimpleAccordion, type SimpleAccordionItem, type SimpleAccordionProps, SimpleBreadcrumbs, type SimpleBreadcrumbsProps, SimpleHero, SimpleResponsiveHeader, type Size, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonText, SkipToContent, Slider, type SliderProps, type SocialAction, SocialActions, type SocialActionsProps, type SocialLinks, type SortConfig, type SpacingScale, Stack, type StaggerSpeed, StepProgress, type StepProgressProps, StepWizard, type StepWizardProps, type StepWizardStep, SuccessAnimation, type SuccessAnimationProps, SuccessCheckmark, type SwipeAction, SwipeableCard, type SwipeableCardProps, Switch, type SwitchProps, THEME_COLORS, type TabItem$1 as TabItem, TabNavigation, type TabNavigationProps, Tabs$1 as Tabs, TabsContent, TabsList, TabsTrigger, TagInput, type TagInputProps, type TeamColorSwatch, TeamGenerator, type TeamGeneratorCustomTheme, type TeamGeneratorLabels, type TeamGeneratorProps, type TeamGeneratorTheme, type TeamGeneratorThemePreset, Textarea, type TextareaProps, TextareaWithCounter, type TextareaWithCounterProps, type Theme, type ThemeColors, ThemeProvider, ThemeToggle, type ThemeToggleProps, TiltCard, type TiltCardAspectRatio, type TiltCardProps, type TiltCardStat, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, ToastIcon, type ToastIconProps, type ToastProps, ToastProvider, ToastTitle, type ToastVariant, ToastViewport, Toaster, Tooltip$1 as Tooltip, TooltipContent, type TooltipProps$1 as TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TouchInput, type TouchInputProps, Tour, Tooltip as TourTooltip, type Track, TrackCard, type TrackCardProps, AudioFeed as TrackList, type TrendingSection, type TrendingTrack, TrendingTracks, type TrendingTracksProps, type TutorialAction, TutorialEmbed, type TutorialEmbedProps, TutorialGallery, type TutorialGalleryProps, type TutorialMedia, type TutorialMetadata, TutorialSequence, type TutorialSequenceProps, type TutorialStep, type UseFocusTrapOptions, type UseIntersectionObserverResult, type UsePerformanceObserverOptions, UserProfile, type UserProfileData, type UserProfileProps, type UserStats, UsersKPI, VARIANTS, VARIANT_ICONS, VIEWPORT, type Variant, type VideoAuthor, type VideoChapter, VideoPlayer, type VideoPlayerProps, type VideoQuality, type VideoSubtitle, type VideoTrack, type ViewportSetting, VirtualScrollList, type VirtualScrollListProps, type VirtualizationConfig, type VirtualizedItem, type VisualizerType, WarningAnimation, type WaveformData, WaveformPlayer, type WaveformPlayerProps, Accordion as WebAccordion, type AccordionProps as WebAccordionComponentProps, AccordionContent as WebAccordionContent, type AccordionContentProps as WebAccordionContentComponentProps, AccordionItem as WebAccordionItem, type AccordionItemProps as WebAccordionItemComponentProps, AccordionTrigger as WebAccordionTrigger, type AccordionTriggerProps as WebAccordionTriggerComponentProps, type WebAnimation, Breadcrumbs$1 as WebBreadcrumbs, type BreadcrumbsProps$1 as WebBreadcrumbsComponentProps, type WebComponentProps, EmptyState as WebEmptyState, type EmptyStateProps as WebEmptyStateComponentProps, ErrorEmptyState as WebErrorEmptyState, type ErrorEmptyStateProps as WebErrorEmptyStateComponentProps, MultiSlider as WebMultiSlider, NoDataEmptyState as WebNoDataEmptyState, type NoDataEmptyStateProps as WebNoDataEmptyStateComponentProps, NoResultsEmptyState as WebNoResultsEmptyState, type NoResultsEmptyStateProps as WebNoResultsEmptyStateComponentProps, SimpleAccordion as WebSimpleAccordion, type SimpleAccordionItem as WebSimpleAccordionComponentItem, type SimpleAccordionProps as WebSimpleAccordionComponentProps, SimpleBreadcrumbs as WebSimpleBreadcrumbs, type SimpleBreadcrumbsProps as WebSimpleBreadcrumbsComponentProps, Slider as WebSlider, type SliderProps as WebSliderComponentProps, type WebStyle, Switch as WebSwitch, type SwitchProps as WebSwitchProps, Textarea as WebTextarea, type TextareaProps as WebTextareaComponentProps, TextareaWithCounter as WebTextareaWithCounter, type TextareaWithCounterProps as WebTextareaWithCounterComponentProps, WelcomeModal, Z_INDEX, accordionVariants, animationPresets, audioAppTabs, audioPlayerVariants, breadcrumbsVariants, cn, commonValidators, containerVariants, contentVariants, createAnimation, createDataStore, createFormStore, createOptimizedStore, createSlideVariant, createTransition, dailyTrendingConfig, detectAuthProvider, detectDelimiter, detectHeader, disableScroll, emptyStateVariants, enableScroll, extractRoster, fadeIn, formVariants, formatCurrency, formatDate, formatNumber, genreChartsConfigs, getConfig, getEnvInfo, getEnvVar, getScrollbarWidth, gridVariants, hamburgerVariants, headerVariants, heroVariants, inputVariants, isBrowser, isExpo, isNative, isWeb, labelVariants, mergeVariants, musicAppTabs, nativeAnimations, nativeConfig, optimizeForPerformance, parseRoster, parseTable, podcastAppTabs, readRosterFile, scaleIn, slideIn, sliderVariants, stateManager, stickyActionsVariants, switchVariants, textareaVariants, theme, themes, toast, toastVariants, useAnimationTokens, useCache, useClickOutside, useCustomPerformanceTracking, useDarkMode, useDebouncedCallback, useEscapeKey, useFocusTrap, useGlassmorphism, useInfiniteScroll, useIntersectionObserver, useLazyLoad, useLoadingOverlay, useLoadingOverlayApi, useLoadingOverlayVisible, useLockBody, useMediaQuery, useMobileNavigation, useMounted, useNetworkInfo, useOfflineState, useOptimizedMemo, useOptimizedStoreSelector, usePerformanceObserver, usePrefersReducedMotion, useRenderPerformanceTracking, useTheme, useThrottledCallback, useToast, useVirtualization, useVisibilityTracking, validateEmail, validateEnvConfig, validatePassword, videoPlayerVariants, webAnimations, webConfig, weeklyChartsConfig, withNetworkAware, withPageTransition };
|
|
7730
|
+
export { ANIMATION_DURATION, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActivityType, type AdvancedAudioTrack, AdvancedPlayer, type AdvancedPlayerProps, Alert, AlertDescription, AlertTitle, AnalyticsDashboard, AnimatedSectionTitle, type AnimatedSectionTitleProps, type AnimationPreset, type AnimationTokens, Breadcrumbs as AppBreadcrumbs, AppShell, AudioFeed, type AudioFeedProps, AudioPlayer, type AudioPlayerProps, SearchWithFilters as AudioSearch, type AudioTrack, type AudioTrackCardData, AuthLayout, Avatar, AvatarFallback, AvatarImage, Badge, BarChart, type BarChart3IconBand, type BarChartProps, type BaseAccordionItemProps, type BaseAccordionProps, type BaseBreadcrumbsProps, type BaseChartProps, type BaseComponentProps, type BaseEmptyStateProps, type BaseSliderProps, type BaseSwitchProps, type BaseTextareaProps, type BaseTheme, type BorderRadiusScale, BracketGenerator, type BracketGeneratorProps, type BracketMatch, type BracketMatchRenderContext, type BracketParticipant, type BracketSeedingStrategy, type BracketSize, type BracketState, type BracketThemeColors, type BracketThemePreset, BrandLoader, type BrandLoaderGradient, type BrandLoaderMode, type BrandLoaderPath, type BrandLoaderProps, type BreadcrumbItem$1 as BreadcrumbItem, Breadcrumbs$1 as Breadcrumbs, type BreadcrumbsProps$1 as BreadcrumbsProps, type BugReportPayload, BugReporter, type BugReporterProps, Button, type ButtonVariants, type CTAAction, CTACluster, type CTAClusterProps, type CacheStrategy, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, type ChartSeries, Checkbox, type CoinCustomTheme, CoinFlipper, type CoinFlipperProps, type CoinResult, type CoinTheme, type CoinThemePreset, type CoinTrigger, CollaborativePlaylist, type CollaborativePlaylistData, type CollaborativePlaylistProps, type Collaborator, type CollaboratorRole, type Column$1 as Column, CommandPalette, type Comment, type CommentData, CommentSystem, type CommentSystemProps, type CommentUser, type ComponentProps, type ComponentSize, type ComponentVariant, Container$1 as Container, ConversionKPI, type CrossfadeMode, DISTANCES, DURATIONS, DashboardGrid, DashboardLayout, DashboardWidget, type DashboardWidgetProps, DataGrid, type DataGridProps, type DataItem, DataTable, type Column as DataTableColumn, type DataTableProps, type DateFilter, type Delimiter, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, type DiceCount, type DiceCustomTheme, DiceRoller, type DiceRollerProps, type DiceTheme, type DiceThemePreset, type DiceTrigger, type Distance, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, type Duration, type DurationFilter, DynamicHeroBanner, EASINGS, type Easing, EmptyState, type EmptyStateProps, EnhancedScrollToTop, type EnhancedScrollToTopProps, type EnvConfig, ErrorAnimation, ErrorBoundary, type ErrorBoundaryProps, ErrorEmptyState, type ErrorEmptyStateProps, ErrorFallback, type ErrorFallbackProps, type ExportOptions, type ExportService, FLOW_TREE_CSS, FLOW_TREE_ICON_NAMES, FeatureGrid, type FeatureGridProps, FeatureHighlight, type FeatureItem, type FeedFilter, type FeedItem, type FeedSortOrder, type FeedbackCategory, FilterChip, type FilterChipProps, type FilterConfig, FilterableGrid, type FilterableGridApplyMode, type FilterableGridCategory, type FilterableGridCategoryNavProps, type FilterableGridFilter, type FilterableGridFilterOption, type FilterableGridLabels, type FilterableGridLayout, type FilterableGridProps, type FilterableGridQuickTab, type FilterableGridRenderCardContext, type FilterableGridSectionOrder, type FilterableGridSort, type FilterableGridState, FixedAudioBar, type FixedAudioBarProps, FlowTree, type FlowTreeAction, type FlowTreeDetail, FlowTreeIcon, type FlowTreeIconName, type FlowTreeIconProps, type FlowTreeIconValue, type FlowTreeImageIcon, type FlowTreeLayoutOptions, type FlowTreeMetaRow, type FlowTreeNode, type FlowTreeProps, type FlowTreeTier, Form, FormBuilder, type FormBuilderProps, FormDescription, type FormField, FormGroup, FormLabel, FormMessage, FormProgress, type FormProps, type FormSchema, FormSection, GameTimer, type GameTimerCustomTheme, type GameTimerHandle, type GameTimerLap, type GameTimerMode, type GameTimerProps, type GameTimerTheme, type GameTimerThemePreset, type GenreFilter, type GlassmorphismTokens, GradientBorderCard, type GradientBorderCardProps, Grid$1 as Grid, GridItem, HOVER, HOVER_TRANSITION, HamburgerIcon, type HamburgerIconProps, Header, HeaderActions, HeaderBrand, HeaderContainer, HeaderDesktopNav, HeaderMobileTrigger, HeaderNavLink, Hero, type HeroBannerCta, type HeroBannerCtaVariant, type HeroBannerCustomTheme, type HeroBannerImageFilter, type HeroBannerMouseEffect, type HeroBannerProps, type HeroBannerSlide, type HeroBannerStat, type HeroBannerStatsBackground, type HeroBannerStatsLayout, type HeroBannerStatsPosition, type HeroBannerStatsSize, type HeroBannerTextAlign, type HeroBannerThemePreset, type HeroBannerTransition, HeroCTA, HeroContent, type HeroProps, HeroSubtitle, HeroTitle, ImageCropDropZone, type ImageCropDropZoneProps, type ImageCropFormat, ImageCropModal, type ImageCropModalProps, type ImageCropOutput, ImageCropper, type ImageCropperHandle, type ImageCropperProps, InfoAnimation, Input, type InputVariants, type IntersectionObserverOptions, KPIDashboard, type KPIData, KPIWidget, type KPIWidgetProps, Label, LavaLamp, type LavaLampProps, LazyImage, type LazyImagePlaceholder, type LazyImageProps, LineChart, type LineChartProps, type LoadingOverlayApi, type LoadingOverlayContextValue, LoadingOverlayProvider, type LoadingOverlayProviderProps, LoadingSpinner, LogoCloud, type LogoCloudProps, type LogoItem, MobileContainer, type MobileContainerProps, MobileContent, MobileEmailInput, MobileForm, MobileFormActions, MobileFormField, MobileFormGroup, type MobileFormProps, MobileFormSection, MobileGrid, MobileHero, type MobileHeroProps, MobileNavButton, MobileNavContent, MobileNavDrawer, MobileNavFooter, MobileNavHeader, MobileNavLink, MobileNavOverlay, MobileNavTrigger, MobileNavigation, MobileOTPInput, MobilePage, MobilePhoneInput, MobileSection, MobileSticky, Modal, type MotionVariant, MultiSlider, NativeAccordionComponent as NativeAccordion, NativeAccordionItem, type NativeAccordionItemComponentProps as NativeAccordionItemProps, type NativeAccordionComponentProps as NativeAccordionProps, NativeBreadcrumbsComponent as NativeBreadcrumbs, type NativeBreadcrumbsComponentProps as NativeBreadcrumbsProps, type NativeComponentProps, Container as NativeContainer, NativeEmptyStateComponent as NativeEmptyState, type NativeEmptyStateComponentProps as NativeEmptyStateProps, NativeErrorEmptyState, type NativeErrorEmptyStateProps as NativeErrorEmptyStateComponentProps, Grid as NativeGrid, NativeMultiSlider, NativeNoDataEmptyState, type NativeNoDataEmptyStateProps as NativeNoDataEmptyStateComponentProps, NativeNoResultsEmptyState, type NativeNoResultsEmptyStateProps as NativeNoResultsEmptyStateComponentProps, Section as NativeSection, type NativeSimpleAccordionItem, NativeSimpleBreadcrumbs, type NativeSimpleBreadcrumbsProps, NativeSliderComponent as NativeSlider, type NativeSliderComponentProps as NativeSliderProps, type NativeStyle, NativeSwitchComponent as NativeSwitch, type NativeSwitchComponentProps as NativeSwitchProps, NativeTextareaComponent as NativeTextarea, type NativeTextareaComponentProps as NativeTextareaProps, NativeTextareaWithCounter, type NativeTextareaWithCounterProps, Pagination as NavigationPagination, Stepper as NavigationStepper, Tabs as NavigationTabs, NetworkAwareContent, type NetworkAwareContentProps, type NetworkInfo, type NetworkSpeed, type NetworkType, NewsTicker, type NewsTickerFilter, type NewsTickerFilterOption, type NewsTickerProps, type NewsTickerSort, NoDataEmptyState, type NoDataEmptyStateProps, NoResultsEmptyState, type NoResultsEmptyStateProps, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationType, type NotificationUser, TrackCard as NowPlayingCard, OSS_LOGO_GRADIENT, OSS_LOGO_PATHS, OSS_LOGO_TRANSFORM, OSS_LOGO_VIEWBOX, OfflineWrapper, type OfflineWrapperProps, Onboarding, OptimizedStateManager, type OptimizedStoreOptions, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PageTransition, type PageTransitionDirection, type PageTransitionProps, type PageTransitionType, Pagination$1 as Pagination, type PaginationConfig, PaginationInfo, type PaginationInfoProps, type PaginationProps$1 as PaginationProps, type ParseRosterOptions, type ParsedTable, type PerformanceMetrics, type PieChartProps, PillToggle, type PillToggleMultiProps, type PillToggleOption, type PillToggleProps, type PillToggleSingleProps, Platform, type PlatformConfig, type PlatformSelect, type PlatformSelectMultiple, type PlatformType, type PlaybackQuality, type PlaybackState, type PlaylistActivity, PlaylistBuilder, type PlaylistBuilderProps, PlaylistBuilder as PlaylistCard, type PlaylistData, PlaylistBuilder as PlaylistSidebar, type PlaylistTrack, type PlaylistVisibility, Preloader, type PreloaderProps, PremiumCard, PremiumCardContent, PremiumCardFooter, PremiumCardHeader, type PremiumCardProps, PricingHero, type PricingHeroProps, type PricingPlan, Progress, ProgressiveImage, type ProgressiveImageProps, type ProgressiveImageStrategy, type ProgressiveImageTransition, PullToRefresh, type PullToRefreshProps, PulseIndicator, type PulseIndicatorProps, type PulseStatus, QuickForm, ROSTER_IMPORT_MAX_BYTES, type RandomPlayerIntensity, type RandomPlayerMode, type RandomPlayerParticipant, RandomPlayerPicker, type RandomPlayerPickerProps, type RandomPlayerPlaceholderMode, type RandomPlayerTheme, type RandomPlayerThemeColors, type RandomPlayerThemePreset, type RandomPlayerTrigger, type RefreshState, type RepeatMode, type ResponsiveColumns, ResponsiveFlex, ResponsiveGrid, type ResponsiveGridProps, ResponsiveHeader, type ResponsiveHeaderProps, RevenueKPI, RosterFileTooLargeError, RosterImport, type RosterImportLabels, type RosterImportProps, type RoundRobinCustomTheme, type RoundRobinLabels, type RoundRobinMatchup, type RoundRobinRound, RoundRobinScheduler, type RoundRobinSchedulerProps, type RoundRobinTheme, type RoundRobinThemePreset, STAGGER, STAGGER_CONTAINERS, STAGGER_ITEMS, SafeAreaWrapper, Scoreboard, type ScoreboardCustomTheme, type ScoreboardLabels, type ScoreboardProps, type ScoreboardRoundSnapshot, type ScoreboardTeam, type ScoreboardTheme, type ScoreboardThemePreset, ScrollProgressBar, type ScrollProgressBarProps, ScrollProgressLine, type ScrollProgressLineProps, ScrollToTop, type ScrollToTopProps, type SearchCategory, type SearchFilters, type SearchResult, type SearchSortBy, type SearchSuggestion, SearchWithFilters, type SearchWithFiltersProps, Section$1 as Section, SectionBlock, type SectionBlockProps, SectionLabel, type SectionLabelProps, SectionTitle, SectionedListEditor, type SectionedListEditorProps, type SectionedListSection, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionConfig, SettingsLayout, type ShareOption, Sidebar, SimpleAccordion, type SimpleAccordionItem, type SimpleAccordionProps, SimpleBreadcrumbs, type SimpleBreadcrumbsProps, SimpleHero, SimpleResponsiveHeader, type Size, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonText, SkipToContent, Slider, type SliderProps, type SocialAction, SocialActions, type SocialActionsProps, type SocialLinks, type SortConfig, type SpacingScale, Stack, type StaggerSpeed, StepProgress, type StepProgressProps, StepWizard, type StepWizardProps, type StepWizardStep, SuccessAnimation, type SuccessAnimationProps, SuccessCheckmark, type SwipeAction, SwipeableCard, type SwipeableCardProps, Switch, type SwitchProps, THEME_COLORS, type TabItem$1 as TabItem, TabNavigation, type TabNavigationProps, Tabs$1 as Tabs, TabsContent, TabsList, TabsTrigger, TagInput, type TagInputProps, type TeamColorSwatch, TeamGenerator, type TeamGeneratorCustomTheme, type TeamGeneratorLabels, type TeamGeneratorProps, type TeamGeneratorTheme, type TeamGeneratorThemePreset, Textarea, type TextareaProps, TextareaWithCounter, type TextareaWithCounterProps, type Theme, type ThemeColors, ThemeProvider, ThemeToggle, type ThemeToggleProps, TiltCard, type TiltCardAspectRatio, type TiltCardProps, type TiltCardStat, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, ToastIcon, type ToastIconProps, type ToastProps, ToastProvider, ToastTitle, type ToastVariant, ToastViewport, Toaster, Tooltip$1 as Tooltip, TooltipContent, type TooltipProps$1 as TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TouchInput, type TouchInputProps, Tour, Tooltip as TourTooltip, type Track, TrackCard, type TrackCardProps, AudioFeed as TrackList, type TrendingSection, type TrendingTrack, TrendingTracks, type TrendingTracksProps, type TutorialAction, TutorialEmbed, type TutorialEmbedProps, TutorialGallery, type TutorialGalleryProps, type TutorialMedia, type TutorialMetadata, TutorialSequence, type TutorialSequenceProps, type TutorialStep, type UseFocusTrapOptions, type UseIntersectionObserverResult, type UsePerformanceObserverOptions, UserProfile, type UserProfileData, type UserProfileProps, type UserStats, UsersKPI, VARIANTS, VARIANT_ICONS, VIEWPORT, type Variant, type VideoAuthor, type VideoChapter, VideoPlayer, type VideoPlayerProps, type VideoQuality, type VideoSubtitle, type VideoTrack, type ViewportSetting, VirtualScrollList, type VirtualScrollListProps, type VirtualizationConfig, type VirtualizedItem, type VisualizerType, WarningAnimation, type WaveformData, WaveformPlayer, type WaveformPlayerProps, Accordion as WebAccordion, type AccordionProps as WebAccordionComponentProps, AccordionContent as WebAccordionContent, type AccordionContentProps as WebAccordionContentComponentProps, AccordionItem as WebAccordionItem, type AccordionItemProps as WebAccordionItemComponentProps, AccordionTrigger as WebAccordionTrigger, type AccordionTriggerProps as WebAccordionTriggerComponentProps, type WebAnimation, Breadcrumbs$1 as WebBreadcrumbs, type BreadcrumbsProps$1 as WebBreadcrumbsComponentProps, type WebComponentProps, EmptyState as WebEmptyState, type EmptyStateProps as WebEmptyStateComponentProps, ErrorEmptyState as WebErrorEmptyState, type ErrorEmptyStateProps as WebErrorEmptyStateComponentProps, MultiSlider as WebMultiSlider, NoDataEmptyState as WebNoDataEmptyState, type NoDataEmptyStateProps as WebNoDataEmptyStateComponentProps, NoResultsEmptyState as WebNoResultsEmptyState, type NoResultsEmptyStateProps as WebNoResultsEmptyStateComponentProps, SimpleAccordion as WebSimpleAccordion, type SimpleAccordionItem as WebSimpleAccordionComponentItem, type SimpleAccordionProps as WebSimpleAccordionComponentProps, SimpleBreadcrumbs as WebSimpleBreadcrumbs, type SimpleBreadcrumbsProps as WebSimpleBreadcrumbsComponentProps, Slider as WebSlider, type SliderProps as WebSliderComponentProps, type WebStyle, Switch as WebSwitch, type SwitchProps as WebSwitchProps, Textarea as WebTextarea, type TextareaProps as WebTextareaComponentProps, TextareaWithCounter as WebTextareaWithCounter, type TextareaWithCounterProps as WebTextareaWithCounterComponentProps, WelcomeModal, Z_INDEX, accordionVariants, animationPresets, audioAppTabs, audioPlayerVariants, breadcrumbsVariants, cn, commonValidators, containerVariants, contentVariants, createAnimation, createDataStore, createFormStore, createOptimizedStore, createSlideVariant, createTransition, dailyTrendingConfig, detectAuthProvider, detectDelimiter, detectHeader, disableScroll, emptyStateVariants, enableScroll, extractRoster, fadeIn, formVariants, formatCurrency, formatDate, formatNumber, genreChartsConfigs, getConfig, getEnvInfo, getEnvVar, getScrollbarWidth, gridVariants, hamburgerVariants, headerVariants, heroVariants, inputVariants, isBrowser, isExpo, isNative, isWeb, labelVariants, mergeVariants, musicAppTabs, nativeAnimations, nativeConfig, optimizeForPerformance, parseRoster, parseTable, podcastAppTabs, readRosterFile, scaleIn, slideIn, sliderVariants, stateManager, stickyActionsVariants, switchVariants, textareaVariants, theme, themes, toast, toastVariants, useAnimationTokens, useCache, useClickOutside, useCustomPerformanceTracking, useDarkMode, useDebouncedCallback, useEscapeKey, useFocusTrap, useGlassmorphism, useInfiniteScroll, useIntersectionObserver, useLazyLoad, useLoadingOverlay, useLoadingOverlayApi, useLoadingOverlayVisible, useLockBody, useMediaQuery, useMobileNavigation, useMounted, useNetworkInfo, useOfflineState, useOptimizedMemo, useOptimizedStoreSelector, usePerformanceObserver, usePrefersReducedMotion, useRenderPerformanceTracking, useTheme, useThrottledCallback, useToast, useVirtualization, useVisibilityTracking, validateEmail, validateEnvConfig, validatePassword, videoPlayerVariants, webAnimations, webConfig, weeklyChartsConfig, withNetworkAware, withPageTransition };
|
package/dist/index.d.ts
CHANGED
|
@@ -3759,8 +3759,16 @@ declare function useEscapeKey(handler: () => void, enabled?: boolean): void;
|
|
|
3759
3759
|
* 3. `prefers-color-scheme: dark` media query.
|
|
3760
3760
|
*
|
|
3761
3761
|
* Live-updates via a `MutationObserver` watching the root class attribute
|
|
3762
|
-
* and a `change` listener on the media query.
|
|
3763
|
-
*
|
|
3762
|
+
* and a `change` listener on the media query.
|
|
3763
|
+
*
|
|
3764
|
+
* SSR-safe by construction: the FIRST render always returns `false` (or the
|
|
3765
|
+
* `forced` value when provided), matching what the server renders. Detection
|
|
3766
|
+
* only runs after mount in `useEffect`, so the initial client render is
|
|
3767
|
+
* byte-identical to SSR — no hydration mismatch warnings. The trade-off is
|
|
3768
|
+
* a brief flash of light-theme markup before the effect commits the real
|
|
3769
|
+
* value; a no-flash app should also set `.dark` on `<html>` via a synchronous
|
|
3770
|
+
* script tag in the document head before React hydrates (next-themes does
|
|
3771
|
+
* this), in which case this hook then picks up that class on mount.
|
|
3764
3772
|
*/
|
|
3765
3773
|
declare function useDarkMode(forced?: boolean): boolean;
|
|
3766
3774
|
|
|
@@ -4319,8 +4327,38 @@ interface FilterableGridLabels {
|
|
|
4319
4327
|
layoutGridLabel: string;
|
|
4320
4328
|
layoutListLabel: string;
|
|
4321
4329
|
layoutToggleAriaLabel: string;
|
|
4330
|
+
/** Label for the deferred-mode "Apply" button. */
|
|
4331
|
+
applyFiltersLabel: string;
|
|
4332
|
+
/** Label for the deferred-mode "Cancel" button (revert draft). */
|
|
4333
|
+
cancelFiltersLabel: string;
|
|
4322
4334
|
countAnnouncement: (count: number, total: number) => string;
|
|
4323
4335
|
}
|
|
4336
|
+
/**
|
|
4337
|
+
* Sidebar section ordering for the filter panel.
|
|
4338
|
+
*
|
|
4339
|
+
* Default behavior (when omitted): all filters render in their declared
|
|
4340
|
+
* order, then the sort section renders last. Pass an explicit list to
|
|
4341
|
+
* interleave sort between filter groups — e.g., to put a globally-relevant
|
|
4342
|
+
* Sort section above a type-specific Organization filter.
|
|
4343
|
+
*/
|
|
4344
|
+
type FilterableGridSectionOrder = ReadonlyArray<{
|
|
4345
|
+
kind: "filter";
|
|
4346
|
+
key: string;
|
|
4347
|
+
} | {
|
|
4348
|
+
kind: "sort";
|
|
4349
|
+
}>;
|
|
4350
|
+
/**
|
|
4351
|
+
* How sidebar filter+sort selections propagate to `onStateChange`.
|
|
4352
|
+
*
|
|
4353
|
+
* - **`instant`** (default): every chip click in the sidebar emits state
|
|
4354
|
+
* immediately, just like search/category/quicktab changes.
|
|
4355
|
+
* - **`deferred`**: filter + sort chips update a local DRAFT inside the
|
|
4356
|
+
* sidebar. Nothing emits until the user clicks "Apply Filters" (commits
|
|
4357
|
+
* draft → real state → single emission) or "Cancel" (reverts draft).
|
|
4358
|
+
* Search, category, quicktab, and layout still apply instantly so the
|
|
4359
|
+
* primary nav stays responsive.
|
|
4360
|
+
*/
|
|
4361
|
+
type FilterableGridApplyMode = "instant" | "deferred";
|
|
4324
4362
|
interface FilterableGridProps<T> {
|
|
4325
4363
|
/** Items to display. In `client` mode these are filtered locally;
|
|
4326
4364
|
* in `server` mode they are rendered as-is. */
|
|
@@ -4342,6 +4380,28 @@ interface FilterableGridProps<T> {
|
|
|
4342
4380
|
defaultSort?: string | null;
|
|
4343
4381
|
defaultCategory?: string | null;
|
|
4344
4382
|
defaultLayout?: FilterableGridLayout;
|
|
4383
|
+
/** Initial sidebar filter selections (one-time seed at mount). Use
|
|
4384
|
+
* this to hydrate chip state from a URL or saved view, parallel to
|
|
4385
|
+
* `defaultCategory` / `defaultSort`. Subsequent prop changes do NOT
|
|
4386
|
+
* re-seed — the user's clicks are authoritative once the component
|
|
4387
|
+
* is mounted. */
|
|
4388
|
+
defaultFilters?: Record<string, string[]>;
|
|
4389
|
+
/** Initial active quick-tab key (one-time seed at mount). */
|
|
4390
|
+
defaultQuickTab?: string | null;
|
|
4391
|
+
/**
|
|
4392
|
+
* Controls how sidebar (filter + sort) changes propagate to
|
|
4393
|
+
* `onStateChange`. Default `"instant"`. See `FilterableGridApplyMode`.
|
|
4394
|
+
*/
|
|
4395
|
+
applyMode?: FilterableGridApplyMode;
|
|
4396
|
+
/**
|
|
4397
|
+
* Explicit ordering for sidebar sections (filters + sort). When
|
|
4398
|
+
* omitted, renders all filters in declared order followed by the sort
|
|
4399
|
+
* section. Useful for interleaving Sort between filter groups.
|
|
4400
|
+
* Sections referenced here render in the listed order; any filter
|
|
4401
|
+
* key NOT mentioned is appended at the end (preserving declared
|
|
4402
|
+
* order) so adding a new filter never goes missing.
|
|
4403
|
+
*/
|
|
4404
|
+
sectionOrder?: FilterableGridSectionOrder;
|
|
4345
4405
|
/** Items per page in client mode. `0` disables pagination. */
|
|
4346
4406
|
pageSize?: number;
|
|
4347
4407
|
showLayoutToggle?: boolean;
|
|
@@ -4373,7 +4433,7 @@ interface FilterableGridProps<T> {
|
|
|
4373
4433
|
labels?: Partial<FilterableGridLabels>;
|
|
4374
4434
|
className?: string;
|
|
4375
4435
|
}
|
|
4376
|
-
declare function FilterableGrid<T>({ items, mode, getId, getLabel, getCategory, getSearchText, categories, filters, sorts, quickTabs, defaultSort, defaultCategory, defaultLayout, pageSize, showLayoutToggle, showSearch, showCount, searchDebounceMs, staggerCap, staggerStepMs, renderCategoryNav, renderCard, renderEmpty, renderSkeleton, loading, hasMore: serverHasMore, totalCount: serverTotalCount, onLoadMore: serverOnLoadMore, onStateChange, favorites, onItemClick, labels: labelOverrides, className, }: FilterableGridProps<T>): react_jsx_runtime.JSX.Element;
|
|
4436
|
+
declare function FilterableGrid<T>({ items, mode, getId, getLabel, getCategory, getSearchText, categories, filters, sorts, quickTabs, defaultSort, defaultCategory, defaultLayout, defaultFilters, defaultQuickTab, applyMode, sectionOrder, pageSize, showLayoutToggle, showSearch, showCount, searchDebounceMs, staggerCap, staggerStepMs, renderCategoryNav, renderCard, renderEmpty, renderSkeleton, loading, hasMore: serverHasMore, totalCount: serverTotalCount, onLoadMore: serverOnLoadMore, onStateChange, favorites, onItemClick, labels: labelOverrides, className, }: FilterableGridProps<T>): react_jsx_runtime.JSX.Element;
|
|
4377
4437
|
|
|
4378
4438
|
type BrandLoaderMode = "draw" | "pulse";
|
|
4379
4439
|
interface BrandLoaderPath {
|
|
@@ -7667,4 +7727,4 @@ declare class OptimizedStateManager {
|
|
|
7667
7727
|
}
|
|
7668
7728
|
declare const stateManager: OptimizedStateManager;
|
|
7669
7729
|
|
|
7670
|
-
export { ANIMATION_DURATION, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActivityType, type AdvancedAudioTrack, AdvancedPlayer, type AdvancedPlayerProps, Alert, AlertDescription, AlertTitle, AnalyticsDashboard, AnimatedSectionTitle, type AnimatedSectionTitleProps, type AnimationPreset, type AnimationTokens, Breadcrumbs as AppBreadcrumbs, AppShell, AudioFeed, type AudioFeedProps, AudioPlayer, type AudioPlayerProps, SearchWithFilters as AudioSearch, type AudioTrack, type AudioTrackCardData, AuthLayout, Avatar, AvatarFallback, AvatarImage, Badge, BarChart, type BarChart3IconBand, type BarChartProps, type BaseAccordionItemProps, type BaseAccordionProps, type BaseBreadcrumbsProps, type BaseChartProps, type BaseComponentProps, type BaseEmptyStateProps, type BaseSliderProps, type BaseSwitchProps, type BaseTextareaProps, type BaseTheme, type BorderRadiusScale, BracketGenerator, type BracketGeneratorProps, type BracketMatch, type BracketMatchRenderContext, type BracketParticipant, type BracketSeedingStrategy, type BracketSize, type BracketState, type BracketThemeColors, type BracketThemePreset, BrandLoader, type BrandLoaderGradient, type BrandLoaderMode, type BrandLoaderPath, type BrandLoaderProps, type BreadcrumbItem$1 as BreadcrumbItem, Breadcrumbs$1 as Breadcrumbs, type BreadcrumbsProps$1 as BreadcrumbsProps, type BugReportPayload, BugReporter, type BugReporterProps, Button, type ButtonVariants, type CTAAction, CTACluster, type CTAClusterProps, type CacheStrategy, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, type ChartSeries, Checkbox, type CoinCustomTheme, CoinFlipper, type CoinFlipperProps, type CoinResult, type CoinTheme, type CoinThemePreset, type CoinTrigger, CollaborativePlaylist, type CollaborativePlaylistData, type CollaborativePlaylistProps, type Collaborator, type CollaboratorRole, type Column$1 as Column, CommandPalette, type Comment, type CommentData, CommentSystem, type CommentSystemProps, type CommentUser, type ComponentProps, type ComponentSize, type ComponentVariant, Container$1 as Container, ConversionKPI, type CrossfadeMode, DISTANCES, DURATIONS, DashboardGrid, DashboardLayout, DashboardWidget, type DashboardWidgetProps, DataGrid, type DataGridProps, type DataItem, DataTable, type Column as DataTableColumn, type DataTableProps, type DateFilter, type Delimiter, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, type DiceCount, type DiceCustomTheme, DiceRoller, type DiceRollerProps, type DiceTheme, type DiceThemePreset, type DiceTrigger, type Distance, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, type Duration, type DurationFilter, DynamicHeroBanner, EASINGS, type Easing, EmptyState, type EmptyStateProps, EnhancedScrollToTop, type EnhancedScrollToTopProps, type EnvConfig, ErrorAnimation, ErrorBoundary, type ErrorBoundaryProps, ErrorEmptyState, type ErrorEmptyStateProps, ErrorFallback, type ErrorFallbackProps, type ExportOptions, type ExportService, FLOW_TREE_CSS, FLOW_TREE_ICON_NAMES, FeatureGrid, type FeatureGridProps, FeatureHighlight, type FeatureItem, type FeedFilter, type FeedItem, type FeedSortOrder, type FeedbackCategory, FilterChip, type FilterChipProps, type FilterConfig, FilterableGrid, type FilterableGridCategory, type FilterableGridCategoryNavProps, type FilterableGridFilter, type FilterableGridFilterOption, type FilterableGridLabels, type FilterableGridLayout, type FilterableGridProps, type FilterableGridQuickTab, type FilterableGridRenderCardContext, type FilterableGridSort, type FilterableGridState, FixedAudioBar, type FixedAudioBarProps, FlowTree, type FlowTreeAction, type FlowTreeDetail, FlowTreeIcon, type FlowTreeIconName, type FlowTreeIconProps, type FlowTreeIconValue, type FlowTreeImageIcon, type FlowTreeLayoutOptions, type FlowTreeMetaRow, type FlowTreeNode, type FlowTreeProps, type FlowTreeTier, Form, FormBuilder, type FormBuilderProps, FormDescription, type FormField, FormGroup, FormLabel, FormMessage, FormProgress, type FormProps, type FormSchema, FormSection, GameTimer, type GameTimerCustomTheme, type GameTimerHandle, type GameTimerLap, type GameTimerMode, type GameTimerProps, type GameTimerTheme, type GameTimerThemePreset, type GenreFilter, type GlassmorphismTokens, GradientBorderCard, type GradientBorderCardProps, Grid$1 as Grid, GridItem, HOVER, HOVER_TRANSITION, HamburgerIcon, type HamburgerIconProps, Header, HeaderActions, HeaderBrand, HeaderContainer, HeaderDesktopNav, HeaderMobileTrigger, HeaderNavLink, Hero, type HeroBannerCta, type HeroBannerCtaVariant, type HeroBannerCustomTheme, type HeroBannerImageFilter, type HeroBannerMouseEffect, type HeroBannerProps, type HeroBannerSlide, type HeroBannerStat, type HeroBannerStatsBackground, type HeroBannerStatsLayout, type HeroBannerStatsPosition, type HeroBannerStatsSize, type HeroBannerTextAlign, type HeroBannerThemePreset, type HeroBannerTransition, HeroCTA, HeroContent, type HeroProps, HeroSubtitle, HeroTitle, ImageCropDropZone, type ImageCropDropZoneProps, type ImageCropFormat, ImageCropModal, type ImageCropModalProps, type ImageCropOutput, ImageCropper, type ImageCropperHandle, type ImageCropperProps, InfoAnimation, Input, type InputVariants, type IntersectionObserverOptions, KPIDashboard, type KPIData, KPIWidget, type KPIWidgetProps, Label, LavaLamp, type LavaLampProps, LazyImage, type LazyImagePlaceholder, type LazyImageProps, LineChart, type LineChartProps, type LoadingOverlayApi, type LoadingOverlayContextValue, LoadingOverlayProvider, type LoadingOverlayProviderProps, LoadingSpinner, LogoCloud, type LogoCloudProps, type LogoItem, MobileContainer, type MobileContainerProps, MobileContent, MobileEmailInput, MobileForm, MobileFormActions, MobileFormField, MobileFormGroup, type MobileFormProps, MobileFormSection, MobileGrid, MobileHero, type MobileHeroProps, MobileNavButton, MobileNavContent, MobileNavDrawer, MobileNavFooter, MobileNavHeader, MobileNavLink, MobileNavOverlay, MobileNavTrigger, MobileNavigation, MobileOTPInput, MobilePage, MobilePhoneInput, MobileSection, MobileSticky, Modal, type MotionVariant, MultiSlider, NativeAccordionComponent as NativeAccordion, NativeAccordionItem, type NativeAccordionItemComponentProps as NativeAccordionItemProps, type NativeAccordionComponentProps as NativeAccordionProps, NativeBreadcrumbsComponent as NativeBreadcrumbs, type NativeBreadcrumbsComponentProps as NativeBreadcrumbsProps, type NativeComponentProps, Container as NativeContainer, NativeEmptyStateComponent as NativeEmptyState, type NativeEmptyStateComponentProps as NativeEmptyStateProps, NativeErrorEmptyState, type NativeErrorEmptyStateProps as NativeErrorEmptyStateComponentProps, Grid as NativeGrid, NativeMultiSlider, NativeNoDataEmptyState, type NativeNoDataEmptyStateProps as NativeNoDataEmptyStateComponentProps, NativeNoResultsEmptyState, type NativeNoResultsEmptyStateProps as NativeNoResultsEmptyStateComponentProps, Section as NativeSection, type NativeSimpleAccordionItem, NativeSimpleBreadcrumbs, type NativeSimpleBreadcrumbsProps, NativeSliderComponent as NativeSlider, type NativeSliderComponentProps as NativeSliderProps, type NativeStyle, NativeSwitchComponent as NativeSwitch, type NativeSwitchComponentProps as NativeSwitchProps, NativeTextareaComponent as NativeTextarea, type NativeTextareaComponentProps as NativeTextareaProps, NativeTextareaWithCounter, type NativeTextareaWithCounterProps, Pagination as NavigationPagination, Stepper as NavigationStepper, Tabs as NavigationTabs, NetworkAwareContent, type NetworkAwareContentProps, type NetworkInfo, type NetworkSpeed, type NetworkType, NewsTicker, type NewsTickerFilter, type NewsTickerFilterOption, type NewsTickerProps, type NewsTickerSort, NoDataEmptyState, type NoDataEmptyStateProps, NoResultsEmptyState, type NoResultsEmptyStateProps, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationType, type NotificationUser, TrackCard as NowPlayingCard, OSS_LOGO_GRADIENT, OSS_LOGO_PATHS, OSS_LOGO_TRANSFORM, OSS_LOGO_VIEWBOX, OfflineWrapper, type OfflineWrapperProps, Onboarding, OptimizedStateManager, type OptimizedStoreOptions, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PageTransition, type PageTransitionDirection, type PageTransitionProps, type PageTransitionType, Pagination$1 as Pagination, type PaginationConfig, PaginationInfo, type PaginationInfoProps, type PaginationProps$1 as PaginationProps, type ParseRosterOptions, type ParsedTable, type PerformanceMetrics, type PieChartProps, PillToggle, type PillToggleMultiProps, type PillToggleOption, type PillToggleProps, type PillToggleSingleProps, Platform, type PlatformConfig, type PlatformSelect, type PlatformSelectMultiple, type PlatformType, type PlaybackQuality, type PlaybackState, type PlaylistActivity, PlaylistBuilder, type PlaylistBuilderProps, PlaylistBuilder as PlaylistCard, type PlaylistData, PlaylistBuilder as PlaylistSidebar, type PlaylistTrack, type PlaylistVisibility, Preloader, type PreloaderProps, PremiumCard, PremiumCardContent, PremiumCardFooter, PremiumCardHeader, type PremiumCardProps, PricingHero, type PricingHeroProps, type PricingPlan, Progress, ProgressiveImage, type ProgressiveImageProps, type ProgressiveImageStrategy, type ProgressiveImageTransition, PullToRefresh, type PullToRefreshProps, PulseIndicator, type PulseIndicatorProps, type PulseStatus, QuickForm, ROSTER_IMPORT_MAX_BYTES, type RandomPlayerIntensity, type RandomPlayerMode, type RandomPlayerParticipant, RandomPlayerPicker, type RandomPlayerPickerProps, type RandomPlayerPlaceholderMode, type RandomPlayerTheme, type RandomPlayerThemeColors, type RandomPlayerThemePreset, type RandomPlayerTrigger, type RefreshState, type RepeatMode, type ResponsiveColumns, ResponsiveFlex, ResponsiveGrid, type ResponsiveGridProps, ResponsiveHeader, type ResponsiveHeaderProps, RevenueKPI, RosterFileTooLargeError, RosterImport, type RosterImportLabels, type RosterImportProps, type RoundRobinCustomTheme, type RoundRobinLabels, type RoundRobinMatchup, type RoundRobinRound, RoundRobinScheduler, type RoundRobinSchedulerProps, type RoundRobinTheme, type RoundRobinThemePreset, STAGGER, STAGGER_CONTAINERS, STAGGER_ITEMS, SafeAreaWrapper, Scoreboard, type ScoreboardCustomTheme, type ScoreboardLabels, type ScoreboardProps, type ScoreboardRoundSnapshot, type ScoreboardTeam, type ScoreboardTheme, type ScoreboardThemePreset, ScrollProgressBar, type ScrollProgressBarProps, ScrollProgressLine, type ScrollProgressLineProps, ScrollToTop, type ScrollToTopProps, type SearchCategory, type SearchFilters, type SearchResult, type SearchSortBy, type SearchSuggestion, SearchWithFilters, type SearchWithFiltersProps, Section$1 as Section, SectionBlock, type SectionBlockProps, SectionLabel, type SectionLabelProps, SectionTitle, SectionedListEditor, type SectionedListEditorProps, type SectionedListSection, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionConfig, SettingsLayout, type ShareOption, Sidebar, SimpleAccordion, type SimpleAccordionItem, type SimpleAccordionProps, SimpleBreadcrumbs, type SimpleBreadcrumbsProps, SimpleHero, SimpleResponsiveHeader, type Size, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonText, SkipToContent, Slider, type SliderProps, type SocialAction, SocialActions, type SocialActionsProps, type SocialLinks, type SortConfig, type SpacingScale, Stack, type StaggerSpeed, StepProgress, type StepProgressProps, StepWizard, type StepWizardProps, type StepWizardStep, SuccessAnimation, type SuccessAnimationProps, SuccessCheckmark, type SwipeAction, SwipeableCard, type SwipeableCardProps, Switch, type SwitchProps, THEME_COLORS, type TabItem$1 as TabItem, TabNavigation, type TabNavigationProps, Tabs$1 as Tabs, TabsContent, TabsList, TabsTrigger, TagInput, type TagInputProps, type TeamColorSwatch, TeamGenerator, type TeamGeneratorCustomTheme, type TeamGeneratorLabels, type TeamGeneratorProps, type TeamGeneratorTheme, type TeamGeneratorThemePreset, Textarea, type TextareaProps, TextareaWithCounter, type TextareaWithCounterProps, type Theme, type ThemeColors, ThemeProvider, ThemeToggle, type ThemeToggleProps, TiltCard, type TiltCardAspectRatio, type TiltCardProps, type TiltCardStat, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, ToastIcon, type ToastIconProps, type ToastProps, ToastProvider, ToastTitle, type ToastVariant, ToastViewport, Toaster, Tooltip$1 as Tooltip, TooltipContent, type TooltipProps$1 as TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TouchInput, type TouchInputProps, Tour, Tooltip as TourTooltip, type Track, TrackCard, type TrackCardProps, AudioFeed as TrackList, type TrendingSection, type TrendingTrack, TrendingTracks, type TrendingTracksProps, type TutorialAction, TutorialEmbed, type TutorialEmbedProps, TutorialGallery, type TutorialGalleryProps, type TutorialMedia, type TutorialMetadata, TutorialSequence, type TutorialSequenceProps, type TutorialStep, type UseFocusTrapOptions, type UseIntersectionObserverResult, type UsePerformanceObserverOptions, UserProfile, type UserProfileData, type UserProfileProps, type UserStats, UsersKPI, VARIANTS, VARIANT_ICONS, VIEWPORT, type Variant, type VideoAuthor, type VideoChapter, VideoPlayer, type VideoPlayerProps, type VideoQuality, type VideoSubtitle, type VideoTrack, type ViewportSetting, VirtualScrollList, type VirtualScrollListProps, type VirtualizationConfig, type VirtualizedItem, type VisualizerType, WarningAnimation, type WaveformData, WaveformPlayer, type WaveformPlayerProps, Accordion as WebAccordion, type AccordionProps as WebAccordionComponentProps, AccordionContent as WebAccordionContent, type AccordionContentProps as WebAccordionContentComponentProps, AccordionItem as WebAccordionItem, type AccordionItemProps as WebAccordionItemComponentProps, AccordionTrigger as WebAccordionTrigger, type AccordionTriggerProps as WebAccordionTriggerComponentProps, type WebAnimation, Breadcrumbs$1 as WebBreadcrumbs, type BreadcrumbsProps$1 as WebBreadcrumbsComponentProps, type WebComponentProps, EmptyState as WebEmptyState, type EmptyStateProps as WebEmptyStateComponentProps, ErrorEmptyState as WebErrorEmptyState, type ErrorEmptyStateProps as WebErrorEmptyStateComponentProps, MultiSlider as WebMultiSlider, NoDataEmptyState as WebNoDataEmptyState, type NoDataEmptyStateProps as WebNoDataEmptyStateComponentProps, NoResultsEmptyState as WebNoResultsEmptyState, type NoResultsEmptyStateProps as WebNoResultsEmptyStateComponentProps, SimpleAccordion as WebSimpleAccordion, type SimpleAccordionItem as WebSimpleAccordionComponentItem, type SimpleAccordionProps as WebSimpleAccordionComponentProps, SimpleBreadcrumbs as WebSimpleBreadcrumbs, type SimpleBreadcrumbsProps as WebSimpleBreadcrumbsComponentProps, Slider as WebSlider, type SliderProps as WebSliderComponentProps, type WebStyle, Switch as WebSwitch, type SwitchProps as WebSwitchProps, Textarea as WebTextarea, type TextareaProps as WebTextareaComponentProps, TextareaWithCounter as WebTextareaWithCounter, type TextareaWithCounterProps as WebTextareaWithCounterComponentProps, WelcomeModal, Z_INDEX, accordionVariants, animationPresets, audioAppTabs, audioPlayerVariants, breadcrumbsVariants, cn, commonValidators, containerVariants, contentVariants, createAnimation, createDataStore, createFormStore, createOptimizedStore, createSlideVariant, createTransition, dailyTrendingConfig, detectAuthProvider, detectDelimiter, detectHeader, disableScroll, emptyStateVariants, enableScroll, extractRoster, fadeIn, formVariants, formatCurrency, formatDate, formatNumber, genreChartsConfigs, getConfig, getEnvInfo, getEnvVar, getScrollbarWidth, gridVariants, hamburgerVariants, headerVariants, heroVariants, inputVariants, isBrowser, isExpo, isNative, isWeb, labelVariants, mergeVariants, musicAppTabs, nativeAnimations, nativeConfig, optimizeForPerformance, parseRoster, parseTable, podcastAppTabs, readRosterFile, scaleIn, slideIn, sliderVariants, stateManager, stickyActionsVariants, switchVariants, textareaVariants, theme, themes, toast, toastVariants, useAnimationTokens, useCache, useClickOutside, useCustomPerformanceTracking, useDarkMode, useDebouncedCallback, useEscapeKey, useFocusTrap, useGlassmorphism, useInfiniteScroll, useIntersectionObserver, useLazyLoad, useLoadingOverlay, useLoadingOverlayApi, useLoadingOverlayVisible, useLockBody, useMediaQuery, useMobileNavigation, useMounted, useNetworkInfo, useOfflineState, useOptimizedMemo, useOptimizedStoreSelector, usePerformanceObserver, usePrefersReducedMotion, useRenderPerformanceTracking, useTheme, useThrottledCallback, useToast, useVirtualization, useVisibilityTracking, validateEmail, validateEnvConfig, validatePassword, videoPlayerVariants, webAnimations, webConfig, weeklyChartsConfig, withNetworkAware, withPageTransition };
|
|
7730
|
+
export { ANIMATION_DURATION, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActivityType, type AdvancedAudioTrack, AdvancedPlayer, type AdvancedPlayerProps, Alert, AlertDescription, AlertTitle, AnalyticsDashboard, AnimatedSectionTitle, type AnimatedSectionTitleProps, type AnimationPreset, type AnimationTokens, Breadcrumbs as AppBreadcrumbs, AppShell, AudioFeed, type AudioFeedProps, AudioPlayer, type AudioPlayerProps, SearchWithFilters as AudioSearch, type AudioTrack, type AudioTrackCardData, AuthLayout, Avatar, AvatarFallback, AvatarImage, Badge, BarChart, type BarChart3IconBand, type BarChartProps, type BaseAccordionItemProps, type BaseAccordionProps, type BaseBreadcrumbsProps, type BaseChartProps, type BaseComponentProps, type BaseEmptyStateProps, type BaseSliderProps, type BaseSwitchProps, type BaseTextareaProps, type BaseTheme, type BorderRadiusScale, BracketGenerator, type BracketGeneratorProps, type BracketMatch, type BracketMatchRenderContext, type BracketParticipant, type BracketSeedingStrategy, type BracketSize, type BracketState, type BracketThemeColors, type BracketThemePreset, BrandLoader, type BrandLoaderGradient, type BrandLoaderMode, type BrandLoaderPath, type BrandLoaderProps, type BreadcrumbItem$1 as BreadcrumbItem, Breadcrumbs$1 as Breadcrumbs, type BreadcrumbsProps$1 as BreadcrumbsProps, type BugReportPayload, BugReporter, type BugReporterProps, Button, type ButtonVariants, type CTAAction, CTACluster, type CTAClusterProps, type CacheStrategy, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, type ChartSeries, Checkbox, type CoinCustomTheme, CoinFlipper, type CoinFlipperProps, type CoinResult, type CoinTheme, type CoinThemePreset, type CoinTrigger, CollaborativePlaylist, type CollaborativePlaylistData, type CollaborativePlaylistProps, type Collaborator, type CollaboratorRole, type Column$1 as Column, CommandPalette, type Comment, type CommentData, CommentSystem, type CommentSystemProps, type CommentUser, type ComponentProps, type ComponentSize, type ComponentVariant, Container$1 as Container, ConversionKPI, type CrossfadeMode, DISTANCES, DURATIONS, DashboardGrid, DashboardLayout, DashboardWidget, type DashboardWidgetProps, DataGrid, type DataGridProps, type DataItem, DataTable, type Column as DataTableColumn, type DataTableProps, type DateFilter, type Delimiter, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, type DiceCount, type DiceCustomTheme, DiceRoller, type DiceRollerProps, type DiceTheme, type DiceThemePreset, type DiceTrigger, type Distance, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, type Duration, type DurationFilter, DynamicHeroBanner, EASINGS, type Easing, EmptyState, type EmptyStateProps, EnhancedScrollToTop, type EnhancedScrollToTopProps, type EnvConfig, ErrorAnimation, ErrorBoundary, type ErrorBoundaryProps, ErrorEmptyState, type ErrorEmptyStateProps, ErrorFallback, type ErrorFallbackProps, type ExportOptions, type ExportService, FLOW_TREE_CSS, FLOW_TREE_ICON_NAMES, FeatureGrid, type FeatureGridProps, FeatureHighlight, type FeatureItem, type FeedFilter, type FeedItem, type FeedSortOrder, type FeedbackCategory, FilterChip, type FilterChipProps, type FilterConfig, FilterableGrid, type FilterableGridApplyMode, type FilterableGridCategory, type FilterableGridCategoryNavProps, type FilterableGridFilter, type FilterableGridFilterOption, type FilterableGridLabels, type FilterableGridLayout, type FilterableGridProps, type FilterableGridQuickTab, type FilterableGridRenderCardContext, type FilterableGridSectionOrder, type FilterableGridSort, type FilterableGridState, FixedAudioBar, type FixedAudioBarProps, FlowTree, type FlowTreeAction, type FlowTreeDetail, FlowTreeIcon, type FlowTreeIconName, type FlowTreeIconProps, type FlowTreeIconValue, type FlowTreeImageIcon, type FlowTreeLayoutOptions, type FlowTreeMetaRow, type FlowTreeNode, type FlowTreeProps, type FlowTreeTier, Form, FormBuilder, type FormBuilderProps, FormDescription, type FormField, FormGroup, FormLabel, FormMessage, FormProgress, type FormProps, type FormSchema, FormSection, GameTimer, type GameTimerCustomTheme, type GameTimerHandle, type GameTimerLap, type GameTimerMode, type GameTimerProps, type GameTimerTheme, type GameTimerThemePreset, type GenreFilter, type GlassmorphismTokens, GradientBorderCard, type GradientBorderCardProps, Grid$1 as Grid, GridItem, HOVER, HOVER_TRANSITION, HamburgerIcon, type HamburgerIconProps, Header, HeaderActions, HeaderBrand, HeaderContainer, HeaderDesktopNav, HeaderMobileTrigger, HeaderNavLink, Hero, type HeroBannerCta, type HeroBannerCtaVariant, type HeroBannerCustomTheme, type HeroBannerImageFilter, type HeroBannerMouseEffect, type HeroBannerProps, type HeroBannerSlide, type HeroBannerStat, type HeroBannerStatsBackground, type HeroBannerStatsLayout, type HeroBannerStatsPosition, type HeroBannerStatsSize, type HeroBannerTextAlign, type HeroBannerThemePreset, type HeroBannerTransition, HeroCTA, HeroContent, type HeroProps, HeroSubtitle, HeroTitle, ImageCropDropZone, type ImageCropDropZoneProps, type ImageCropFormat, ImageCropModal, type ImageCropModalProps, type ImageCropOutput, ImageCropper, type ImageCropperHandle, type ImageCropperProps, InfoAnimation, Input, type InputVariants, type IntersectionObserverOptions, KPIDashboard, type KPIData, KPIWidget, type KPIWidgetProps, Label, LavaLamp, type LavaLampProps, LazyImage, type LazyImagePlaceholder, type LazyImageProps, LineChart, type LineChartProps, type LoadingOverlayApi, type LoadingOverlayContextValue, LoadingOverlayProvider, type LoadingOverlayProviderProps, LoadingSpinner, LogoCloud, type LogoCloudProps, type LogoItem, MobileContainer, type MobileContainerProps, MobileContent, MobileEmailInput, MobileForm, MobileFormActions, MobileFormField, MobileFormGroup, type MobileFormProps, MobileFormSection, MobileGrid, MobileHero, type MobileHeroProps, MobileNavButton, MobileNavContent, MobileNavDrawer, MobileNavFooter, MobileNavHeader, MobileNavLink, MobileNavOverlay, MobileNavTrigger, MobileNavigation, MobileOTPInput, MobilePage, MobilePhoneInput, MobileSection, MobileSticky, Modal, type MotionVariant, MultiSlider, NativeAccordionComponent as NativeAccordion, NativeAccordionItem, type NativeAccordionItemComponentProps as NativeAccordionItemProps, type NativeAccordionComponentProps as NativeAccordionProps, NativeBreadcrumbsComponent as NativeBreadcrumbs, type NativeBreadcrumbsComponentProps as NativeBreadcrumbsProps, type NativeComponentProps, Container as NativeContainer, NativeEmptyStateComponent as NativeEmptyState, type NativeEmptyStateComponentProps as NativeEmptyStateProps, NativeErrorEmptyState, type NativeErrorEmptyStateProps as NativeErrorEmptyStateComponentProps, Grid as NativeGrid, NativeMultiSlider, NativeNoDataEmptyState, type NativeNoDataEmptyStateProps as NativeNoDataEmptyStateComponentProps, NativeNoResultsEmptyState, type NativeNoResultsEmptyStateProps as NativeNoResultsEmptyStateComponentProps, Section as NativeSection, type NativeSimpleAccordionItem, NativeSimpleBreadcrumbs, type NativeSimpleBreadcrumbsProps, NativeSliderComponent as NativeSlider, type NativeSliderComponentProps as NativeSliderProps, type NativeStyle, NativeSwitchComponent as NativeSwitch, type NativeSwitchComponentProps as NativeSwitchProps, NativeTextareaComponent as NativeTextarea, type NativeTextareaComponentProps as NativeTextareaProps, NativeTextareaWithCounter, type NativeTextareaWithCounterProps, Pagination as NavigationPagination, Stepper as NavigationStepper, Tabs as NavigationTabs, NetworkAwareContent, type NetworkAwareContentProps, type NetworkInfo, type NetworkSpeed, type NetworkType, NewsTicker, type NewsTickerFilter, type NewsTickerFilterOption, type NewsTickerProps, type NewsTickerSort, NoDataEmptyState, type NoDataEmptyStateProps, NoResultsEmptyState, type NoResultsEmptyStateProps, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationType, type NotificationUser, TrackCard as NowPlayingCard, OSS_LOGO_GRADIENT, OSS_LOGO_PATHS, OSS_LOGO_TRANSFORM, OSS_LOGO_VIEWBOX, OfflineWrapper, type OfflineWrapperProps, Onboarding, OptimizedStateManager, type OptimizedStoreOptions, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PageTransition, type PageTransitionDirection, type PageTransitionProps, type PageTransitionType, Pagination$1 as Pagination, type PaginationConfig, PaginationInfo, type PaginationInfoProps, type PaginationProps$1 as PaginationProps, type ParseRosterOptions, type ParsedTable, type PerformanceMetrics, type PieChartProps, PillToggle, type PillToggleMultiProps, type PillToggleOption, type PillToggleProps, type PillToggleSingleProps, Platform, type PlatformConfig, type PlatformSelect, type PlatformSelectMultiple, type PlatformType, type PlaybackQuality, type PlaybackState, type PlaylistActivity, PlaylistBuilder, type PlaylistBuilderProps, PlaylistBuilder as PlaylistCard, type PlaylistData, PlaylistBuilder as PlaylistSidebar, type PlaylistTrack, type PlaylistVisibility, Preloader, type PreloaderProps, PremiumCard, PremiumCardContent, PremiumCardFooter, PremiumCardHeader, type PremiumCardProps, PricingHero, type PricingHeroProps, type PricingPlan, Progress, ProgressiveImage, type ProgressiveImageProps, type ProgressiveImageStrategy, type ProgressiveImageTransition, PullToRefresh, type PullToRefreshProps, PulseIndicator, type PulseIndicatorProps, type PulseStatus, QuickForm, ROSTER_IMPORT_MAX_BYTES, type RandomPlayerIntensity, type RandomPlayerMode, type RandomPlayerParticipant, RandomPlayerPicker, type RandomPlayerPickerProps, type RandomPlayerPlaceholderMode, type RandomPlayerTheme, type RandomPlayerThemeColors, type RandomPlayerThemePreset, type RandomPlayerTrigger, type RefreshState, type RepeatMode, type ResponsiveColumns, ResponsiveFlex, ResponsiveGrid, type ResponsiveGridProps, ResponsiveHeader, type ResponsiveHeaderProps, RevenueKPI, RosterFileTooLargeError, RosterImport, type RosterImportLabels, type RosterImportProps, type RoundRobinCustomTheme, type RoundRobinLabels, type RoundRobinMatchup, type RoundRobinRound, RoundRobinScheduler, type RoundRobinSchedulerProps, type RoundRobinTheme, type RoundRobinThemePreset, STAGGER, STAGGER_CONTAINERS, STAGGER_ITEMS, SafeAreaWrapper, Scoreboard, type ScoreboardCustomTheme, type ScoreboardLabels, type ScoreboardProps, type ScoreboardRoundSnapshot, type ScoreboardTeam, type ScoreboardTheme, type ScoreboardThemePreset, ScrollProgressBar, type ScrollProgressBarProps, ScrollProgressLine, type ScrollProgressLineProps, ScrollToTop, type ScrollToTopProps, type SearchCategory, type SearchFilters, type SearchResult, type SearchSortBy, type SearchSuggestion, SearchWithFilters, type SearchWithFiltersProps, Section$1 as Section, SectionBlock, type SectionBlockProps, SectionLabel, type SectionLabelProps, SectionTitle, SectionedListEditor, type SectionedListEditorProps, type SectionedListSection, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionConfig, SettingsLayout, type ShareOption, Sidebar, SimpleAccordion, type SimpleAccordionItem, type SimpleAccordionProps, SimpleBreadcrumbs, type SimpleBreadcrumbsProps, SimpleHero, SimpleResponsiveHeader, type Size, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonText, SkipToContent, Slider, type SliderProps, type SocialAction, SocialActions, type SocialActionsProps, type SocialLinks, type SortConfig, type SpacingScale, Stack, type StaggerSpeed, StepProgress, type StepProgressProps, StepWizard, type StepWizardProps, type StepWizardStep, SuccessAnimation, type SuccessAnimationProps, SuccessCheckmark, type SwipeAction, SwipeableCard, type SwipeableCardProps, Switch, type SwitchProps, THEME_COLORS, type TabItem$1 as TabItem, TabNavigation, type TabNavigationProps, Tabs$1 as Tabs, TabsContent, TabsList, TabsTrigger, TagInput, type TagInputProps, type TeamColorSwatch, TeamGenerator, type TeamGeneratorCustomTheme, type TeamGeneratorLabels, type TeamGeneratorProps, type TeamGeneratorTheme, type TeamGeneratorThemePreset, Textarea, type TextareaProps, TextareaWithCounter, type TextareaWithCounterProps, type Theme, type ThemeColors, ThemeProvider, ThemeToggle, type ThemeToggleProps, TiltCard, type TiltCardAspectRatio, type TiltCardProps, type TiltCardStat, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, ToastIcon, type ToastIconProps, type ToastProps, ToastProvider, ToastTitle, type ToastVariant, ToastViewport, Toaster, Tooltip$1 as Tooltip, TooltipContent, type TooltipProps$1 as TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TouchInput, type TouchInputProps, Tour, Tooltip as TourTooltip, type Track, TrackCard, type TrackCardProps, AudioFeed as TrackList, type TrendingSection, type TrendingTrack, TrendingTracks, type TrendingTracksProps, type TutorialAction, TutorialEmbed, type TutorialEmbedProps, TutorialGallery, type TutorialGalleryProps, type TutorialMedia, type TutorialMetadata, TutorialSequence, type TutorialSequenceProps, type TutorialStep, type UseFocusTrapOptions, type UseIntersectionObserverResult, type UsePerformanceObserverOptions, UserProfile, type UserProfileData, type UserProfileProps, type UserStats, UsersKPI, VARIANTS, VARIANT_ICONS, VIEWPORT, type Variant, type VideoAuthor, type VideoChapter, VideoPlayer, type VideoPlayerProps, type VideoQuality, type VideoSubtitle, type VideoTrack, type ViewportSetting, VirtualScrollList, type VirtualScrollListProps, type VirtualizationConfig, type VirtualizedItem, type VisualizerType, WarningAnimation, type WaveformData, WaveformPlayer, type WaveformPlayerProps, Accordion as WebAccordion, type AccordionProps as WebAccordionComponentProps, AccordionContent as WebAccordionContent, type AccordionContentProps as WebAccordionContentComponentProps, AccordionItem as WebAccordionItem, type AccordionItemProps as WebAccordionItemComponentProps, AccordionTrigger as WebAccordionTrigger, type AccordionTriggerProps as WebAccordionTriggerComponentProps, type WebAnimation, Breadcrumbs$1 as WebBreadcrumbs, type BreadcrumbsProps$1 as WebBreadcrumbsComponentProps, type WebComponentProps, EmptyState as WebEmptyState, type EmptyStateProps as WebEmptyStateComponentProps, ErrorEmptyState as WebErrorEmptyState, type ErrorEmptyStateProps as WebErrorEmptyStateComponentProps, MultiSlider as WebMultiSlider, NoDataEmptyState as WebNoDataEmptyState, type NoDataEmptyStateProps as WebNoDataEmptyStateComponentProps, NoResultsEmptyState as WebNoResultsEmptyState, type NoResultsEmptyStateProps as WebNoResultsEmptyStateComponentProps, SimpleAccordion as WebSimpleAccordion, type SimpleAccordionItem as WebSimpleAccordionComponentItem, type SimpleAccordionProps as WebSimpleAccordionComponentProps, SimpleBreadcrumbs as WebSimpleBreadcrumbs, type SimpleBreadcrumbsProps as WebSimpleBreadcrumbsComponentProps, Slider as WebSlider, type SliderProps as WebSliderComponentProps, type WebStyle, Switch as WebSwitch, type SwitchProps as WebSwitchProps, Textarea as WebTextarea, type TextareaProps as WebTextareaComponentProps, TextareaWithCounter as WebTextareaWithCounter, type TextareaWithCounterProps as WebTextareaWithCounterComponentProps, WelcomeModal, Z_INDEX, accordionVariants, animationPresets, audioAppTabs, audioPlayerVariants, breadcrumbsVariants, cn, commonValidators, containerVariants, contentVariants, createAnimation, createDataStore, createFormStore, createOptimizedStore, createSlideVariant, createTransition, dailyTrendingConfig, detectAuthProvider, detectDelimiter, detectHeader, disableScroll, emptyStateVariants, enableScroll, extractRoster, fadeIn, formVariants, formatCurrency, formatDate, formatNumber, genreChartsConfigs, getConfig, getEnvInfo, getEnvVar, getScrollbarWidth, gridVariants, hamburgerVariants, headerVariants, heroVariants, inputVariants, isBrowser, isExpo, isNative, isWeb, labelVariants, mergeVariants, musicAppTabs, nativeAnimations, nativeConfig, optimizeForPerformance, parseRoster, parseTable, podcastAppTabs, readRosterFile, scaleIn, slideIn, sliderVariants, stateManager, stickyActionsVariants, switchVariants, textareaVariants, theme, themes, toast, toastVariants, useAnimationTokens, useCache, useClickOutside, useCustomPerformanceTracking, useDarkMode, useDebouncedCallback, useEscapeKey, useFocusTrap, useGlassmorphism, useInfiniteScroll, useIntersectionObserver, useLazyLoad, useLoadingOverlay, useLoadingOverlayApi, useLoadingOverlayVisible, useLockBody, useMediaQuery, useMobileNavigation, useMounted, useNetworkInfo, useOfflineState, useOptimizedMemo, useOptimizedStoreSelector, usePerformanceObserver, usePrefersReducedMotion, useRenderPerformanceTracking, useTheme, useThrottledCallback, useToast, useVirtualization, useVisibilityTracking, validateEmail, validateEnvConfig, validatePassword, videoPlayerVariants, webAnimations, webConfig, weeklyChartsConfig, withNetworkAware, withPageTransition };
|