@tapizlabs/ui 0.1.6 → 0.2.3

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.ts CHANGED
@@ -67,7 +67,6 @@ declare const UserCheck: ({ size, className, style }: IconProps) => react.JSX.El
67
67
  declare const Hash: ({ size, className, style }: IconProps) => react.JSX.Element;
68
68
  declare const LogOut: ({ size, className, style }: IconProps) => react.JSX.Element;
69
69
 
70
- declare const Alert: ({ size, className, style }: IconProps) => react.JSX.Element;
71
70
  declare const Info: ({ size, className, style }: IconProps) => react.JSX.Element;
72
71
  declare const CheckCircle: ({ size, className, style }: IconProps) => react.JSX.Element;
73
72
  declare const Ban: ({ size, className, style }: IconProps) => react.JSX.Element;
@@ -175,9 +174,13 @@ declare const Icons: {
175
174
  externalLink: react.JSX.Element;
176
175
  };
177
176
 
178
- type Variant$1 = "primary" | "secondary" | "danger" | "ghost" | "success" | "warning" | "info" | "muted-primary" | "outline-primary" | "outline-secondary" | "outline-danger" | "outline-success" | "link";
177
+ interface BaseProps {
178
+ className?: string;
179
+ }
180
+
181
+ type Variant$1 = "primary" | "secondary" | "danger" | "ghost" | "success" | "warning" | "info" | "muted-primary" | "outline-primary" | "outline-secondary" | "outline-danger" | "outline-success" | "brutal" | "link";
179
182
  type Size = "xs" | "sm" | "md" | "lg" | "xl";
