@mikenotthepope/substrateui 0.1.1 → 0.1.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/base/substrate.css +163 -0
- package/dist/index.d.mts +12 -2
- package/dist/index.d.ts +12 -2
- package/dist/index.js +224 -91
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +223 -91
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/base/substrate.css
CHANGED
|
@@ -450,6 +450,169 @@
|
|
|
450
450
|
--grid-line: rgba(255, 255, 255, 0.06);
|
|
451
451
|
}
|
|
452
452
|
|
|
453
|
+
/* ─── Color Theme: Plum (Light) ───
|
|
454
|
+
Only anchor-related tokens (primary, accent, info, page, ring) are
|
|
455
|
+
overridden. Surface tokens (background, foreground, muted, secondary,
|
|
456
|
+
border, input, overlay) intentionally inherit from the base light theme
|
|
457
|
+
so that color themes only shift the brand accent, not the entire surface. */
|
|
458
|
+
|
|
459
|
+
.theme-plum {
|
|
460
|
+
--page: #F0DCFE;
|
|
461
|
+
--page-foreground: #000;
|
|
462
|
+
--primary: #B254CF;
|
|
463
|
+
--primary-hover: #9A42B5;
|
|
464
|
+
--primary-foreground: #000;
|
|
465
|
+
--accent: #B254CF;
|
|
466
|
+
--accent-foreground: #000;
|
|
467
|
+
--info: #B254CF;
|
|
468
|
+
--info-foreground: #000;
|
|
469
|
+
--ring: #B254CF;
|
|
470
|
+
--grid-line: rgba(178, 84, 207, 0.12);
|
|
471
|
+
|
|
472
|
+
--primary-50: #F8EDFC;
|
|
473
|
+
--primary-100: #F0D9F8;
|
|
474
|
+
--primary-200: #DFB0F0;
|
|
475
|
+
--primary-300: #CE87E8;
|
|
476
|
+
--primary-400: #B254CF;
|
|
477
|
+
--primary-500: #9A42B5;
|
|
478
|
+
--primary-600: #7D3596;
|
|
479
|
+
--primary-700: #602877;
|
|
480
|
+
--primary-800: #431C57;
|
|
481
|
+
--primary-900: #281038;
|
|
482
|
+
|
|
483
|
+
--info-50: #F8EDFC;
|
|
484
|
+
--info-100: #F0D9F8;
|
|
485
|
+
--info-200: #DFB0F0;
|
|
486
|
+
--info-300: #CE87E8;
|
|
487
|
+
--info-400: #B254CF;
|
|
488
|
+
--info-500: #9A42B5;
|
|
489
|
+
--info-600: #7D3596;
|
|
490
|
+
--info-700: #602877;
|
|
491
|
+
--info-800: #431C57;
|
|
492
|
+
--info-900: #281038;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
/* ─── Color Theme: Plum (Dark) ─── */
|
|
496
|
+
|
|
497
|
+
.dark.theme-plum,
|
|
498
|
+
.dark .theme-plum {
|
|
499
|
+
--page: #2E2045;
|
|
500
|
+
--page-foreground: #E6E6E6;
|
|
501
|
+
--card: #2E2045;
|
|
502
|
+
--card-foreground: #E6E6E6;
|
|
503
|
+
--primary: #B254CF;
|
|
504
|
+
--primary-hover: #9A42B5;
|
|
505
|
+
--primary-foreground: #000;
|
|
506
|
+
--accent: #B254CF;
|
|
507
|
+
--accent-foreground: #000;
|
|
508
|
+
--info: #B254CF;
|
|
509
|
+
--info-foreground: #000;
|
|
510
|
+
--ring: #fff;
|
|
511
|
+
--grid-line: rgba(178, 84, 207, 0.08);
|
|
512
|
+
|
|
513
|
+
/* Dark-adapted palette — lighter end toned down for dark backgrounds */
|
|
514
|
+
--primary-50: #3A2548;
|
|
515
|
+
--primary-100: #452D55;
|
|
516
|
+
--primary-200: #5A3870;
|
|
517
|
+
--primary-300: #7A4698;
|
|
518
|
+
--primary-400: #B254CF;
|
|
519
|
+
--primary-500: #C476DA;
|
|
520
|
+
--primary-600: #D49BE5;
|
|
521
|
+
--primary-700: #E0B8ED;
|
|
522
|
+
--primary-800: #ECD5F5;
|
|
523
|
+
--primary-900: #F5EAFA;
|
|
524
|
+
|
|
525
|
+
--info-50: #3A2548;
|
|
526
|
+
--info-100: #452D55;
|
|
527
|
+
--info-200: #5A3870;
|
|
528
|
+
--info-300: #7A4698;
|
|
529
|
+
--info-400: #B254CF;
|
|
530
|
+
--info-500: #C476DA;
|
|
531
|
+
--info-600: #D49BE5;
|
|
532
|
+
--info-700: #E0B8ED;
|
|
533
|
+
--info-800: #ECD5F5;
|
|
534
|
+
--info-900: #F5EAFA;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
/* ─── Color Theme: Plum Trio (Light) ─── */
|
|
538
|
+
|
|
539
|
+
.theme-plum-trio {
|
|
540
|
+
--page: #F0DCFE;
|
|
541
|
+
--page-foreground: #000;
|
|
542
|
+
--primary: #B254CF;
|
|
543
|
+
--primary-hover: #9A42B5;
|
|
544
|
+
--primary-foreground: #000;
|
|
545
|
+
--accent: #2ABFAB;
|
|
546
|
+
--accent-foreground: #000;
|
|
547
|
+
--info: #E8B42A;
|
|
548
|
+
--info-foreground: #000;
|
|
549
|
+
--ring: #B254CF;
|
|
550
|
+
--grid-line: rgba(178, 84, 207, 0.12);
|
|
551
|
+
|
|
552
|
+
--primary-50: #F8EDFC;
|
|
553
|
+
--primary-100: #F0D9F8;
|
|
554
|
+
--primary-200: #DFB0F0;
|
|
555
|
+
--primary-300: #CE87E8;
|
|
556
|
+
--primary-400: #B254CF;
|
|
557
|
+
--primary-500: #9A42B5;
|
|
558
|
+
--primary-600: #7D3596;
|
|
559
|
+
--primary-700: #602877;
|
|
560
|
+
--primary-800: #431C57;
|
|
561
|
+
--primary-900: #281038;
|
|
562
|
+
|
|
563
|
+
--info-50: #FDF6E4;
|
|
564
|
+
--info-100: #FAECC5;
|
|
565
|
+
--info-200: #F5D88E;
|
|
566
|
+
--info-300: #F0C457;
|
|
567
|
+
--info-400: #E8B42A;
|
|
568
|
+
--info-500: #C99A1E;
|
|
569
|
+
--info-600: #A47D16;
|
|
570
|
+
--info-700: #7F6010;
|
|
571
|
+
--info-800: #5A440B;
|
|
572
|
+
--info-900: #352806;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
/* ─── Color Theme: Plum Trio (Dark) ─── */
|
|
576
|
+
|
|
577
|
+
.dark.theme-plum-trio,
|
|
578
|
+
.dark .theme-plum-trio {
|
|
579
|
+
--page: #2E2045;
|
|
580
|
+
--page-foreground: #E6E6E6;
|
|
581
|
+
--card: #2E2045;
|
|
582
|
+
--card-foreground: #E6E6E6;
|
|
583
|
+
--primary: #B254CF;
|
|
584
|
+
--primary-hover: #9A42B5;
|
|
585
|
+
--primary-foreground: #000;
|
|
586
|
+
--accent: #2ABFAB;
|
|
587
|
+
--accent-foreground: #000;
|
|
588
|
+
--info: #E8B42A;
|
|
589
|
+
--info-foreground: #000;
|
|
590
|
+
--ring: #fff;
|
|
591
|
+
--grid-line: rgba(178, 84, 207, 0.08);
|
|
592
|
+
|
|
593
|
+
--primary-50: #3A2548;
|
|
594
|
+
--primary-100: #452D55;
|
|
595
|
+
--primary-200: #5A3870;
|
|
596
|
+
--primary-300: #7A4698;
|
|
597
|
+
--primary-400: #B254CF;
|
|
598
|
+
--primary-500: #C476DA;
|
|
599
|
+
--primary-600: #D49BE5;
|
|
600
|
+
--primary-700: #E0B8ED;
|
|
601
|
+
--primary-800: #ECD5F5;
|
|
602
|
+
--primary-900: #F5EAFA;
|
|
603
|
+
|
|
604
|
+
--info-50: #3D2E10;
|
|
605
|
+
--info-100: #4D3A14;
|
|
606
|
+
--info-200: #6B5220;
|
|
607
|
+
--info-300: #9A7828;
|
|
608
|
+
--info-400: #E8B42A;
|
|
609
|
+
--info-500: #F0C457;
|
|
610
|
+
--info-600: #F5D88E;
|
|
611
|
+
--info-700: #FAECC5;
|
|
612
|
+
--info-800: #FDF6E4;
|
|
613
|
+
--info-900: #FEFBF2;
|
|
614
|
+
}
|
|
615
|
+
|
|
453
616
|
/* ─── Optional: rounded corners ─── */
|
|
454
617
|
|
|
455
618
|
.with-radius {
|
package/dist/index.d.mts
CHANGED
|
@@ -1021,23 +1021,33 @@ declare const TwoColumnLayoutComponent: typeof TwoColumnLayout & {
|
|
|
1021
1021
|
};
|
|
1022
1022
|
|
|
1023
1023
|
type Theme = "light" | "dark" | "system";
|
|
1024
|
+
type ColorTheme = "blue" | "plum" | "plum-trio";
|
|
1024
1025
|
interface ThemeProviderState {
|
|
1025
1026
|
theme: Theme;
|
|
1026
1027
|
resolvedTheme: "light" | "dark";
|
|
1027
1028
|
setTheme: (theme: Theme) => void;
|
|
1029
|
+
colorTheme: ColorTheme;
|
|
1030
|
+
setColorTheme: (colorTheme: ColorTheme) => void;
|
|
1031
|
+
colorThemes: readonly ColorTheme[];
|
|
1028
1032
|
}
|
|
1029
1033
|
interface ThemeProviderProps {
|
|
1030
1034
|
children: React.ReactNode;
|
|
1031
1035
|
defaultTheme?: Theme;
|
|
1036
|
+
defaultColorTheme?: ColorTheme;
|
|
1032
1037
|
storageKey?: string;
|
|
1038
|
+
colorStorageKey?: string;
|
|
1033
1039
|
}
|
|
1034
|
-
declare function ThemeProvider({ children, defaultTheme, storageKey, }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
1040
|
+
declare function ThemeProvider({ children, defaultTheme, defaultColorTheme, storageKey, colorStorageKey, }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
1035
1041
|
declare function useTheme(): ThemeProviderState;
|
|
1036
1042
|
|
|
1037
1043
|
interface ThemeToggleProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "children">, VariantProps<typeof iconButtonVariants> {
|
|
1038
1044
|
}
|
|
1039
1045
|
declare function ThemeToggle({ variant, size, className, ...props }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
1040
1046
|
|
|
1047
|
+
interface ColorThemeToggleProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "children">, VariantProps<typeof iconButtonVariants> {
|
|
1048
|
+
}
|
|
1049
|
+
declare function ColorThemeToggle({ variant, size, className, ...props }: ColorThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
1050
|
+
|
|
1041
1051
|
interface ThemeConfig {
|
|
1042
1052
|
/** Primary brand color and its foreground */
|
|
1043
1053
|
primary?: string;
|
|
@@ -1219,4 +1229,4 @@ declare function NewsletterSignup({ title, subtitle, inputPlaceholder, buttonLab
|
|
|
1219
1229
|
|
|
1220
1230
|
declare function cn(...classes: ClassNameValue[]): string;
|
|
1221
1231
|
|
|
1222
|
-
export { AccordionComponent as Accordion, AlertComponent as Alert, AlertDialogComponent as AlertDialog, AnnouncementBanner, type AnnouncementBannerProps, AvatarComponent as Avatar, type AvatarShape, Badge, BreadcrumbComponent as Breadcrumb, Button, CTABanner, type CTABannerProps, Calendar, CardComponent as Card, CardGrid, type CardGridProps, CarouselComponent as Carousel, type CarouselApi, ChartComponent as Chart, type ChartConfig, Checkbox, CollapsibleComponent as Collapsible, ComboboxComponent as Combobox, CommandComponent as Command, Container, ContextMenuComponent as ContextMenu, DataTableComponent as DataTable, DialogComponent as Dialog, Divider, DrawerComponent as Drawer, DropdownMenuComponent as DropdownMenu, FAQ, type FAQItem, type FAQProps, type Feature, FeatureSection, type FeatureSectionProps, Flex, Footer, type FooterLinkGroup, type FooterProps, FormComponent as Form, FormLayout, Grid, Hero, type HeroProps, HoverCardComponent as HoverCard, type IAlertDialogContentProps, type IAlertProps, type IBadgeProps, type IBreadcrumbLinkProps, type IButtonProps, type ICalendarProps, type ICardProps, type ICarouselProps, type IChartContainerProps, type ICheckboxProps, type IComboboxItem, type IComboboxProps, type IContainerProps, type IDataTableProps, type IDialogContentProps, type IDividerProps, type IFlexProps, type IFormActionsProps, type IFormFieldProps, type IFormLayoutProps, type IFormRowProps, type IFormSectionProps, type IGridProps, type IIconButtonProps, type IImageCardProps, type IInputOTPProps, type IInputProps, type ILinkProps, type ILoaderProps, type IMarqueeProps, type IPaginationLinkProps, type IProgressProps, type IRadioGroupItemProps, type ISectionNavProps, type ISheetContentProps, type ISkeletonProps, type ISonnerProps, type IStackProps, type ITextareaProps, IconButton, ImageCard, Input, InputOTPComponent as InputOTP, Label, Link, Loader, LogoCloud, type LogoCloudProps, Marquee, MenuComponent as Menu, MenubarComponent as Menubar, type NavAuth, NavBar, type NavBarProps, type NavBrand, type NavLink, type NavMenuItem, NavigationMenuComponent as NavigationMenu, NewsletterSignup, type NewsletterSignupProps, Pagination, PopoverComponent as Popover, type PricingFeature, PricingTable, type PricingTableProps, type PricingTier, Progress, RadioGroup, ResizableComponent as Resizable, ScrollAreaComponent as ScrollArea, Section, SectionNav, type SectionNavItem, type SectionProps, Select, SheetComponent as Sheet, SidebarComponent as Sidebar, SimplePage, type SimplePageProps, Skeleton, Slider, Stack, type Stat, StatsBar, type StatsBarProps, Switch, TableComponent as Table, TabsComponent as Tabs, Testimonial, type TestimonialItem, type TestimonialProps, Text, Textarea, type ThemeConfig, ThemeProvider, ThemeToggle, type ThemeToggleProps, Toaster, TooltipComponent as Tooltip, TwoColumnLayoutComponent as TwoColumnLayout, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, containerVariants, createTheme, dialogContentVariants, dividerVariants, flexVariants, gridVariants, iconButtonVariants, linkVariants, loaderVariants, navigationMenuTriggerStyle, sectionVariants, sheetContentVariants, sidebarMenuButtonVariants, stackVariants, useCarousel, useChart, useFormField, useSidebar, useTheme };
|
|
1232
|
+
export { AccordionComponent as Accordion, AlertComponent as Alert, AlertDialogComponent as AlertDialog, AnnouncementBanner, type AnnouncementBannerProps, AvatarComponent as Avatar, type AvatarShape, Badge, BreadcrumbComponent as Breadcrumb, Button, CTABanner, type CTABannerProps, Calendar, CardComponent as Card, CardGrid, type CardGridProps, CarouselComponent as Carousel, type CarouselApi, ChartComponent as Chart, type ChartConfig, Checkbox, CollapsibleComponent as Collapsible, type ColorTheme, ColorThemeToggle, type ColorThemeToggleProps, ComboboxComponent as Combobox, CommandComponent as Command, Container, ContextMenuComponent as ContextMenu, DataTableComponent as DataTable, DialogComponent as Dialog, Divider, DrawerComponent as Drawer, DropdownMenuComponent as DropdownMenu, FAQ, type FAQItem, type FAQProps, type Feature, FeatureSection, type FeatureSectionProps, Flex, Footer, type FooterLinkGroup, type FooterProps, FormComponent as Form, FormLayout, Grid, Hero, type HeroProps, HoverCardComponent as HoverCard, type IAlertDialogContentProps, type IAlertProps, type IBadgeProps, type IBreadcrumbLinkProps, type IButtonProps, type ICalendarProps, type ICardProps, type ICarouselProps, type IChartContainerProps, type ICheckboxProps, type IComboboxItem, type IComboboxProps, type IContainerProps, type IDataTableProps, type IDialogContentProps, type IDividerProps, type IFlexProps, type IFormActionsProps, type IFormFieldProps, type IFormLayoutProps, type IFormRowProps, type IFormSectionProps, type IGridProps, type IIconButtonProps, type IImageCardProps, type IInputOTPProps, type IInputProps, type ILinkProps, type ILoaderProps, type IMarqueeProps, type IPaginationLinkProps, type IProgressProps, type IRadioGroupItemProps, type ISectionNavProps, type ISheetContentProps, type ISkeletonProps, type ISonnerProps, type IStackProps, type ITextareaProps, IconButton, ImageCard, Input, InputOTPComponent as InputOTP, Label, Link, Loader, LogoCloud, type LogoCloudProps, Marquee, MenuComponent as Menu, MenubarComponent as Menubar, type NavAuth, NavBar, type NavBarProps, type NavBrand, type NavLink, type NavMenuItem, NavigationMenuComponent as NavigationMenu, NewsletterSignup, type NewsletterSignupProps, Pagination, PopoverComponent as Popover, type PricingFeature, PricingTable, type PricingTableProps, type PricingTier, Progress, RadioGroup, ResizableComponent as Resizable, ScrollAreaComponent as ScrollArea, Section, SectionNav, type SectionNavItem, type SectionProps, Select, SheetComponent as Sheet, SidebarComponent as Sidebar, SimplePage, type SimplePageProps, Skeleton, Slider, Stack, type Stat, StatsBar, type StatsBarProps, Switch, TableComponent as Table, TabsComponent as Tabs, Testimonial, type TestimonialItem, type TestimonialProps, Text, Textarea, type ThemeConfig, ThemeProvider, ThemeToggle, type ThemeToggleProps, Toaster, TooltipComponent as Tooltip, TwoColumnLayoutComponent as TwoColumnLayout, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, containerVariants, createTheme, dialogContentVariants, dividerVariants, flexVariants, gridVariants, iconButtonVariants, linkVariants, loaderVariants, navigationMenuTriggerStyle, sectionVariants, sheetContentVariants, sidebarMenuButtonVariants, stackVariants, useCarousel, useChart, useFormField, useSidebar, useTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -1021,23 +1021,33 @@ declare const TwoColumnLayoutComponent: typeof TwoColumnLayout & {
|
|
|
1021
1021
|
};
|
|
1022
1022
|
|
|
1023
1023
|
type Theme = "light" | "dark" | "system";
|
|
1024
|
+
type ColorTheme = "blue" | "plum" | "plum-trio";
|
|
1024
1025
|
interface ThemeProviderState {
|
|
1025
1026
|
theme: Theme;
|
|
1026
1027
|
resolvedTheme: "light" | "dark";
|
|
1027
1028
|
setTheme: (theme: Theme) => void;
|
|
1029
|
+
colorTheme: ColorTheme;
|
|
1030
|
+
setColorTheme: (colorTheme: ColorTheme) => void;
|
|
1031
|
+
colorThemes: readonly ColorTheme[];
|
|
1028
1032
|
}
|
|
1029
1033
|
interface ThemeProviderProps {
|
|
1030
1034
|
children: React.ReactNode;
|
|
1031
1035
|
defaultTheme?: Theme;
|
|
1036
|
+
defaultColorTheme?: ColorTheme;
|
|
1032
1037
|
storageKey?: string;
|
|
1038
|
+
colorStorageKey?: string;
|
|
1033
1039
|
}
|
|
1034
|
-
declare function ThemeProvider({ children, defaultTheme, storageKey, }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
1040
|
+
declare function ThemeProvider({ children, defaultTheme, defaultColorTheme, storageKey, colorStorageKey, }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
1035
1041
|
declare function useTheme(): ThemeProviderState;
|
|
1036
1042
|
|
|
1037
1043
|
interface ThemeToggleProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "children">, VariantProps<typeof iconButtonVariants> {
|
|
1038
1044
|
}
|
|
1039
1045
|
declare function ThemeToggle({ variant, size, className, ...props }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
1040
1046
|
|
|
1047
|
+
interface ColorThemeToggleProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "children">, VariantProps<typeof iconButtonVariants> {
|
|
1048
|
+
}
|
|
1049
|
+
declare function ColorThemeToggle({ variant, size, className, ...props }: ColorThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
1050
|
+
|
|
1041
1051
|
interface ThemeConfig {
|
|
1042
1052
|
/** Primary brand color and its foreground */
|
|
1043
1053
|
primary?: string;
|
|
@@ -1219,4 +1229,4 @@ declare function NewsletterSignup({ title, subtitle, inputPlaceholder, buttonLab
|
|
|
1219
1229
|
|
|
1220
1230
|
declare function cn(...classes: ClassNameValue[]): string;
|
|
1221
1231
|
|
|
1222
|
-
export { AccordionComponent as Accordion, AlertComponent as Alert, AlertDialogComponent as AlertDialog, AnnouncementBanner, type AnnouncementBannerProps, AvatarComponent as Avatar, type AvatarShape, Badge, BreadcrumbComponent as Breadcrumb, Button, CTABanner, type CTABannerProps, Calendar, CardComponent as Card, CardGrid, type CardGridProps, CarouselComponent as Carousel, type CarouselApi, ChartComponent as Chart, type ChartConfig, Checkbox, CollapsibleComponent as Collapsible, ComboboxComponent as Combobox, CommandComponent as Command, Container, ContextMenuComponent as ContextMenu, DataTableComponent as DataTable, DialogComponent as Dialog, Divider, DrawerComponent as Drawer, DropdownMenuComponent as DropdownMenu, FAQ, type FAQItem, type FAQProps, type Feature, FeatureSection, type FeatureSectionProps, Flex, Footer, type FooterLinkGroup, type FooterProps, FormComponent as Form, FormLayout, Grid, Hero, type HeroProps, HoverCardComponent as HoverCard, type IAlertDialogContentProps, type IAlertProps, type IBadgeProps, type IBreadcrumbLinkProps, type IButtonProps, type ICalendarProps, type ICardProps, type ICarouselProps, type IChartContainerProps, type ICheckboxProps, type IComboboxItem, type IComboboxProps, type IContainerProps, type IDataTableProps, type IDialogContentProps, type IDividerProps, type IFlexProps, type IFormActionsProps, type IFormFieldProps, type IFormLayoutProps, type IFormRowProps, type IFormSectionProps, type IGridProps, type IIconButtonProps, type IImageCardProps, type IInputOTPProps, type IInputProps, type ILinkProps, type ILoaderProps, type IMarqueeProps, type IPaginationLinkProps, type IProgressProps, type IRadioGroupItemProps, type ISectionNavProps, type ISheetContentProps, type ISkeletonProps, type ISonnerProps, type IStackProps, type ITextareaProps, IconButton, ImageCard, Input, InputOTPComponent as InputOTP, Label, Link, Loader, LogoCloud, type LogoCloudProps, Marquee, MenuComponent as Menu, MenubarComponent as Menubar, type NavAuth, NavBar, type NavBarProps, type NavBrand, type NavLink, type NavMenuItem, NavigationMenuComponent as NavigationMenu, NewsletterSignup, type NewsletterSignupProps, Pagination, PopoverComponent as Popover, type PricingFeature, PricingTable, type PricingTableProps, type PricingTier, Progress, RadioGroup, ResizableComponent as Resizable, ScrollAreaComponent as ScrollArea, Section, SectionNav, type SectionNavItem, type SectionProps, Select, SheetComponent as Sheet, SidebarComponent as Sidebar, SimplePage, type SimplePageProps, Skeleton, Slider, Stack, type Stat, StatsBar, type StatsBarProps, Switch, TableComponent as Table, TabsComponent as Tabs, Testimonial, type TestimonialItem, type TestimonialProps, Text, Textarea, type ThemeConfig, ThemeProvider, ThemeToggle, type ThemeToggleProps, Toaster, TooltipComponent as Tooltip, TwoColumnLayoutComponent as TwoColumnLayout, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, containerVariants, createTheme, dialogContentVariants, dividerVariants, flexVariants, gridVariants, iconButtonVariants, linkVariants, loaderVariants, navigationMenuTriggerStyle, sectionVariants, sheetContentVariants, sidebarMenuButtonVariants, stackVariants, useCarousel, useChart, useFormField, useSidebar, useTheme };
|
|
1232
|
+
export { AccordionComponent as Accordion, AlertComponent as Alert, AlertDialogComponent as AlertDialog, AnnouncementBanner, type AnnouncementBannerProps, AvatarComponent as Avatar, type AvatarShape, Badge, BreadcrumbComponent as Breadcrumb, Button, CTABanner, type CTABannerProps, Calendar, CardComponent as Card, CardGrid, type CardGridProps, CarouselComponent as Carousel, type CarouselApi, ChartComponent as Chart, type ChartConfig, Checkbox, CollapsibleComponent as Collapsible, type ColorTheme, ColorThemeToggle, type ColorThemeToggleProps, ComboboxComponent as Combobox, CommandComponent as Command, Container, ContextMenuComponent as ContextMenu, DataTableComponent as DataTable, DialogComponent as Dialog, Divider, DrawerComponent as Drawer, DropdownMenuComponent as DropdownMenu, FAQ, type FAQItem, type FAQProps, type Feature, FeatureSection, type FeatureSectionProps, Flex, Footer, type FooterLinkGroup, type FooterProps, FormComponent as Form, FormLayout, Grid, Hero, type HeroProps, HoverCardComponent as HoverCard, type IAlertDialogContentProps, type IAlertProps, type IBadgeProps, type IBreadcrumbLinkProps, type IButtonProps, type ICalendarProps, type ICardProps, type ICarouselProps, type IChartContainerProps, type ICheckboxProps, type IComboboxItem, type IComboboxProps, type IContainerProps, type IDataTableProps, type IDialogContentProps, type IDividerProps, type IFlexProps, type IFormActionsProps, type IFormFieldProps, type IFormLayoutProps, type IFormRowProps, type IFormSectionProps, type IGridProps, type IIconButtonProps, type IImageCardProps, type IInputOTPProps, type IInputProps, type ILinkProps, type ILoaderProps, type IMarqueeProps, type IPaginationLinkProps, type IProgressProps, type IRadioGroupItemProps, type ISectionNavProps, type ISheetContentProps, type ISkeletonProps, type ISonnerProps, type IStackProps, type ITextareaProps, IconButton, ImageCard, Input, InputOTPComponent as InputOTP, Label, Link, Loader, LogoCloud, type LogoCloudProps, Marquee, MenuComponent as Menu, MenubarComponent as Menubar, type NavAuth, NavBar, type NavBarProps, type NavBrand, type NavLink, type NavMenuItem, NavigationMenuComponent as NavigationMenu, NewsletterSignup, type NewsletterSignupProps, Pagination, PopoverComponent as Popover, type PricingFeature, PricingTable, type PricingTableProps, type PricingTier, Progress, RadioGroup, ResizableComponent as Resizable, ScrollAreaComponent as ScrollArea, Section, SectionNav, type SectionNavItem, type SectionProps, Select, SheetComponent as Sheet, SidebarComponent as Sidebar, SimplePage, type SimplePageProps, Skeleton, Slider, Stack, type Stat, StatsBar, type StatsBarProps, Switch, TableComponent as Table, TabsComponent as Tabs, Testimonial, type TestimonialItem, type TestimonialProps, Text, Textarea, type ThemeConfig, ThemeProvider, ThemeToggle, type ThemeToggleProps, Toaster, TooltipComponent as Tooltip, TwoColumnLayoutComponent as TwoColumnLayout, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, containerVariants, createTheme, dialogContentVariants, dividerVariants, flexVariants, gridVariants, iconButtonVariants, linkVariants, loaderVariants, navigationMenuTriggerStyle, sectionVariants, sheetContentVariants, sidebarMenuButtonVariants, stackVariants, useCarousel, useChart, useFormField, useSidebar, useTheme };
|