@digilogiclabs/saas-factory-ui 1.12.0 → 1.12.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/dist/web/index.d.mts +182 -1
- package/dist/web/index.d.ts +182 -1
- package/dist/web/index.js +1080 -110
- package/dist/web/index.js.map +1 -1
- package/dist/web/index.mjs +1083 -113
- package/dist/web/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/web/index.d.mts
CHANGED
|
@@ -4637,6 +4637,187 @@ interface NewsTickerProps<T> {
|
|
|
4637
4637
|
}
|
|
4638
4638
|
declare function NewsTicker<T>({ items, speed, height, variant, className, getKey, getLabel, getHref, getDot, filters, sorts, onItemClick, linkComponent, emptyMessage, }: NewsTickerProps<T>): react_jsx_runtime.JSX.Element;
|
|
4639
4639
|
|
|
4640
|
+
/**
|
|
4641
|
+
* FilterableGrid — A polished, generic grid component with built-in
|
|
4642
|
+
* search, faceted filtering, sorting, category navigation, quick tabs,
|
|
4643
|
+
* grid/list layout toggling, pagination, and stagger animations.
|
|
4644
|
+
*
|
|
4645
|
+
* Self-themed via shadcn-style CSS variables (`--card`, `--primary`,
|
|
4646
|
+
* `--border`, `--muted-foreground`, etc.), so it automatically adapts
|
|
4647
|
+
* to whatever design system the consuming app uses — including
|
|
4648
|
+
* light/dark mode. Each token is also exposed as `--fg-*` so consumers
|
|
4649
|
+
* can override individual values without disturbing their wider theme.
|
|
4650
|
+
*
|
|
4651
|
+
* Card rendering is fully delegated to consumers via `renderCard`, so
|
|
4652
|
+
* the component imposes no opinion on item shape or visual treatment.
|
|
4653
|
+
*
|
|
4654
|
+
* Supports two modes:
|
|
4655
|
+
*
|
|
4656
|
+
* - **`client`** (default): Items are filtered, sorted, and paginated
|
|
4657
|
+
* in memory. Use this when the full dataset is small and known up
|
|
4658
|
+
* front.
|
|
4659
|
+
* - **`server`**: The component renders `items` as-is and emits
|
|
4660
|
+
* `onStateChange` whenever search/filters/sort/layout change so the
|
|
4661
|
+
* parent can refetch. Use this when filters drive a server query
|
|
4662
|
+
* (e.g., URL-driven Next.js server components).
|
|
4663
|
+
*
|
|
4664
|
+
* The category bar can be replaced wholesale via `renderCategoryNav`,
|
|
4665
|
+
* allowing consumers to drop in `<NewsTicker />` or any other nav.
|
|
4666
|
+
*
|
|
4667
|
+
* @example
|
|
4668
|
+
* ```tsx
|
|
4669
|
+
* import { FilterableGrid } from "@digilogiclabs/saas-factory-ui";
|
|
4670
|
+
*
|
|
4671
|
+
* <FilterableGrid
|
|
4672
|
+
* items={sports}
|
|
4673
|
+
* getId={(s) => s.slug}
|
|
4674
|
+
* getLabel={(s) => s.name}
|
|
4675
|
+
* getCategory={(s) => s.category}
|
|
4676
|
+
* categories={CATEGORIES}
|
|
4677
|
+
* filters={FILTERS}
|
|
4678
|
+
* sorts={SORTS}
|
|
4679
|
+
* quickTabs={[
|
|
4680
|
+
* { key: "favorites", label: "Favorites", filter: (s) => favs.includes(s.slug) },
|
|
4681
|
+
* ]}
|
|
4682
|
+
* pageSize={24}
|
|
4683
|
+
* renderCard={(sport, i, ctx) => (
|
|
4684
|
+
* <SportCard key={sport.slug} sport={sport} layout={ctx.layout} index={i} />
|
|
4685
|
+
* )}
|
|
4686
|
+
* />
|
|
4687
|
+
* ```
|
|
4688
|
+
*/
|
|
4689
|
+
interface FilterableGridCategory {
|
|
4690
|
+
key: string;
|
|
4691
|
+
label: string;
|
|
4692
|
+
icon?: React$1.ReactNode;
|
|
4693
|
+
}
|
|
4694
|
+
interface FilterableGridFilterOption {
|
|
4695
|
+
value: string;
|
|
4696
|
+
label: string;
|
|
4697
|
+
icon?: React$1.ReactNode;
|
|
4698
|
+
count?: number;
|
|
4699
|
+
}
|
|
4700
|
+
interface FilterableGridFilter {
|
|
4701
|
+
/** Item field key to filter on (must match a property of T) */
|
|
4702
|
+
key: string;
|
|
4703
|
+
label: string;
|
|
4704
|
+
options: FilterableGridFilterOption[];
|
|
4705
|
+
/** Allow multiple values per filter group (default true) */
|
|
4706
|
+
multi?: boolean;
|
|
4707
|
+
}
|
|
4708
|
+
interface FilterableGridSort<T> {
|
|
4709
|
+
key: string;
|
|
4710
|
+
label: string;
|
|
4711
|
+
fn: (a: T, b: T) => number;
|
|
4712
|
+
}
|
|
4713
|
+
interface FilterableGridQuickTab<T> {
|
|
4714
|
+
key: string;
|
|
4715
|
+
label: string;
|
|
4716
|
+
icon?: React$1.ReactNode;
|
|
4717
|
+
count?: number;
|
|
4718
|
+
/** Predicate (only used in client mode). In server mode the parent reads
|
|
4719
|
+
* the active quick tab from `onStateChange` and applies its own logic. */
|
|
4720
|
+
filter?: (item: T) => boolean;
|
|
4721
|
+
}
|
|
4722
|
+
type FilterableGridLayout = "grid" | "list";
|
|
4723
|
+
interface FilterableGridState {
|
|
4724
|
+
search: string;
|
|
4725
|
+
category: string | null;
|
|
4726
|
+
filters: Record<string, string[]>;
|
|
4727
|
+
sort: string | null;
|
|
4728
|
+
layout: FilterableGridLayout;
|
|
4729
|
+
quickTab: string | null;
|
|
4730
|
+
}
|
|
4731
|
+
interface FilterableGridCategoryNavProps {
|
|
4732
|
+
categories: FilterableGridCategory[];
|
|
4733
|
+
activeCategory: string | null;
|
|
4734
|
+
onCategoryChange: (category: string | null) => void;
|
|
4735
|
+
quickTabs: ReadonlyArray<FilterableGridQuickTab<unknown>>;
|
|
4736
|
+
activeQuickTab: string | null;
|
|
4737
|
+
onQuickTabChange: (key: string | null) => void;
|
|
4738
|
+
labels: FilterableGridLabels;
|
|
4739
|
+
}
|
|
4740
|
+
interface FilterableGridRenderCardContext {
|
|
4741
|
+
layout: FilterableGridLayout;
|
|
4742
|
+
isFav: boolean;
|
|
4743
|
+
index: number;
|
|
4744
|
+
}
|
|
4745
|
+
interface FilterableGridLabels {
|
|
4746
|
+
searchPlaceholder: string;
|
|
4747
|
+
searchAriaLabel: string;
|
|
4748
|
+
clearSearchAriaLabel: string;
|
|
4749
|
+
allCategories: string;
|
|
4750
|
+
clearAll: string;
|
|
4751
|
+
showMore: string;
|
|
4752
|
+
remaining: string;
|
|
4753
|
+
noResults: string;
|
|
4754
|
+
clearFilters: string;
|
|
4755
|
+
itemsLabel: string;
|
|
4756
|
+
showing: string;
|
|
4757
|
+
filtersTitle: string;
|
|
4758
|
+
filtersAriaLabel: string;
|
|
4759
|
+
filtersTriggerLabel: string;
|
|
4760
|
+
closeFiltersLabel: string;
|
|
4761
|
+
sortByTitle: string;
|
|
4762
|
+
layoutGridLabel: string;
|
|
4763
|
+
layoutListLabel: string;
|
|
4764
|
+
layoutToggleAriaLabel: string;
|
|
4765
|
+
countAnnouncement: (count: number, total: number) => string;
|
|
4766
|
+
}
|
|
4767
|
+
interface FilterableGridProps<T> {
|
|
4768
|
+
/** Items to display. In `client` mode these are filtered locally;
|
|
4769
|
+
* in `server` mode they are rendered as-is. */
|
|
4770
|
+
items: T[];
|
|
4771
|
+
/** Filtering mode (default `"client"`) */
|
|
4772
|
+
mode?: "client" | "server";
|
|
4773
|
+
/** Stable id for each item (used for favorites + React keys). Default: `item.id` */
|
|
4774
|
+
getId?: (item: T) => string;
|
|
4775
|
+
/** Display label fallback (used by default `getSearchText`). Default: `item.label || item.name || item.title` */
|
|
4776
|
+
getLabel?: (item: T) => string;
|
|
4777
|
+
/** Category key for client-mode category filtering. Default: `item.category` */
|
|
4778
|
+
getCategory?: (item: T) => string | undefined;
|
|
4779
|
+
/** Searchable text for client-mode search. Default: `getLabel(item)` */
|
|
4780
|
+
getSearchText?: (item: T) => string;
|
|
4781
|
+
categories?: FilterableGridCategory[];
|
|
4782
|
+
filters?: FilterableGridFilter[];
|
|
4783
|
+
sorts?: FilterableGridSort<T>[];
|
|
4784
|
+
quickTabs?: FilterableGridQuickTab<T>[];
|
|
4785
|
+
defaultSort?: string | null;
|
|
4786
|
+
defaultCategory?: string | null;
|
|
4787
|
+
defaultLayout?: FilterableGridLayout;
|
|
4788
|
+
/** Items per page in client mode. `0` disables pagination. */
|
|
4789
|
+
pageSize?: number;
|
|
4790
|
+
showLayoutToggle?: boolean;
|
|
4791
|
+
showSearch?: boolean;
|
|
4792
|
+
showCount?: boolean;
|
|
4793
|
+
/** Search debounce in ms (default 300, set to 0 to disable) */
|
|
4794
|
+
searchDebounceMs?: number;
|
|
4795
|
+
/** Maximum index to apply stagger animation delay to (default 9) */
|
|
4796
|
+
staggerCap?: number;
|
|
4797
|
+
/** Per-card stagger step in ms (default 50) */
|
|
4798
|
+
staggerStepMs?: number;
|
|
4799
|
+
/** Replace the entire category/quick-tab nav with a custom component
|
|
4800
|
+
* (e.g. `<NewsTicker />`). Receives all the state needed to render. */
|
|
4801
|
+
renderCategoryNav?: (props: FilterableGridCategoryNavProps) => React$1.ReactNode;
|
|
4802
|
+
/** Required: card renderer. The component is intentionally card-agnostic. */
|
|
4803
|
+
renderCard: (item: T, index: number, ctx: FilterableGridRenderCardContext) => React$1.ReactNode;
|
|
4804
|
+
renderEmpty?: (state: FilterableGridState) => React$1.ReactNode;
|
|
4805
|
+
renderSkeleton?: (count: number) => React$1.ReactNode;
|
|
4806
|
+
loading?: boolean;
|
|
4807
|
+
hasMore?: boolean;
|
|
4808
|
+
totalCount?: number;
|
|
4809
|
+
onLoadMore?: () => void;
|
|
4810
|
+
/** Fires whenever the internal filter state changes. Use this in
|
|
4811
|
+
* `server` mode to translate state into a fetch / URL update. */
|
|
4812
|
+
onStateChange?: (state: FilterableGridState) => void;
|
|
4813
|
+
favorites?: string[];
|
|
4814
|
+
onFavoriteToggle?: (item: T) => void;
|
|
4815
|
+
onItemClick?: (item: T) => void;
|
|
4816
|
+
labels?: Partial<FilterableGridLabels>;
|
|
4817
|
+
className?: string;
|
|
4818
|
+
}
|
|
4819
|
+
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;
|
|
4820
|
+
|
|
4640
4821
|
/**
|
|
4641
4822
|
* ErrorBoundary - Catches JavaScript errors in child component trees.
|
|
4642
4823
|
*
|
|
@@ -5031,4 +5212,4 @@ declare class OptimizedStateManager {
|
|
|
5031
5212
|
}
|
|
5032
5213
|
declare const stateManager: OptimizedStateManager;
|
|
5033
5214
|
|
|
5034
|
-
export { ANIMATION_DURATION, Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, type ActivityType, type AdvancedAudioTrack, AdvancedPlayer, type AdvancedPlayerProps, Alert, AlertDescription, AlertTitle, AnalyticsDashboard, AnimatedSectionTitle, type AnimatedSectionTitleProps, 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, 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, Chart, type ChartDataPoint$1 as ChartDataPoint, type ChartProps, type ChartSeries, Checkbox, 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, DashboardGrid, DashboardLayout, DashboardWidget, type DashboardWidgetProps, DataGrid, type DataGridProps, type DataItem, DataTable, type Column as DataTableColumn, type DataTableProps, type DateFilter, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, type DurationFilter, EmptyState, type EmptyStateProps, EnhancedScrollToTop, type EnhancedScrollToTopProps, type EnvConfig, ErrorAnimation, ErrorBoundary, type ErrorBoundaryProps, ErrorFallback, type ErrorFallbackProps, type ExportOptions, type ExportService, FeatureGrid, type FeatureGridProps, FeatureHighlight, type FeatureItem, type FeedFilter, type FeedItem, type FeedSortOrder, type FeedbackCategory, FilterChip, type FilterChipProps, type FilterConfig, FixedAudioBar, type FixedAudioBarProps, Form, FormBuilder, type FormBuilderProps, FormDescription, type FormField, FormGroup, FormLabel, FormMessage, FormProgress, type FormProps, type FormSchema, FormSection, type GenreFilter, type GlassmorphismTokens, GradientBorderCard, type GradientBorderCardProps, Grid$1 as Grid, GridItem, HamburgerIcon, type HamburgerIconProps, Header, HeaderActions, HeaderBrand, HeaderContainer, HeaderDesktopNav, HeaderMobileTrigger, HeaderNavLink, Hero, HeroCTA, HeroContent, type HeroProps, HeroSubtitle, HeroTitle, InfoAnimation, Input, type InputVariants, type IntersectionObserverOptions, KPIDashboard, type KPIData, KPIWidget, type KPIWidgetProps, Label, LavaLamp, type LavaLampProps, LazyImage, type LazyImagePlaceholder, type LazyImageProps, LineChart, type LineChartProps, 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 NativeComponentProps, Container as NativeContainer, Grid as NativeGrid, Section as NativeSection, type NativeStyle, 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, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationType, type NotificationUser, TrackCard as NowPlayingCard, 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 PerformanceMetrics, type PieChartProps, 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, type RefreshState, type RepeatMode, type ResponsiveColumns, ResponsiveFlex, ResponsiveGrid, type ResponsiveGridProps, ResponsiveHeader, type ResponsiveHeaderProps, RevenueKPI, SafeAreaWrapper, 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, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionConfig, SettingsLayout, type ShareOption, Sidebar, SimpleHero, SimpleResponsiveHeader, type Size, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonText, Slider, type SliderProps, type SocialAction, SocialActions, type SocialActionsProps, type SocialLinks, type SortConfig, type SpacingScale, Stack, 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, Textarea, type TextareaProps, type Theme, type ThemeColors, ThemeProvider, ThemeToggle, type ThemeToggleProps, 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 UseIntersectionObserverResult, type UsePerformanceObserverOptions, UserProfile, type UserProfileData, type UserProfileProps, type UserStats, UsersKPI, VARIANT_ICONS, type Variant, type VideoAuthor, type VideoChapter, VideoPlayer, type VideoPlayerProps, type VideoQuality, type VideoSubtitle, type VideoTrack, VirtualScrollList, type VirtualScrollListProps, type VirtualizationConfig, type VirtualizedItem, type VisualizerType, WarningAnimation, type WaveformData, WaveformPlayer, type WaveformPlayerProps, type WebComponentProps, type WebStyle, WelcomeModal, Z_INDEX, accordionVariants, animationPresets, audioAppTabs, audioPlayerVariants, breadcrumbsVariants, cn, commonValidators, containerVariants, contentVariants, createDataStore, createFormStore, createOptimizedStore, cssAnimations, dailyTrendingConfig, detectAuthProvider, disableScroll, durations, emptyStateVariants, enableScroll, fadeInOut, formVariants, formatCurrency, formatDate, formatNumber, genreChartsConfigs, getConfig, getEnvInfo, getEnvVar, getScrollbarWidth, gridVariants, hamburgerVariants, headerVariants, heroVariants, inputVariants, isBrowser, isExpo, isNative, isWeb, labelVariants, musicAppTabs, nativeConfig, podcastAppTabs, scaleInOut, slideUp, sliderVariants, stateManager, stickyActionsVariants, switchVariants, textareaVariants, theme, themes, timingFunctions, toast, toastVariants, useAnimationTokens, useCache, useClickOutside, useCustomPerformanceTracking, useDebouncedCallback, useEscapeKey, useGlassmorphism, useInfiniteScroll, useIntersectionObserver, useLazyLoad, useLockBody, useMediaQuery, useMobileNavigation, useMounted, useNetworkInfo, useOfflineState, useOptimizedMemo, useOptimizedStoreSelector, usePerformanceObserver, useRenderPerformanceTracking, useTheme, useThrottledCallback, useToast, useVirtualization, useVisibilityTracking, validateEmail, validateEnvConfig, validatePassword, videoPlayerVariants, webAnimations, webConfig, weeklyChartsConfig, withNetworkAware, withPageTransition };
|
|
5215
|
+
export { ANIMATION_DURATION, Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, type ActivityType, type AdvancedAudioTrack, AdvancedPlayer, type AdvancedPlayerProps, Alert, AlertDescription, AlertTitle, AnalyticsDashboard, AnimatedSectionTitle, type AnimatedSectionTitleProps, 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, 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, Chart, type ChartDataPoint$1 as ChartDataPoint, type ChartProps, type ChartSeries, Checkbox, 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, DashboardGrid, DashboardLayout, DashboardWidget, type DashboardWidgetProps, DataGrid, type DataGridProps, type DataItem, DataTable, type Column as DataTableColumn, type DataTableProps, type DateFilter, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, type DurationFilter, EmptyState, type EmptyStateProps, EnhancedScrollToTop, type EnhancedScrollToTopProps, type EnvConfig, ErrorAnimation, ErrorBoundary, type ErrorBoundaryProps, ErrorFallback, type ErrorFallbackProps, type ExportOptions, type ExportService, 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, Form, FormBuilder, type FormBuilderProps, FormDescription, type FormField, FormGroup, FormLabel, FormMessage, FormProgress, type FormProps, type FormSchema, FormSection, type GenreFilter, type GlassmorphismTokens, GradientBorderCard, type GradientBorderCardProps, Grid$1 as Grid, GridItem, HamburgerIcon, type HamburgerIconProps, Header, HeaderActions, HeaderBrand, HeaderContainer, HeaderDesktopNav, HeaderMobileTrigger, HeaderNavLink, Hero, HeroCTA, HeroContent, type HeroProps, HeroSubtitle, HeroTitle, InfoAnimation, Input, type InputVariants, type IntersectionObserverOptions, KPIDashboard, type KPIData, KPIWidget, type KPIWidgetProps, Label, LavaLamp, type LavaLampProps, LazyImage, type LazyImagePlaceholder, type LazyImageProps, LineChart, type LineChartProps, 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 NativeComponentProps, Container as NativeContainer, Grid as NativeGrid, Section as NativeSection, type NativeStyle, 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, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationType, type NotificationUser, TrackCard as NowPlayingCard, 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 PerformanceMetrics, type PieChartProps, 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, type RefreshState, type RepeatMode, type ResponsiveColumns, ResponsiveFlex, ResponsiveGrid, type ResponsiveGridProps, ResponsiveHeader, type ResponsiveHeaderProps, RevenueKPI, SafeAreaWrapper, 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, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionConfig, SettingsLayout, type ShareOption, Sidebar, SimpleHero, SimpleResponsiveHeader, type Size, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonText, Slider, type SliderProps, type SocialAction, SocialActions, type SocialActionsProps, type SocialLinks, type SortConfig, type SpacingScale, Stack, 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, Textarea, type TextareaProps, type Theme, type ThemeColors, ThemeProvider, ThemeToggle, type ThemeToggleProps, 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 UseIntersectionObserverResult, type UsePerformanceObserverOptions, UserProfile, type UserProfileData, type UserProfileProps, type UserStats, UsersKPI, VARIANT_ICONS, type Variant, type VideoAuthor, type VideoChapter, VideoPlayer, type VideoPlayerProps, type VideoQuality, type VideoSubtitle, type VideoTrack, VirtualScrollList, type VirtualScrollListProps, type VirtualizationConfig, type VirtualizedItem, type VisualizerType, WarningAnimation, type WaveformData, WaveformPlayer, type WaveformPlayerProps, type WebComponentProps, type WebStyle, WelcomeModal, Z_INDEX, accordionVariants, animationPresets, audioAppTabs, audioPlayerVariants, breadcrumbsVariants, cn, commonValidators, containerVariants, contentVariants, createDataStore, createFormStore, createOptimizedStore, cssAnimations, dailyTrendingConfig, detectAuthProvider, disableScroll, durations, emptyStateVariants, enableScroll, fadeInOut, formVariants, formatCurrency, formatDate, formatNumber, genreChartsConfigs, getConfig, getEnvInfo, getEnvVar, getScrollbarWidth, gridVariants, hamburgerVariants, headerVariants, heroVariants, inputVariants, isBrowser, isExpo, isNative, isWeb, labelVariants, musicAppTabs, nativeConfig, podcastAppTabs, scaleInOut, slideUp, sliderVariants, stateManager, stickyActionsVariants, switchVariants, textareaVariants, theme, themes, timingFunctions, toast, toastVariants, useAnimationTokens, useCache, useClickOutside, useCustomPerformanceTracking, useDebouncedCallback, useEscapeKey, useGlassmorphism, useInfiniteScroll, useIntersectionObserver, useLazyLoad, useLockBody, useMediaQuery, useMobileNavigation, useMounted, useNetworkInfo, useOfflineState, useOptimizedMemo, useOptimizedStoreSelector, usePerformanceObserver, useRenderPerformanceTracking, useTheme, useThrottledCallback, useToast, useVirtualization, useVisibilityTracking, validateEmail, validateEnvConfig, validatePassword, videoPlayerVariants, webAnimations, webConfig, weeklyChartsConfig, withNetworkAware, withPageTransition };
|
package/dist/web/index.d.ts
CHANGED
|
@@ -4637,6 +4637,187 @@ interface NewsTickerProps<T> {
|
|
|
4637
4637
|
}
|
|
4638
4638
|
declare function NewsTicker<T>({ items, speed, height, variant, className, getKey, getLabel, getHref, getDot, filters, sorts, onItemClick, linkComponent, emptyMessage, }: NewsTickerProps<T>): react_jsx_runtime.JSX.Element;
|
|
4639
4639
|
|
|
4640
|
+
/**
|
|
4641
|
+
* FilterableGrid — A polished, generic grid component with built-in
|
|
4642
|
+
* search, faceted filtering, sorting, category navigation, quick tabs,
|
|
4643
|
+
* grid/list layout toggling, pagination, and stagger animations.
|
|
4644
|
+
*
|
|
4645
|
+
* Self-themed via shadcn-style CSS variables (`--card`, `--primary`,
|
|
4646
|
+
* `--border`, `--muted-foreground`, etc.), so it automatically adapts
|
|
4647
|
+
* to whatever design system the consuming app uses — including
|
|
4648
|
+
* light/dark mode. Each token is also exposed as `--fg-*` so consumers
|
|
4649
|
+
* can override individual values without disturbing their wider theme.
|
|
4650
|
+
*
|
|
4651
|
+
* Card rendering is fully delegated to consumers via `renderCard`, so
|
|
4652
|
+
* the component imposes no opinion on item shape or visual treatment.
|
|
4653
|
+
*
|
|
4654
|
+
* Supports two modes:
|
|
4655
|
+
*
|
|
4656
|
+
* - **`client`** (default): Items are filtered, sorted, and paginated
|
|
4657
|
+
* in memory. Use this when the full dataset is small and known up
|
|
4658
|
+
* front.
|
|
4659
|
+
* - **`server`**: The component renders `items` as-is and emits
|
|
4660
|
+
* `onStateChange` whenever search/filters/sort/layout change so the
|
|
4661
|
+
* parent can refetch. Use this when filters drive a server query
|
|
4662
|
+
* (e.g., URL-driven Next.js server components).
|
|
4663
|
+
*
|
|
4664
|
+
* The category bar can be replaced wholesale via `renderCategoryNav`,
|
|
4665
|
+
* allowing consumers to drop in `<NewsTicker />` or any other nav.
|
|
4666
|
+
*
|
|
4667
|
+
* @example
|
|
4668
|
+
* ```tsx
|
|
4669
|
+
* import { FilterableGrid } from "@digilogiclabs/saas-factory-ui";
|
|
4670
|
+
*
|
|
4671
|
+
* <FilterableGrid
|
|
4672
|
+
* items={sports}
|
|
4673
|
+
* getId={(s) => s.slug}
|
|
4674
|
+
* getLabel={(s) => s.name}
|
|
4675
|
+
* getCategory={(s) => s.category}
|
|
4676
|
+
* categories={CATEGORIES}
|
|
4677
|
+
* filters={FILTERS}
|
|
4678
|
+
* sorts={SORTS}
|
|
4679
|
+
* quickTabs={[
|
|
4680
|
+
* { key: "favorites", label: "Favorites", filter: (s) => favs.includes(s.slug) },
|
|
4681
|
+
* ]}
|
|
4682
|
+
* pageSize={24}
|
|
4683
|
+
* renderCard={(sport, i, ctx) => (
|
|
4684
|
+
* <SportCard key={sport.slug} sport={sport} layout={ctx.layout} index={i} />
|
|
4685
|
+
* )}
|
|
4686
|
+
* />
|
|
4687
|
+
* ```
|
|
4688
|
+
*/
|
|
4689
|
+
interface FilterableGridCategory {
|
|
4690
|
+
key: string;
|
|
4691
|
+
label: string;
|
|
4692
|
+
icon?: React$1.ReactNode;
|
|
4693
|
+
}
|
|
4694
|
+
interface FilterableGridFilterOption {
|
|
4695
|
+
value: string;
|
|
4696
|
+
label: string;
|
|
4697
|
+
icon?: React$1.ReactNode;
|
|
4698
|
+
count?: number;
|
|
4699
|
+
}
|
|
4700
|
+
interface FilterableGridFilter {
|
|
4701
|
+
/** Item field key to filter on (must match a property of T) */
|
|
4702
|
+
key: string;
|
|
4703
|
+
label: string;
|
|
4704
|
+
options: FilterableGridFilterOption[];
|
|
4705
|
+
/** Allow multiple values per filter group (default true) */
|
|
4706
|
+
multi?: boolean;
|
|
4707
|
+
}
|
|
4708
|
+
interface FilterableGridSort<T> {
|
|
4709
|
+
key: string;
|
|
4710
|
+
label: string;
|
|
4711
|
+
fn: (a: T, b: T) => number;
|
|
4712
|
+
}
|
|
4713
|
+
interface FilterableGridQuickTab<T> {
|
|
4714
|
+
key: string;
|
|
4715
|
+
label: string;
|
|
4716
|
+
icon?: React$1.ReactNode;
|
|
4717
|
+
count?: number;
|
|
4718
|
+
/** Predicate (only used in client mode). In server mode the parent reads
|
|
4719
|
+
* the active quick tab from `onStateChange` and applies its own logic. */
|
|
4720
|
+
filter?: (item: T) => boolean;
|
|
4721
|
+
}
|
|
4722
|
+
type FilterableGridLayout = "grid" | "list";
|
|
4723
|
+
interface FilterableGridState {
|
|
4724
|
+
search: string;
|
|
4725
|
+
category: string | null;
|
|
4726
|
+
filters: Record<string, string[]>;
|
|
4727
|
+
sort: string | null;
|
|
4728
|
+
layout: FilterableGridLayout;
|
|
4729
|
+
quickTab: string | null;
|
|
4730
|
+
}
|
|
4731
|
+
interface FilterableGridCategoryNavProps {
|
|
4732
|
+
categories: FilterableGridCategory[];
|
|
4733
|
+
activeCategory: string | null;
|
|
4734
|
+
onCategoryChange: (category: string | null) => void;
|
|
4735
|
+
quickTabs: ReadonlyArray<FilterableGridQuickTab<unknown>>;
|
|
4736
|
+
activeQuickTab: string | null;
|
|
4737
|
+
onQuickTabChange: (key: string | null) => void;
|
|
4738
|
+
labels: FilterableGridLabels;
|
|
4739
|
+
}
|
|
4740
|
+
interface FilterableGridRenderCardContext {
|
|
4741
|
+
layout: FilterableGridLayout;
|
|
4742
|
+
isFav: boolean;
|
|
4743
|
+
index: number;
|
|
4744
|
+
}
|
|
4745
|
+
interface FilterableGridLabels {
|
|
4746
|
+
searchPlaceholder: string;
|
|
4747
|
+
searchAriaLabel: string;
|
|
4748
|
+
clearSearchAriaLabel: string;
|
|
4749
|
+
allCategories: string;
|
|
4750
|
+
clearAll: string;
|
|
4751
|
+
showMore: string;
|
|
4752
|
+
remaining: string;
|
|
4753
|
+
noResults: string;
|
|
4754
|
+
clearFilters: string;
|
|
4755
|
+
itemsLabel: string;
|
|
4756
|
+
showing: string;
|
|
4757
|
+
filtersTitle: string;
|
|
4758
|
+
filtersAriaLabel: string;
|
|
4759
|
+
filtersTriggerLabel: string;
|
|
4760
|
+
closeFiltersLabel: string;
|
|
4761
|
+
sortByTitle: string;
|
|
4762
|
+
layoutGridLabel: string;
|
|
4763
|
+
layoutListLabel: string;
|
|
4764
|
+
layoutToggleAriaLabel: string;
|
|
4765
|
+
countAnnouncement: (count: number, total: number) => string;
|
|
4766
|
+
}
|
|
4767
|
+
interface FilterableGridProps<T> {
|
|
4768
|
+
/** Items to display. In `client` mode these are filtered locally;
|
|
4769
|
+
* in `server` mode they are rendered as-is. */
|
|
4770
|
+
items: T[];
|
|
4771
|
+
/** Filtering mode (default `"client"`) */
|
|
4772
|
+
mode?: "client" | "server";
|
|
4773
|
+
/** Stable id for each item (used for favorites + React keys). Default: `item.id` */
|
|
4774
|
+
getId?: (item: T) => string;
|
|
4775
|
+
/** Display label fallback (used by default `getSearchText`). Default: `item.label || item.name || item.title` */
|
|
4776
|
+
getLabel?: (item: T) => string;
|
|
4777
|
+
/** Category key for client-mode category filtering. Default: `item.category` */
|
|
4778
|
+
getCategory?: (item: T) => string | undefined;
|
|
4779
|
+
/** Searchable text for client-mode search. Default: `getLabel(item)` */
|
|
4780
|
+
getSearchText?: (item: T) => string;
|
|
4781
|
+
categories?: FilterableGridCategory[];
|
|
4782
|
+
filters?: FilterableGridFilter[];
|
|
4783
|
+
sorts?: FilterableGridSort<T>[];
|
|
4784
|
+
quickTabs?: FilterableGridQuickTab<T>[];
|
|
4785
|
+
defaultSort?: string | null;
|
|
4786
|
+
defaultCategory?: string | null;
|
|
4787
|
+
defaultLayout?: FilterableGridLayout;
|
|
4788
|
+
/** Items per page in client mode. `0` disables pagination. */
|
|
4789
|
+
pageSize?: number;
|
|
4790
|
+
showLayoutToggle?: boolean;
|
|
4791
|
+
showSearch?: boolean;
|
|
4792
|
+
showCount?: boolean;
|
|
4793
|
+
/** Search debounce in ms (default 300, set to 0 to disable) */
|
|
4794
|
+
searchDebounceMs?: number;
|
|
4795
|
+
/** Maximum index to apply stagger animation delay to (default 9) */
|
|
4796
|
+
staggerCap?: number;
|
|
4797
|
+
/** Per-card stagger step in ms (default 50) */
|
|
4798
|
+
staggerStepMs?: number;
|
|
4799
|
+
/** Replace the entire category/quick-tab nav with a custom component
|
|
4800
|
+
* (e.g. `<NewsTicker />`). Receives all the state needed to render. */
|
|
4801
|
+
renderCategoryNav?: (props: FilterableGridCategoryNavProps) => React$1.ReactNode;
|
|
4802
|
+
/** Required: card renderer. The component is intentionally card-agnostic. */
|
|
4803
|
+
renderCard: (item: T, index: number, ctx: FilterableGridRenderCardContext) => React$1.ReactNode;
|
|
4804
|
+
renderEmpty?: (state: FilterableGridState) => React$1.ReactNode;
|
|
4805
|
+
renderSkeleton?: (count: number) => React$1.ReactNode;
|
|
4806
|
+
loading?: boolean;
|
|
4807
|
+
hasMore?: boolean;
|
|
4808
|
+
totalCount?: number;
|
|
4809
|
+
onLoadMore?: () => void;
|
|
4810
|
+
/** Fires whenever the internal filter state changes. Use this in
|
|
4811
|
+
* `server` mode to translate state into a fetch / URL update. */
|
|
4812
|
+
onStateChange?: (state: FilterableGridState) => void;
|
|
4813
|
+
favorites?: string[];
|
|
4814
|
+
onFavoriteToggle?: (item: T) => void;
|
|
4815
|
+
onItemClick?: (item: T) => void;
|
|
4816
|
+
labels?: Partial<FilterableGridLabels>;
|
|
4817
|
+
className?: string;
|
|
4818
|
+
}
|
|
4819
|
+
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;
|
|
4820
|
+
|
|
4640
4821
|
/**
|
|
4641
4822
|
* ErrorBoundary - Catches JavaScript errors in child component trees.
|
|
4642
4823
|
*
|
|
@@ -5031,4 +5212,4 @@ declare class OptimizedStateManager {
|
|
|
5031
5212
|
}
|
|
5032
5213
|
declare const stateManager: OptimizedStateManager;
|
|
5033
5214
|
|
|
5034
|
-
export { ANIMATION_DURATION, Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, type ActivityType, type AdvancedAudioTrack, AdvancedPlayer, type AdvancedPlayerProps, Alert, AlertDescription, AlertTitle, AnalyticsDashboard, AnimatedSectionTitle, type AnimatedSectionTitleProps, 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, 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, Chart, type ChartDataPoint$1 as ChartDataPoint, type ChartProps, type ChartSeries, Checkbox, 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, DashboardGrid, DashboardLayout, DashboardWidget, type DashboardWidgetProps, DataGrid, type DataGridProps, type DataItem, DataTable, type Column as DataTableColumn, type DataTableProps, type DateFilter, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, type DurationFilter, EmptyState, type EmptyStateProps, EnhancedScrollToTop, type EnhancedScrollToTopProps, type EnvConfig, ErrorAnimation, ErrorBoundary, type ErrorBoundaryProps, ErrorFallback, type ErrorFallbackProps, type ExportOptions, type ExportService, FeatureGrid, type FeatureGridProps, FeatureHighlight, type FeatureItem, type FeedFilter, type FeedItem, type FeedSortOrder, type FeedbackCategory, FilterChip, type FilterChipProps, type FilterConfig, FixedAudioBar, type FixedAudioBarProps, Form, FormBuilder, type FormBuilderProps, FormDescription, type FormField, FormGroup, FormLabel, FormMessage, FormProgress, type FormProps, type FormSchema, FormSection, type GenreFilter, type GlassmorphismTokens, GradientBorderCard, type GradientBorderCardProps, Grid$1 as Grid, GridItem, HamburgerIcon, type HamburgerIconProps, Header, HeaderActions, HeaderBrand, HeaderContainer, HeaderDesktopNav, HeaderMobileTrigger, HeaderNavLink, Hero, HeroCTA, HeroContent, type HeroProps, HeroSubtitle, HeroTitle, InfoAnimation, Input, type InputVariants, type IntersectionObserverOptions, KPIDashboard, type KPIData, KPIWidget, type KPIWidgetProps, Label, LavaLamp, type LavaLampProps, LazyImage, type LazyImagePlaceholder, type LazyImageProps, LineChart, type LineChartProps, 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 NativeComponentProps, Container as NativeContainer, Grid as NativeGrid, Section as NativeSection, type NativeStyle, 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, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationType, type NotificationUser, TrackCard as NowPlayingCard, 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 PerformanceMetrics, type PieChartProps, 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, type RefreshState, type RepeatMode, type ResponsiveColumns, ResponsiveFlex, ResponsiveGrid, type ResponsiveGridProps, ResponsiveHeader, type ResponsiveHeaderProps, RevenueKPI, SafeAreaWrapper, 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, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionConfig, SettingsLayout, type ShareOption, Sidebar, SimpleHero, SimpleResponsiveHeader, type Size, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonText, Slider, type SliderProps, type SocialAction, SocialActions, type SocialActionsProps, type SocialLinks, type SortConfig, type SpacingScale, Stack, 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, Textarea, type TextareaProps, type Theme, type ThemeColors, ThemeProvider, ThemeToggle, type ThemeToggleProps, 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 UseIntersectionObserverResult, type UsePerformanceObserverOptions, UserProfile, type UserProfileData, type UserProfileProps, type UserStats, UsersKPI, VARIANT_ICONS, type Variant, type VideoAuthor, type VideoChapter, VideoPlayer, type VideoPlayerProps, type VideoQuality, type VideoSubtitle, type VideoTrack, VirtualScrollList, type VirtualScrollListProps, type VirtualizationConfig, type VirtualizedItem, type VisualizerType, WarningAnimation, type WaveformData, WaveformPlayer, type WaveformPlayerProps, type WebComponentProps, type WebStyle, WelcomeModal, Z_INDEX, accordionVariants, animationPresets, audioAppTabs, audioPlayerVariants, breadcrumbsVariants, cn, commonValidators, containerVariants, contentVariants, createDataStore, createFormStore, createOptimizedStore, cssAnimations, dailyTrendingConfig, detectAuthProvider, disableScroll, durations, emptyStateVariants, enableScroll, fadeInOut, formVariants, formatCurrency, formatDate, formatNumber, genreChartsConfigs, getConfig, getEnvInfo, getEnvVar, getScrollbarWidth, gridVariants, hamburgerVariants, headerVariants, heroVariants, inputVariants, isBrowser, isExpo, isNative, isWeb, labelVariants, musicAppTabs, nativeConfig, podcastAppTabs, scaleInOut, slideUp, sliderVariants, stateManager, stickyActionsVariants, switchVariants, textareaVariants, theme, themes, timingFunctions, toast, toastVariants, useAnimationTokens, useCache, useClickOutside, useCustomPerformanceTracking, useDebouncedCallback, useEscapeKey, useGlassmorphism, useInfiniteScroll, useIntersectionObserver, useLazyLoad, useLockBody, useMediaQuery, useMobileNavigation, useMounted, useNetworkInfo, useOfflineState, useOptimizedMemo, useOptimizedStoreSelector, usePerformanceObserver, useRenderPerformanceTracking, useTheme, useThrottledCallback, useToast, useVirtualization, useVisibilityTracking, validateEmail, validateEnvConfig, validatePassword, videoPlayerVariants, webAnimations, webConfig, weeklyChartsConfig, withNetworkAware, withPageTransition };
|
|
5215
|
+
export { ANIMATION_DURATION, Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, type ActivityType, type AdvancedAudioTrack, AdvancedPlayer, type AdvancedPlayerProps, Alert, AlertDescription, AlertTitle, AnalyticsDashboard, AnimatedSectionTitle, type AnimatedSectionTitleProps, 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, 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, Chart, type ChartDataPoint$1 as ChartDataPoint, type ChartProps, type ChartSeries, Checkbox, 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, DashboardGrid, DashboardLayout, DashboardWidget, type DashboardWidgetProps, DataGrid, type DataGridProps, type DataItem, DataTable, type Column as DataTableColumn, type DataTableProps, type DateFilter, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, type DurationFilter, EmptyState, type EmptyStateProps, EnhancedScrollToTop, type EnhancedScrollToTopProps, type EnvConfig, ErrorAnimation, ErrorBoundary, type ErrorBoundaryProps, ErrorFallback, type ErrorFallbackProps, type ExportOptions, type ExportService, 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, Form, FormBuilder, type FormBuilderProps, FormDescription, type FormField, FormGroup, FormLabel, FormMessage, FormProgress, type FormProps, type FormSchema, FormSection, type GenreFilter, type GlassmorphismTokens, GradientBorderCard, type GradientBorderCardProps, Grid$1 as Grid, GridItem, HamburgerIcon, type HamburgerIconProps, Header, HeaderActions, HeaderBrand, HeaderContainer, HeaderDesktopNav, HeaderMobileTrigger, HeaderNavLink, Hero, HeroCTA, HeroContent, type HeroProps, HeroSubtitle, HeroTitle, InfoAnimation, Input, type InputVariants, type IntersectionObserverOptions, KPIDashboard, type KPIData, KPIWidget, type KPIWidgetProps, Label, LavaLamp, type LavaLampProps, LazyImage, type LazyImagePlaceholder, type LazyImageProps, LineChart, type LineChartProps, 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 NativeComponentProps, Container as NativeContainer, Grid as NativeGrid, Section as NativeSection, type NativeStyle, 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, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationType, type NotificationUser, TrackCard as NowPlayingCard, 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 PerformanceMetrics, type PieChartProps, 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, type RefreshState, type RepeatMode, type ResponsiveColumns, ResponsiveFlex, ResponsiveGrid, type ResponsiveGridProps, ResponsiveHeader, type ResponsiveHeaderProps, RevenueKPI, SafeAreaWrapper, 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, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionConfig, SettingsLayout, type ShareOption, Sidebar, SimpleHero, SimpleResponsiveHeader, type Size, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonText, Slider, type SliderProps, type SocialAction, SocialActions, type SocialActionsProps, type SocialLinks, type SortConfig, type SpacingScale, Stack, 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, Textarea, type TextareaProps, type Theme, type ThemeColors, ThemeProvider, ThemeToggle, type ThemeToggleProps, 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 UseIntersectionObserverResult, type UsePerformanceObserverOptions, UserProfile, type UserProfileData, type UserProfileProps, type UserStats, UsersKPI, VARIANT_ICONS, type Variant, type VideoAuthor, type VideoChapter, VideoPlayer, type VideoPlayerProps, type VideoQuality, type VideoSubtitle, type VideoTrack, VirtualScrollList, type VirtualScrollListProps, type VirtualizationConfig, type VirtualizedItem, type VisualizerType, WarningAnimation, type WaveformData, WaveformPlayer, type WaveformPlayerProps, type WebComponentProps, type WebStyle, WelcomeModal, Z_INDEX, accordionVariants, animationPresets, audioAppTabs, audioPlayerVariants, breadcrumbsVariants, cn, commonValidators, containerVariants, contentVariants, createDataStore, createFormStore, createOptimizedStore, cssAnimations, dailyTrendingConfig, detectAuthProvider, disableScroll, durations, emptyStateVariants, enableScroll, fadeInOut, formVariants, formatCurrency, formatDate, formatNumber, genreChartsConfigs, getConfig, getEnvInfo, getEnvVar, getScrollbarWidth, gridVariants, hamburgerVariants, headerVariants, heroVariants, inputVariants, isBrowser, isExpo, isNative, isWeb, labelVariants, musicAppTabs, nativeConfig, podcastAppTabs, scaleInOut, slideUp, sliderVariants, stateManager, stickyActionsVariants, switchVariants, textareaVariants, theme, themes, timingFunctions, toast, toastVariants, useAnimationTokens, useCache, useClickOutside, useCustomPerformanceTracking, useDebouncedCallback, useEscapeKey, useGlassmorphism, useInfiniteScroll, useIntersectionObserver, useLazyLoad, useLockBody, useMediaQuery, useMobileNavigation, useMounted, useNetworkInfo, useOfflineState, useOptimizedMemo, useOptimizedStoreSelector, usePerformanceObserver, useRenderPerformanceTracking, useTheme, useThrottledCallback, useToast, useVirtualization, useVisibilityTracking, validateEmail, validateEnvConfig, validatePassword, videoPlayerVariants, webAnimations, webConfig, weeklyChartsConfig, withNetworkAware, withPageTransition };
|