180
- interface ButtonProps {
183
+ interface ButtonProps extends BaseProps {
181
184
  children?: ReactNode;
182
185
  onClick?: (e: MouseEvent<HTMLButtonElement>) => void;
183
186
  disabled?: boolean;
@@ -186,7 +189,6 @@ interface ButtonProps {
186
189
  size?: Size;
187
190
  icon?: ButtonIcon;
188
191
  iconRight?: ButtonIcon;
189
- className?: string;
190
192
  type?: "button" | "submit" | "reset";
191
193
  title?: string;
192
194
  fullWidth?: boolean;
@@ -265,9 +267,8 @@ interface ToastProviderProps {
265
267
  declare function ToastProvider({ children }: ToastProviderProps): react.JSX.Element;
266
268
  declare function useToast(): ToastContextValue;
267
269
 
268
- interface FormErrorProps {
270
+ interface FormErrorProps extends BaseProps {
269
271
  message: string | null | undefined;
270
- className?: string;
271
272
  }
272
273
  declare function FormError({ message, className }: FormErrorProps): react.JSX.Element | null;
273
274
 
@@ -334,22 +335,23 @@ interface TooltipProps {
334
335
  }
335
336
  declare function Tooltip({ text, children, position, align, width, wFull }: TooltipProps): react.JSX.Element;
336
337
 
337
- interface CardProps {
338
+ type CardVariant = "surface" | "raised" | "outlined" | "brutal" | "glass";
339
+ type CardPadding = "none" | "sm" | "md" | "lg";
340
+ interface CardProps extends BaseProps {
338
341
  children: ReactNode;
339
- className?: string;
340
342
  hover?: boolean;
341
343
  style?: CSSProperties;
344
+ variant?: CardVariant;
345
+ padding?: CardPadding;
342
346
  }
343
- interface CardSectionProps {
347
+ interface CardSectionProps extends BaseProps {
344
348
  children: ReactNode;
345
- className?: string;
346
349
  }
347
- declare function Card({ children, className, hover, style }: CardProps): react.JSX.Element;
350
+ declare function Card({ children, className, hover, style, variant, padding, }: CardProps): react.JSX.Element;
348
351
  declare function CardHeader({ children, className }: CardSectionProps): react.JSX.Element;
349
352
  declare function CardBody({ children, className }: CardSectionProps): react.JSX.Element;
350
353
 
351
- interface SkeletonProps {
352
- className?: string;
354
+ interface SkeletonProps extends BaseProps {
353
355
  }
354
356
  declare function Skeleton({ className }: SkeletonProps): react.JSX.Element;
355
357
 
@@ -366,11 +368,10 @@ declare function SkeletonTable({ rows, cols }: {
366
368
  }): react.JSX.Element;
367
369
  declare function SkeletonPageHeader(): react.JSX.Element;
368
370
 
369
- type Variant = "default" | "success" | "warning" | "danger" | "muted";
370
- interface BadgeProps {
371
+ type Variant = "default" | "success" | "warning" | "danger" | "info" | "muted";
372
+ interface BadgeProps extends BaseProps {
371
373
  children: ReactNode;
372
374
  variant?: Variant;
373
- className?: string;
374
375
  }
375
376
  declare function Badge({ children, variant, className }: BadgeProps): react.JSX.Element;
376
377
 
@@ -386,32 +387,61 @@ declare function ErrorState({ title, error, }: {
386
387
  error: Error | null;
387
388
  }): react.JSX.Element;
388
389
 
389
- interface StructuredInfoBannerProps {
390
+ interface StructuredInfoBannerProps extends BaseProps {
390
391
  title: string;
391
392
  description: string;
392
393
  text?: never;
393
394
  variant?: never;
394
- className?: string;
395
395
  }
396
- interface InlineInfoBannerProps {
396
+ interface InlineInfoBannerProps extends BaseProps {
397
397
  text: string;
398
398
  variant?: "info" | "warn" | "lock";
399
- className?: string;
400
399
  title?: never;
401
400
  description?: never;
402
401
  }
403
402
  type InfoBannerProps = StructuredInfoBannerProps | InlineInfoBannerProps;
404
403
  declare function InfoBanner(props: InfoBannerProps): react.JSX.Element;
405
404
 
406
- interface PageHeaderProps {
405
+ interface PageHeaderProps extends BaseProps {
407
406
  title: string;
408
407
  subtitle?: string;
408
+ description?: ReactNode;
409
409
  action?: ReactNode;
410
+ actions?: ReactNode;
410
411
  icon?: ReactNode;
411
412
  banner?: ReactNode;
412
- className?: string;
413
+ breadcrumbs?: ReactNode;
414
+ meta?: ReactNode;
415
+ variant?: "default" | "enterprise" | "brutal";
413
416
  }
414
- declare function PageHeader({ title, subtitle, action, icon, banner, className }: PageHeaderProps): react.JSX.Element;
417
+ declare function PageHeader({ title, subtitle, description, action, actions, icon, banner, breadcrumbs, meta, className, variant, }: PageHeaderProps): react.JSX.Element;
418
+
419
+ type MetricTrendTone = "positive" | "negative" | "neutral" | "warning";
420
+ interface MetricCardProps extends BaseProps {
421
+ label: ReactNode;
422
+ value: ReactNode;
423
+ description?: ReactNode;
424
+ icon?: ReactNode;
425
+ trend?: ReactNode;
426
+ trendTone?: MetricTrendTone;
427
+ variant?: "surface" | "raised" | "brutal";
428
+ }
429
+ declare function MetricCard({ label, value, description, icon, trend, trendTone, className, variant, }: MetricCardProps): react.JSX.Element;
430
+
431
+ interface StatGridProps extends BaseProps {
432
+ children: ReactNode;
433
+ minColumnWidth?: string;
434
+ }
435
+ declare function StatGrid({ children, className, minColumnWidth }: StatGridProps): react.JSX.Element;
436
+
437
+ interface SectionCardProps extends BaseProps {
438
+ title?: ReactNode;
439
+ eyebrow?: ReactNode;
440
+ description?: ReactNode;
441
+ action?: ReactNode;
442
+ children: ReactNode;
443
+ }
444
+ declare function SectionCard({ title, eyebrow, description, action, children, className }: SectionCardProps): react.JSX.Element;
415
445
 
416
446
  interface SearchInputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
417
447
  value: string;
@@ -450,17 +480,15 @@ interface PaginationProps {
450
480
  }
451
481
  declare function Pagination({ page, totalPages, onChange, totalItems, pageSize, labels }: PaginationProps): react.JSX.Element | null;
452
482
 
453
- interface SectionTitleProps {
483
+ interface SectionTitleProps extends BaseProps {
454
484
  children: ReactNode;
455
- className?: string;
456
485
  }
457
486
  declare function SectionTitle({ children, className }: SectionTitleProps): react.JSX.Element;
458
487
 
459
- type StatusBadgeVariant = "default" | "active" | "inactive" | "warning" | "success" | "danger" | "pending";
460
- interface StatusBadgeProps {
488
+ type StatusBadgeVariant = "default" | "active" | "inactive" | "warning" | "success" | "danger" | "info" | "pending";
489
+ interface StatusBadgeProps extends BaseProps {
461
490
  label: ReactNode;
462
491
  variant?: StatusBadgeVariant;
463
- className?: string;
464
492
  }
465
493
  declare function StatusBadge({ label, variant, className }: StatusBadgeProps): react.JSX.Element;
466
494
 
@@ -525,6 +553,8 @@ interface ServerSort {
525
553
  onSort: (field: string) => void;
526
554
  }
527
555
 
556
+ type DataTableDensity = "compact" | "comfortable" | "spacious";
557
+ type DataTableVariant = "default" | "enterprise" | "brutal";
528
558
  interface DataTableProps<T> {
529
559
  data: T[];
530
560
  columns: Column<T>[];
@@ -560,6 +590,15 @@ interface DataTableProps<T> {
560
590
  * each row to a card via this function (keyed by `rowKey(row)`).
561
591
  */
562
592
  mobileCard?: (row: T) => ReactNode;
593
+ /** Visual density of header and cells. Defaults to comfortable. */
594
+ density?: DataTableDensity;
595
+ /** Enterprise adds stronger surface treatment; brutal adds 2px border + hard shadow. */
596
+ variant?: DataTableVariant;
597
+ /** Makes the table header sticky inside the scroll container. */
598
+ stickyHeader?: boolean;
599
+ /** Applies token-based zebra striping. Defaults to true. */
600
+ striped?: boolean;
601
+ className?: string;
563
602
  }
564
603
  /**
565
604
  * Generic, accessible, client-sortable table.
@@ -572,6 +611,818 @@ interface DataTableProps<T> {
572
611
  * - Optional `rowActions`, `serverSort`, `footer`, and `mobileCard` props are
573
612
  * all additive — existing usages continue to work with zero changes.
574
613
  */
575
- declare function DataTable<T>({ data, columns, rowKey, isLoading, emptyState, onRowClick, loadingRows, rowActions, serverSort, footer, mobileCard, }: DataTableProps<T>): react.JSX.Element;
614
+ declare function DataTable<T>({ data, columns, rowKey, isLoading, emptyState, onRowClick, loadingRows, rowActions, serverSort, footer, mobileCard, density, variant, stickyHeader, striped, className, }: DataTableProps<T>): react.JSX.Element;
615
+
616
+ interface MarketingShellProps extends BaseProps {
617
+ children: ReactNode;
618
+ grid?: boolean;
619
+ noise?: boolean;
620
+ }
621
+ declare function MarketingShell({ children, className, grid, noise }: MarketingShellProps): react.JSX.Element;
622
+
623
+ interface HeroFrameProps extends BaseProps {
624
+ eyebrow?: ReactNode;
625
+ title: ReactNode;
626
+ description?: ReactNode;
627
+ actions?: ReactNode;
628
+ visual?: ReactNode;
629
+ meta?: ReactNode;
630
+ }
631
+ declare function HeroFrame({ eyebrow, title, description, actions, visual, meta, className }: HeroFrameProps): react.JSX.Element;
632
+
633
+ interface FeatureCardProps extends BaseProps {
634
+ title: ReactNode;
635
+ description?: ReactNode;
636
+ icon?: ReactNode;
637
+ eyebrow?: ReactNode;
638
+ children?: ReactNode;
639
+ variant?: "surface" | "brutal" | "raised";
640
+ }
641
+ declare function FeatureCard({ title, description, icon, eyebrow, children, className, variant }: FeatureCardProps): react.JSX.Element;
642
+
643
+ interface FeatureGridProps extends BaseProps {
644
+ children: ReactNode;
645
+ }
646
+ declare function FeatureGrid({ children, className }: FeatureGridProps): react.JSX.Element;
647
+
648
+ interface CTASectionProps extends BaseProps {
649
+ eyebrow?: ReactNode;
650
+ title: ReactNode;
651
+ description?: ReactNode;
652
+ actions?: ReactNode;
653
+ }
654
+ declare function CTASection({ eyebrow, title, description, actions, className }: CTASectionProps): react.JSX.Element;
655
+
656
+ interface MockupFrameProps extends BaseProps {
657
+ children: ReactNode;
658
+ title?: ReactNode;
659
+ toolbar?: ReactNode;
660
+ }
661
+ declare function MockupFrame({ children, title, toolbar, className }: MockupFrameProps): react.JSX.Element;
662
+
663
+ interface ComparisonTableRow {
664
+ feature: ReactNode;
665
+ included: ReactNode;
666
+ alternative?: ReactNode;
667
+ }
668
+ interface ComparisonTableProps extends BaseProps {
669
+ rows: ComparisonTableRow[];
670
+ featureHeader?: ReactNode;
671
+ includedHeader?: ReactNode;
672
+ alternativeHeader?: ReactNode;
673
+ }
674
+ declare function ComparisonTable({ rows, featureHeader, includedHeader, alternativeHeader, className }: ComparisonTableProps): react.JSX.Element;
675
+
676
+ interface AppShellProps extends BaseProps {
677
+ sidebar?: ReactNode;
678
+ topbar?: ReactNode;
679
+ children: ReactNode;
680
+ aside?: ReactNode;
681
+ contentClassName?: string;
682
+ variant?: "default" | "grid" | "noise";
683
+ }
684
+ declare function AppShell({ sidebar, topbar, children, aside, className, contentClassName, variant }: AppShellProps): react.JSX.Element;
685
+
686
+ interface SplitPaneProps extends BaseProps {
687
+ primary: ReactNode;
688
+ secondary: ReactNode;
689
+ ratio?: "50/50" | "60/40" | "70/30";
690
+ reverseOnMobile?: boolean;
691
+ }
692
+ declare function SplitPane({ primary, secondary, ratio, reverseOnMobile, className }: SplitPaneProps): react.JSX.Element;
693
+
694
+ interface StackProps extends BaseProps {
695
+ children: ReactNode;
696
+ gap?: "xs" | "sm" | "md" | "lg" | "xl";
697
+ direction?: "vertical" | "horizontal";
698
+ align?: "start" | "center" | "end" | "stretch";
699
+ justify?: "start" | "center" | "between" | "end";
700
+ wrap?: boolean;
701
+ }
702
+ declare function Stack({ children, gap, direction, align, justify, wrap, className }: StackProps): react.JSX.Element;
703
+
704
+ interface ClusterProps extends BaseProps {
705
+ children: ReactNode;
706
+ gap?: "xs" | "sm" | "md" | "lg";
707
+ align?: "start" | "center" | "end";
708
+ justify?: "start" | "center" | "between" | "end";
709
+ }
710
+ declare function Cluster({ children, gap, align, justify, className }: ClusterProps): react.JSX.Element;
711
+
712
+ interface BreadcrumbItem {
713
+ label: ReactNode;
714
+ href?: string;
715
+ current?: boolean;
716
+ }
717
+ interface BreadcrumbsProps extends BaseProps {
718
+ items: BreadcrumbItem[];
719
+ separator?: ReactNode;
720
+ }
721
+ declare function Breadcrumbs({ items, separator, className }: BreadcrumbsProps): react.JSX.Element;
722
+
723
+ interface SidebarNavItem {
724
+ label: ReactNode;
725
+ href?: string;
726
+ icon?: ReactNode;
727
+ badge?: ReactNode;
728
+ active?: boolean;
729
+ disabled?: boolean;
730
+ onClick?: () => void;
731
+ }
732
+ interface SidebarNavGroup {
733
+ label?: ReactNode;
734
+ items: SidebarNavItem[];
735
+ }
736
+ interface SidebarNavProps extends BaseProps {
737
+ groups: SidebarNavGroup[];
738
+ header?: ReactNode;
739
+ footer?: ReactNode;
740
+ }
741
+ declare function SidebarNav({ groups, header, footer, className }: SidebarNavProps): react.JSX.Element;
742
+
743
+ interface TopNavLink {
744
+ label: ReactNode;
745
+ href?: string;
746
+ active?: boolean;
747
+ onClick?: () => void;
748
+ }
749
+ interface TopNavProps extends BaseProps {
750
+ brand?: ReactNode;
751
+ links?: TopNavLink[];
752
+ actions?: ReactNode;
753
+ sticky?: boolean;
754
+ }
755
+ declare function TopNav({ brand, links, actions, className, sticky }: TopNavProps): react.JSX.Element;
756
+
757
+ interface TabItem {
758
+ id: string;
759
+ label: ReactNode;
760
+ content: ReactNode;
761
+ badge?: ReactNode;
762
+ disabled?: boolean;
763
+ }
764
+ interface TabsProps extends BaseProps {
765
+ items: TabItem[];
766
+ activeId: string;
767
+ onChange?: (id: string) => void;
768
+ variant?: "line" | "boxed" | "brutal";
769
+ }
770
+ declare function Tabs({ items, activeId, onChange, className, variant }: TabsProps): react.JSX.Element;
771
+
772
+ interface AccordionItem {
773
+ id: string;
774
+ title: ReactNode;
775
+ content: ReactNode;
776
+ meta?: ReactNode;
777
+ disabled?: boolean;
778
+ }
779
+ interface AccordionProps extends BaseProps {
780
+ items: AccordionItem[];
781
+ openIds?: string[];
782
+ onToggle?: (id: string) => void;
783
+ allowMultiple?: boolean;
784
+ }
785
+ declare function Accordion({ items, openIds, onToggle, className }: AccordionProps): react.JSX.Element;
786
+
787
+ interface StepItem {
788
+ id: string;
789
+ label: ReactNode;
790
+ description?: ReactNode;
791
+ status?: "complete" | "current" | "upcoming" | "error";
792
+ }
793
+ interface StepperProps extends BaseProps {
794
+ steps: StepItem[];
795
+ orientation?: "horizontal" | "vertical";
796
+ }
797
+ declare function Stepper({ steps, orientation, className }: StepperProps): react.JSX.Element;
798
+
799
+ interface DrawerProps extends BaseProps {
800
+ open: boolean;
801
+ onClose?: () => void;
802
+ title?: ReactNode;
803
+ description?: ReactNode;
804
+ children: ReactNode;
805
+ footer?: ReactNode;
806
+ side?: "left" | "right";
807
+ }
808
+ declare function Drawer({ open, onClose, title, description, children, footer, side, className }: DrawerProps): react.JSX.Element | null;
809
+
810
+ interface PopoverProps extends BaseProps {
811
+ trigger: ReactNode;
812
+ children: ReactNode;
813
+ open?: boolean;
814
+ align?: "start" | "end";
815
+ }
816
+ declare function Popover({ trigger, children, open, align, className }: PopoverProps): react.JSX.Element;
817
+
818
+ interface CommandItem {
819
+ id: string;
820
+ label: ReactNode;
821
+ description?: ReactNode;
822
+ icon?: ReactNode;
823
+ shortcut?: ReactNode;
824
+ disabled?: boolean;
825
+ onSelect?: () => void;
826
+ }
827
+ interface CommandGroup {
828
+ label?: ReactNode;
829
+ items: CommandItem[];
830
+ }
831
+ interface CommandMenuProps {
832
+ open: boolean;
833
+ onClose?: () => void;
834
+ query?: string;
835
+ onQueryChange?: (value: string) => void;
836
+ groups: CommandGroup[];
837
+ placeholder?: string;
838
+ empty?: ReactNode;
839
+ }
840
+ declare function CommandMenu({ open, onClose, query, onQueryChange, groups, placeholder, empty }: CommandMenuProps): react.JSX.Element | null;
841
+
842
+ interface FormFieldProps extends BaseProps {
843
+ label?: ReactNode;
844
+ hint?: ReactNode;
845
+ error?: ReactNode;
846
+ required?: boolean;
847
+ htmlFor?: string;
848
+ children: ReactNode;
849
+ }
850
+ declare function FormField({ label, hint, error, required, htmlFor, children, className }: FormFieldProps): react.JSX.Element;
851
+
852
+ interface SwitchProps extends BaseProps {
853
+ checked?: boolean;
854
+ onChange?: (checked: boolean) => void;
855
+ disabled?: boolean;
856
+ label?: ReactNode;
857
+ description?: ReactNode;
858
+ }
859
+ declare function Switch({ checked, onChange, disabled, label, description, className }: SwitchProps): react.JSX.Element;
860
+
861
+ interface ToggleOption {
862
+ value: string;
863
+ label: ReactNode;
864
+ disabled?: boolean;
865
+ }
866
+ interface ToggleGroupProps extends BaseProps {
867
+ options: ToggleOption[];
868
+ value?: string;
869
+ onChange?: (value: string) => void;
870
+ fullWidth?: boolean;
871
+ }
872
+ declare function ToggleGroup({ options, value, onChange, className, fullWidth }: ToggleGroupProps): react.JSX.Element;
873
+
874
+ interface InputGroupProps extends BaseProps {
875
+ prefix?: ReactNode;
876
+ suffix?: ReactNode;
877
+ children: ReactNode;
878
+ }
879
+ declare function InputGroup({ prefix, suffix, children, className }: InputGroupProps): react.JSX.Element;
880
+
881
+ type AlertTone = "info" | "success" | "warning" | "danger" | "neutral";
882
+ interface AlertProps extends BaseProps {
883
+ tone?: AlertTone;
884
+ title?: ReactNode;
885
+ children?: ReactNode;
886
+ icon?: ReactNode;
887
+ actions?: ReactNode;
888
+ }
889
+ declare function Alert({ tone, title, children, icon, actions, className }: AlertProps): react.JSX.Element;
890
+
891
+ interface ProgressProps extends BaseProps {
892
+ value: number;
893
+ max?: number;
894
+ label?: string;
895
+ showValue?: boolean;
896
+ tone?: "accent" | "success" | "warning" | "danger";
897
+ }
898
+ declare function Progress({ value, max, label, showValue, tone, className }: ProgressProps): react.JSX.Element;
899
+
900
+ interface AvatarProps extends BaseProps {
901
+ src?: string;
902
+ name?: string;
903
+ size?: "xs" | "sm" | "md" | "lg";
904
+ }
905
+ declare function Avatar({ src, name, size, className }: AvatarProps): react.JSX.Element;
906
+
907
+ interface KbdProps extends BaseProps {
908
+ children: ReactNode;
909
+ }
910
+ declare function Kbd({ children, className }: KbdProps): react.JSX.Element;
911
+
912
+ interface TimelineItem {
913
+ id: string;
914
+ title: ReactNode;
915
+ description?: ReactNode;
916
+ time?: ReactNode;
917
+ icon?: ReactNode;
918
+ tone?: "neutral" | "info" | "success" | "warning" | "danger";
919
+ }
920
+ interface TimelineProps extends BaseProps {
921
+ items: TimelineItem[];
922
+ }
923
+ declare function Timeline({ items, className }: TimelineProps): react.JSX.Element;
924
+
925
+ interface KeyValueItem {
926
+ keyLabel: ReactNode;
927
+ value: ReactNode;
928
+ description?: ReactNode;
929
+ }
930
+ interface KeyValueListProps extends BaseProps {
931
+ items: KeyValueItem[];
932
+ density?: "compact" | "normal";
933
+ }
934
+ declare function KeyValueList({ items, className, density }: KeyValueListProps): react.JSX.Element;
935
+
936
+ interface CodeBlockProps extends BaseProps {
937
+ children: ReactNode;
938
+ language?: string;
939
+ title?: ReactNode;
940
+ actions?: ReactNode;
941
+ }
942
+ declare function CodeBlock({ children, language, title, actions, className }: CodeBlockProps): react.JSX.Element;
943
+
944
+ interface LogoCloudItem {
945
+ name: string;
946
+ logo?: ReactNode;
947
+ }
948
+ interface LogoCloudProps extends BaseProps {
949
+ title?: ReactNode;
950
+ items: LogoCloudItem[];
951
+ }
952
+ declare function LogoCloud({ title, items, className }: LogoCloudProps): react.JSX.Element;
953
+
954
+ interface TestimonialCardProps extends BaseProps {
955
+ quote: ReactNode;
956
+ author: string;
957
+ role?: ReactNode;
958
+ avatarSrc?: string;
959
+ variant?: "surface" | "brutal";
960
+ }
961
+ declare function TestimonialCard({ quote, author, role, avatarSrc, className, variant }: TestimonialCardProps): react.JSX.Element;
962
+
963
+ interface PricingCardProps extends BaseProps {
964
+ name: ReactNode;
965
+ price: ReactNode;
966
+ description?: ReactNode;
967
+ features?: ReactNode[];
968
+ cta?: ReactNode;
969
+ highlighted?: boolean;
970
+ }
971
+ declare function PricingCard({ name, price, description, features, cta, highlighted, className }: PricingCardProps): react.JSX.Element;
972
+
973
+ interface StatsBandItem {
974
+ value: ReactNode;
975
+ label: ReactNode;
976
+ description?: ReactNode;
977
+ }
978
+ interface StatsBandProps extends BaseProps {
979
+ items: StatsBandItem[];
980
+ }
981
+ declare function StatsBand({ items, className }: StatsBandProps): react.JSX.Element;
982
+
983
+ type TapizFrameworkPreset = "enterprise" | "brutal" | "dashboard" | "marketing" | "compact";
984
+ interface TapizPresetDefinition {
985
+ shell: string;
986
+ card: string;
987
+ button: "primary" | "secondary" | "brutal";
988
+ density: "compact" | "comfortable" | "spacious";
989
+ }
990
+ declare const tapizFrameworkPresets: Record<TapizFrameworkPreset, TapizPresetDefinition>;
991
+
992
+ type ContainerSize = "sm" | "md" | "lg" | "xl" | "full";
993
+ interface ContainerProps extends BaseProps {
994
+ children: ReactNode;
995
+ size?: ContainerSize;
996
+ padded?: boolean;
997
+ style?: CSSProperties;
998
+ }
999
+ declare function Container({ children, size, padded, className, style }: ContainerProps): react.JSX.Element;
1000
+
1001
+ type SurfaceVariant = "canvas" | "surface" | "raised" | "muted" | "brutal" | "inverse";
1002
+ type SurfacePadding = "none" | "sm" | "md" | "lg" | "xl";
1003
+ interface SurfaceProps extends BaseProps {
1004
+ children: ReactNode;
1005
+ variant?: SurfaceVariant;
1006
+ padding?: SurfacePadding;
1007
+ bordered?: boolean;
1008
+ style?: CSSProperties;
1009
+ }
1010
+ declare function Surface({ children, variant, padding, bordered, className, style }: SurfaceProps): react.JSX.Element;
1011
+
1012
+ interface DividerProps extends BaseProps {
1013
+ orientation?: "horizontal" | "vertical";
1014
+ label?: string;
1015
+ }
1016
+ declare function Divider({ orientation, label, className }: DividerProps): react.JSX.Element;
1017
+
1018
+ interface ResponsiveGridProps extends BaseProps {
1019
+ children: ReactNode;
1020
+ min?: string;
1021
+ gap?: "sm" | "md" | "lg" | "xl";
1022
+ style?: CSSProperties;
1023
+ }
1024
+ declare function ResponsiveGrid({ children, min, gap, className, style }: ResponsiveGridProps): react.JSX.Element;
1025
+
1026
+ interface SparklineProps extends BaseProps {
1027
+ values: number[];
1028
+ width?: number;
1029
+ height?: number;
1030
+ label?: string;
1031
+ style?: CSSProperties;
1032
+ }
1033
+ declare function Sparkline({ values, width, height, label, className, style }: SparklineProps): react.JSX.Element;
1034
+
1035
+ interface BarListItem {
1036
+ label: ReactNode;
1037
+ value: number;
1038
+ detail?: ReactNode;
1039
+ }
1040
+ interface BarListProps extends BaseProps {
1041
+ items: BarListItem[];
1042
+ max?: number;
1043
+ valueFormatter?: (value: number) => ReactNode;
1044
+ }
1045
+ declare function BarList({ items, max, valueFormatter, className }: BarListProps): react.JSX.Element;
1046
+
1047
+ interface DonutMetricProps extends BaseProps {
1048
+ value: number;
1049
+ max?: number;
1050
+ label?: ReactNode;
1051
+ caption?: ReactNode;
1052
+ size?: number;
1053
+ }
1054
+ declare function DonutMetric({ value, max, label, caption, size, className }: DonutMetricProps): react.JSX.Element;
1055
+
1056
+ interface FilterChipProps extends BaseProps {
1057
+ children: ReactNode;
1058
+ active?: boolean;
1059
+ onRemove?: () => void;
1060
+ }
1061
+ declare function FilterChip({ children, active, onRemove, className }: FilterChipProps): react.JSX.Element;
1062
+
1063
+ interface DataToolbarProps extends BaseProps {
1064
+ title?: ReactNode;
1065
+ description?: ReactNode;
1066
+ search?: ReactNode;
1067
+ filters?: ReactNode;
1068
+ actions?: ReactNode;
1069
+ }
1070
+ declare function DataToolbar({ title, description, search, filters, actions, className }: DataToolbarProps): react.JSX.Element;
1071
+
1072
+ interface ResourceCardProps extends BaseProps {
1073
+ title: ReactNode;
1074
+ description?: ReactNode;
1075
+ eyebrow?: ReactNode;
1076
+ icon?: ReactNode;
1077
+ meta?: ReactNode;
1078
+ status?: ReactNode;
1079
+ actions?: ReactNode;
1080
+ href?: string;
1081
+ }
1082
+ declare function ResourceCard({ title, description, eyebrow, icon, meta, status, actions, href, className }: ResourceCardProps): react.JSX.Element;
1083
+
1084
+ type IntegrationStatus = "connected" | "disconnected" | "syncing" | "error";
1085
+ interface IntegrationCardProps extends BaseProps {
1086
+ name: ReactNode;
1087
+ description?: ReactNode;
1088
+ logo?: ReactNode;
1089
+ status?: IntegrationStatus;
1090
+ lastSync?: ReactNode;
1091
+ actions?: ReactNode;
1092
+ }
1093
+ declare function IntegrationCard({ name, description, logo, status, lastSync, actions, className }: IntegrationCardProps): react.JSX.Element;
1094
+
1095
+ type HealthTone = "operational" | "degraded" | "outage" | "unknown";
1096
+ interface HealthIndicatorProps extends BaseProps {
1097
+ tone?: HealthTone;
1098
+ label?: ReactNode;
1099
+ detail?: ReactNode;
1100
+ }
1101
+ declare function HealthIndicator({ tone, label, detail, className }: HealthIndicatorProps): react.JSX.Element;
1102
+
1103
+ interface AuditLogItem {
1104
+ actor: string;
1105
+ action: ReactNode;
1106
+ timestamp: ReactNode;
1107
+ detail?: ReactNode;
1108
+ initials?: string;
1109
+ }
1110
+ interface AuditLogProps extends BaseProps {
1111
+ items: AuditLogItem[];
1112
+ }
1113
+ declare function AuditLog({ items, className }: AuditLogProps): react.JSX.Element;
1114
+
1115
+ interface KanbanCardItem {
1116
+ id: string;
1117
+ title: ReactNode;
1118
+ description?: ReactNode;
1119
+ meta?: ReactNode;
1120
+ tone?: "default" | "accent" | "success" | "warning" | "danger";
1121
+ }
1122
+ interface KanbanColumn {
1123
+ id: string;
1124
+ title: ReactNode;
1125
+ description?: ReactNode;
1126
+ items: KanbanCardItem[];
1127
+ }
1128
+ interface KanbanBoardProps extends BaseProps {
1129
+ columns: KanbanColumn[];
1130
+ }
1131
+ declare function KanbanBoard({ columns, className }: KanbanBoardProps): react.JSX.Element;
1132
+
1133
+ interface AccessMatrixRole {
1134
+ key: string;
1135
+ label: ReactNode;
1136
+ }
1137
+ interface AccessMatrixPermission {
1138
+ key: string;
1139
+ label: ReactNode;
1140
+ description?: ReactNode;
1141
+ roles: Record<string, boolean>;
1142
+ }
1143
+ interface AccessMatrixProps extends BaseProps {
1144
+ roles: AccessMatrixRole[];
1145
+ permissions: AccessMatrixPermission[];
1146
+ }
1147
+ declare function AccessMatrix({ roles, permissions, className }: AccessMatrixProps): react.JSX.Element;
1148
+
1149
+ interface CalendarGridDay {
1150
+ date: ReactNode;
1151
+ label?: ReactNode;
1152
+ muted?: boolean;
1153
+ selected?: boolean;
1154
+ events?: ReactNode[];
1155
+ }
1156
+ interface CalendarGridProps extends BaseProps {
1157
+ days: CalendarGridDay[];
1158
+ weekdays?: ReactNode[];
1159
+ }
1160
+ declare function CalendarGrid({ days, weekdays, className }: CalendarGridProps): react.JSX.Element;
1161
+
1162
+ interface SliderProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
1163
+ label?: string;
1164
+ valueLabel?: string;
1165
+ }
1166
+ declare function Slider({ label, valueLabel, className, ...props }: SliderProps): react.JSX.Element;
1167
+
1168
+ interface FileDropzoneProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "title"> {
1169
+ title?: ReactNode;
1170
+ description?: ReactNode;
1171
+ actionLabel?: ReactNode;
1172
+ }
1173
+ declare function FileDropzone({ title, description, actionLabel, className, ...props }: FileDropzoneProps): react.JSX.Element;
1174
+
1175
+ interface PasswordInputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
1176
+ revealLabel?: ReactNode;
1177
+ }
1178
+ declare function PasswordInput({ revealLabel, className, ...props }: PasswordInputProps): react.JSX.Element;
1179
+
1180
+ interface TextareaCounterProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
1181
+ maxLength: number;
1182
+ value?: string;
1183
+ }
1184
+ declare function TextareaCounter({ maxLength, value, className, ...props }: TextareaCounterProps): react.JSX.Element;
1185
+
1186
+ type CalloutTone = "info" | "success" | "warning" | "danger" | "neutral";
1187
+ interface CalloutProps extends BaseProps {
1188
+ title?: ReactNode;
1189
+ children?: ReactNode;
1190
+ tone?: CalloutTone;
1191
+ icon?: ReactNode;
1192
+ actions?: ReactNode;
1193
+ }
1194
+ declare function Callout({ title, children, tone, icon, actions, className }: CalloutProps): react.JSX.Element;
1195
+
1196
+ interface LoadingOverlayProps extends BaseProps {
1197
+ visible?: boolean;
1198
+ label?: ReactNode;
1199
+ children: ReactNode;
1200
+ }
1201
+ declare function LoadingOverlay({ visible, label, children, className }: LoadingOverlayProps): react.JSX.Element;
1202
+
1203
+ interface NotificationItem {
1204
+ id: string;
1205
+ title: ReactNode;
1206
+ description?: ReactNode;
1207
+ time?: ReactNode;
1208
+ unread?: boolean;
1209
+ action?: ReactNode;
1210
+ }
1211
+ interface NotificationListProps extends BaseProps {
1212
+ items: NotificationItem[];
1213
+ }
1214
+ declare function NotificationList({ items, className }: NotificationListProps): react.JSX.Element;
1215
+
1216
+ interface MasonryGridProps extends BaseProps {
1217
+ children: ReactNode;
1218
+ columns?: 2 | 3 | 4;
1219
+ gap?: "sm" | "md" | "lg";
1220
+ style?: CSSProperties;
1221
+ }
1222
+ declare function MasonryGrid({ children, columns, gap, className, style }: MasonryGridProps): react.JSX.Element;
1223
+
1224
+ interface PageRailItem {
1225
+ label: ReactNode;
1226
+ href?: string;
1227
+ active?: boolean;
1228
+ meta?: ReactNode;
1229
+ }
1230
+ interface PageRailProps extends BaseProps {
1231
+ title?: ReactNode;
1232
+ items: PageRailItem[];
1233
+ actions?: ReactNode;
1234
+ style?: CSSProperties;
1235
+ }
1236
+ declare function PageRail({ title, items, actions, className, style }: PageRailProps): react.JSX.Element;
1237
+
1238
+ interface StickyBarProps extends BaseProps {
1239
+ children: ReactNode;
1240
+ position?: "top" | "bottom";
1241
+ style?: CSSProperties;
1242
+ }
1243
+ declare function StickyBar({ children, position, className, style }: StickyBarProps): react.JSX.Element;
1244
+
1245
+ interface ComboboxOption {
1246
+ value: string;
1247
+ label: ReactNode;
1248
+ description?: ReactNode;
1249
+ }
1250
+ interface ComboboxProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, "children"> {
1251
+ options: ComboboxOption[];
1252
+ placeholder?: string;
1253
+ invalid?: boolean;
1254
+ }
1255
+ declare function Combobox({ options, placeholder, invalid, className, ...props }: ComboboxProps): react.JSX.Element;
1256
+
1257
+ interface DateRangePickerProps extends BaseProps {
1258
+ startLabel?: string;
1259
+ endLabel?: string;
1260
+ startProps?: InputHTMLAttributes<HTMLInputElement>;
1261
+ endProps?: InputHTMLAttributes<HTMLInputElement>;
1262
+ }
1263
+ declare function DateRangePicker({ startLabel, endLabel, startProps, endProps, className }: DateRangePickerProps): react.JSX.Element;
1264
+
1265
+ interface ColorSwatchOption {
1266
+ value: string;
1267
+ label: ReactNode;
1268
+ color: string;
1269
+ }
1270
+ interface ColorSwatchPickerProps extends BaseProps {
1271
+ options: ColorSwatchOption[];
1272
+ value?: string;
1273
+ onChange?: (value: string) => void;
1274
+ }
1275
+ declare function ColorSwatchPicker({ options, value, onChange, className }: ColorSwatchPickerProps): react.JSX.Element;
1276
+
1277
+ interface RatingInputProps extends BaseProps {
1278
+ value?: number;
1279
+ max?: number;
1280
+ icon?: ReactNode;
1281
+ onChange?: (value: number) => void;
1282
+ label?: string;
1283
+ }
1284
+ declare function RatingInput({ value, max, icon, onChange, label, className }: RatingInputProps): react.JSX.Element;
1285
+
1286
+ interface ScoreRingProps extends BaseProps {
1287
+ value: number;
1288
+ max?: number;
1289
+ label?: ReactNode;
1290
+ size?: number;
1291
+ }
1292
+ declare function ScoreRing({ value, max, label, size, className }: ScoreRingProps): react.JSX.Element;
1293
+
1294
+ interface HeatmapCell {
1295
+ value: number;
1296
+ label?: ReactNode;
1297
+ title?: string;
1298
+ }
1299
+ interface HeatmapGridProps extends BaseProps {
1300
+ cells: HeatmapCell[];
1301
+ columns?: number;
1302
+ max?: number;
1303
+ }
1304
+ declare function HeatmapGrid({ cells, columns, max, className }: HeatmapGridProps): react.JSX.Element;
1305
+
1306
+ interface FunnelStep {
1307
+ label: ReactNode;
1308
+ value: number;
1309
+ meta?: ReactNode;
1310
+ }
1311
+ interface FunnelChartProps extends BaseProps {
1312
+ steps: FunnelStep[];
1313
+ }
1314
+ declare function FunnelChart({ steps, className }: FunnelChartProps): react.JSX.Element;
1315
+
1316
+ interface ComparisonMeterProps extends BaseProps {
1317
+ leftLabel: ReactNode;
1318
+ rightLabel: ReactNode;
1319
+ value: number;
1320
+ }
1321
+ declare function ComparisonMeter({ leftLabel, rightLabel, value, className }: ComparisonMeterProps): react.JSX.Element;
1322
+
1323
+ interface ActivityFeedItem {
1324
+ actor: string;
1325
+ action: ReactNode;
1326
+ time?: ReactNode;
1327
+ avatarUrl?: string;
1328
+ meta?: ReactNode;
1329
+ }
1330
+ interface ActivityFeedProps extends BaseProps {
1331
+ items: ActivityFeedItem[];
1332
+ }
1333
+ declare function ActivityFeed({ items, className }: ActivityFeedProps): react.JSX.Element;
1334
+
1335
+ interface InboxItem {
1336
+ title: ReactNode;
1337
+ sender?: ReactNode;
1338
+ snippet?: ReactNode;
1339
+ time?: ReactNode;
1340
+ unread?: boolean;
1341
+ tag?: ReactNode;
1342
+ }
1343
+ interface InboxListProps extends BaseProps {
1344
+ items: InboxItem[];
1345
+ }
1346
+ declare function InboxList({ items, className }: InboxListProps): react.JSX.Element;
1347
+
1348
+ interface ApprovalItem {
1349
+ title: ReactNode;
1350
+ requester?: ReactNode;
1351
+ description?: ReactNode;
1352
+ priority?: "low" | "medium" | "high";
1353
+ }
1354
+ interface ApprovalQueueProps extends BaseProps {
1355
+ items: ApprovalItem[];
1356
+ onApprove?: (index: number) => void;
1357
+ onReject?: (index: number) => void;
1358
+ }
1359
+ declare function ApprovalQueue({ items, onApprove, onReject, className }: ApprovalQueueProps): react.JSX.Element;
1360
+
1361
+ interface SLAStatusProps extends BaseProps {
1362
+ label: ReactNode;
1363
+ value: number;
1364
+ target?: number;
1365
+ }
1366
+ declare function SLAStatus({ label, value, target, className }: SLAStatusProps): react.JSX.Element;
1367
+
1368
+ interface FeatureFlag {
1369
+ key: string;
1370
+ name: ReactNode;
1371
+ description?: ReactNode;
1372
+ enabled?: boolean;
1373
+ rollout?: ReactNode;
1374
+ }
1375
+ interface FeatureFlagTableProps extends BaseProps {
1376
+ flags: FeatureFlag[];
1377
+ onToggle?: (key: string, enabled: boolean) => void;
1378
+ }
1379
+ declare function FeatureFlagTable({ flags, onToggle, className }: FeatureFlagTableProps): react.JSX.Element;
1380
+
1381
+ interface PlanUsageItem {
1382
+ label: ReactNode;
1383
+ used: number;
1384
+ limit: number;
1385
+ }
1386
+ interface PlanUsageProps extends BaseProps {
1387
+ title?: ReactNode;
1388
+ items: PlanUsageItem[];
1389
+ }
1390
+ declare function PlanUsage({ title, items, className }: PlanUsageProps): react.JSX.Element;
1391
+
1392
+ interface AnnouncementBarProps extends BaseProps {
1393
+ children: ReactNode;
1394
+ action?: ReactNode;
1395
+ }
1396
+ declare function AnnouncementBar({ children, action, className }: AnnouncementBarProps): react.JSX.Element;
1397
+
1398
+ interface FAQItem {
1399
+ question: ReactNode;
1400
+ answer: ReactNode;
1401
+ }
1402
+ interface FAQSectionProps extends BaseProps {
1403
+ title?: ReactNode;
1404
+ description?: ReactNode;
1405
+ items: FAQItem[];
1406
+ }
1407
+ declare function FAQSection({ title, description, items, className }: FAQSectionProps): react.JSX.Element;
1408
+
1409
+ interface RoadmapItem {
1410
+ title: ReactNode;
1411
+ description?: ReactNode;
1412
+ status?: ReactNode;
1413
+ quarter?: ReactNode;
1414
+ }
1415
+ interface RoadmapListProps extends BaseProps {
1416
+ items: RoadmapItem[];
1417
+ }
1418
+ declare function RoadmapList({ items, className }: RoadmapListProps): react.JSX.Element;
1419
+
1420
+ type InlineStatusTone = "neutral" | "success" | "warning" | "danger" | "info";
1421
+ interface InlineStatusProps extends BaseProps {
1422
+ tone?: InlineStatusTone;
1423
+ children: ReactNode;
1424
+ pulse?: boolean;
1425
+ }
1426
+ declare function InlineStatus({ tone, children, pulse, className }: InlineStatusProps): react.JSX.Element;
576
1427
 
577
- export { ActionMenu, type ActionMenuItem, type ActionMenuProps, Activity, ActivityMenu, Alert, AppleIcon, ArrowLeft, ArrowRight, Badge, Ban, BarChart, BaseModal, type BaseModalProps, Bell, Book, Button, type ButtonProps, Calendar, CalendarMonth, CalendarWeek, Card, CardBody, CardHeader, type CardProps, type CardSectionProps, Check, CheckCircle, CheckSquare, Checkbox, type CheckboxProps, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clipboard, Clock, type Column, type ColumnAlign, Compare, ConfirmDialog, type ConfirmDialogProps, Copy, Cpu, CreditCard, DataTable, type DataTableProps, Database, DefaultErrorFallback, Download, Edit, EmptyState, type EmptyStateProps, ErrorBoundary, ErrorState, ExternalLink, Eye, EyeOff, Faculty, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, FileText, FileUpload, FingerprintIcon, FormError, type FormErrorProps, FormIcon, FormulaIcon, Gear, Globe, GooglePlayIcon, GraduationCap, Grid, GridBg, HardDrive, Hash, HelpCircle, History, Home, Icons, Image, Info, InfoBanner, type InfoBannerProps, Input, type InputProps, Intersect, Layers, LockIcon, LogOut, LogoMark, Mail, Megaphone, Menu, Monitor, Moon, NavAnalytics, NavQrAttendance, NavScoresheet, NavSecurity, NumberIcon, OfficeHours, PageHeader, type PageHeaderProps, PageSpinner, Pagination, type PaginationLabels, type PaginationProps, Pdf, Plus, Printer, QrCode, RadioButton, type RadioButtonProps, Refresh, RefreshCw, Repeat, Report, RotateCcw, Scan, Search, SearchInput, type SearchInputProps, SectionIcons, SectionTitle, type SectionTitleProps, Select, type SelectProps, Server, type ServerSort, Shield, Skeleton, SkeletonBanner, SkeletonCard, SkeletonKpiCard, SkeletonPageHeader, type SkeletonProps, SkeletonTable, Smartphone, type SortDirection, type SortState, Spinner, type SpinnerProps, Spotlight, Star, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, Sun, Table, Tablet, TextIcon, Textarea, type TextareaProps, Toast, type ToastProps, ToastProvider, type ToastProviderProps, type ToastState, Tooltip, type TooltipProps, Trash, Trophy, TwoFAIcon, University, User, UserCheck, UserCog, UserMinus, UserPlus, Users, X, Zap, useToast };
1428
+ export { AccessMatrix, type AccessMatrixPermission, type AccessMatrixProps, type AccessMatrixRole, Accordion, type AccordionItem, type AccordionProps, ActionMenu, type ActionMenuItem, type ActionMenuProps, Activity, ActivityFeed, type ActivityFeedItem, type ActivityFeedProps, ActivityMenu, Alert, type AlertProps, type AlertTone, AnnouncementBar, type AnnouncementBarProps, AppShell, type AppShellProps, AppleIcon, type ApprovalItem, ApprovalQueue, type ApprovalQueueProps, ArrowLeft, ArrowRight, AuditLog, type AuditLogItem, type AuditLogProps, Avatar, type AvatarProps, Badge, Ban, BarChart, BarList, type BarListItem, type BarListProps, BaseModal, type BaseModalProps, type BaseProps, Bell, Book, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CTASection, type CTASectionProps, Calendar, CalendarGrid, type CalendarGridDay, type CalendarGridProps, CalendarMonth, CalendarWeek, Callout, type CalloutProps, type CalloutTone, Card, CardBody, CardHeader, type CardPadding, type CardProps, type CardSectionProps, type CardVariant, Check, CheckCircle, CheckSquare, Checkbox, type CheckboxProps, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clipboard, Clock, Cluster, type ClusterProps, CodeBlock, type CodeBlockProps, type ColorSwatchOption, ColorSwatchPicker, type ColorSwatchPickerProps, type Column, type ColumnAlign, Combobox, type ComboboxOption, type ComboboxProps, type CommandGroup, type CommandItem, CommandMenu, type CommandMenuProps, Compare, ComparisonMeter, type ComparisonMeterProps, ComparisonTable, type ComparisonTableProps, type ComparisonTableRow, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, type ContainerSize, Copy, Cpu, CreditCard, DataTable, type DataTableDensity, type DataTableProps, type DataTableVariant, DataToolbar, type DataToolbarProps, Database, DateRangePicker, type DateRangePickerProps, DefaultErrorFallback, Divider, type DividerProps, DonutMetric, type DonutMetricProps, Download, Drawer, type DrawerProps, Edit, EmptyState, type EmptyStateProps, ErrorBoundary, ErrorState, ExternalLink, Eye, EyeOff, type FAQItem, FAQSection, type FAQSectionProps, Faculty, FeatureCard, type FeatureCardProps, type FeatureFlag, FeatureFlagTable, type FeatureFlagTableProps, FeatureGrid, type FeatureGridProps, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, FileDropzone, type FileDropzoneProps, FileText, FileUpload, FilterChip, type FilterChipProps, FingerprintIcon, FormError, type FormErrorProps, FormField, type FormFieldProps, FormIcon, FormulaIcon, FunnelChart, type FunnelChartProps, type FunnelStep, Gear, Globe, GooglePlayIcon, GraduationCap, Grid, GridBg, HardDrive, Hash, HealthIndicator, type HealthIndicatorProps, type HealthTone, type HeatmapCell, HeatmapGrid, type HeatmapGridProps, HelpCircle, HeroFrame, type HeroFrameProps, History, Home, Icons, Image, type InboxItem, InboxList, type InboxListProps, Info, InfoBanner, type InfoBannerProps, InlineStatus, type InlineStatusProps, type InlineStatusTone, Input, InputGroup, type InputGroupProps, type InputProps, IntegrationCard, type IntegrationCardProps, type IntegrationStatus, Intersect, KanbanBoard, type KanbanBoardProps, type KanbanCardItem, type KanbanColumn, Kbd, type KbdProps, type KeyValueItem, KeyValueList, type KeyValueListProps, Layers, LoadingOverlay, type LoadingOverlayProps, LockIcon, LogOut, LogoCloud, type LogoCloudItem, type LogoCloudProps, LogoMark, Mail, MarketingShell, type MarketingShellProps, MasonryGrid, type MasonryGridProps, Megaphone, Menu, MetricCard, type MetricCardProps, type MetricTrendTone, MockupFrame, type MockupFrameProps, Monitor, Moon, NavAnalytics, NavQrAttendance, NavScoresheet, NavSecurity, type NotificationItem, NotificationList, type NotificationListProps, NumberIcon, OfficeHours, PageHeader, type PageHeaderProps, PageRail, type PageRailItem, type PageRailProps, PageSpinner, Pagination, type PaginationLabels, type PaginationProps, PasswordInput, type PasswordInputProps, Pdf, PlanUsage, type PlanUsageItem, type PlanUsageProps, Plus, Popover, type PopoverProps, PricingCard, type PricingCardProps, Printer, Progress, type ProgressProps, QrCode, RadioButton, type RadioButtonProps, RatingInput, type RatingInputProps, Refresh, RefreshCw, Repeat, Report, ResourceCard, type ResourceCardProps, ResponsiveGrid, type ResponsiveGridProps, type RoadmapItem, RoadmapList, type RoadmapListProps, RotateCcw, SLAStatus, type SLAStatusProps, Scan, ScoreRing, type ScoreRingProps, Search, SearchInput, type SearchInputProps, SectionCard, type SectionCardProps, SectionIcons, SectionTitle, type SectionTitleProps, Select, type SelectProps, Server, type ServerSort, Shield, SidebarNav, type SidebarNavGroup, type SidebarNavItem, type SidebarNavProps, Skeleton, SkeletonBanner, SkeletonCard, SkeletonKpiCard, SkeletonPageHeader, type SkeletonProps, SkeletonTable, Slider, type SliderProps, Smartphone, type SortDirection, type SortState, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitPane, type SplitPaneProps, Spotlight, Stack, type StackProps, Star, StatGrid, type StatGridProps, StatsBand, type StatsBandItem, type StatsBandProps, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, type StepItem, Stepper, type StepperProps, StickyBar, type StickyBarProps, Sun, Surface, type SurfacePadding, type SurfaceProps, type SurfaceVariant, Switch, type SwitchProps, type TabItem, Table, Tablet, Tabs, type TabsProps, type TapizFrameworkPreset, type TapizPresetDefinition, TestimonialCard, type TestimonialCardProps, TextIcon, Textarea, TextareaCounter, type TextareaCounterProps, type TextareaProps, Timeline, type TimelineItem, type TimelineProps, Toast, type ToastProps, ToastProvider, type ToastProviderProps, type ToastState, ToggleGroup, type ToggleGroupProps, type ToggleOption, Tooltip, type TooltipProps, TopNav, type TopNavLink, type TopNavProps, Trash, Trophy, TwoFAIcon, University, User, UserCheck, UserCog, UserMinus, UserPlus, Users, X, Zap, tapizFrameworkPresets, useToast };