@umituz/atomic-next 1.8.3 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1,11 +1,11 @@
1
1
  import { ClassValue } from 'clsx';
2
- import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
2
+ import * as class_variance_authority_types from 'class-variance-authority/types';
3
3
  import React$1 from 'react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
5
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
6
6
  import Image from 'next/image';
7
- import Link from 'next/link';
8
7
  import { LucideProps, LucideIcon } from 'lucide-react';
8
+ import Link from 'next/link';
9
9
 
10
10
  /**
11
11
  * CSS Variables for Web/Next.js usage
@@ -783,7 +783,7 @@ declare function cn(...inputs: ClassValue[]): string;
783
783
  declare const buttonVariants: (props?: ({
784
784
  variant?: "outline" | "primary" | "secondary" | "ghost" | "link" | "destructive" | "default" | "brand" | null | undefined;
785
785
  size?: "sm" | "lg" | "default" | "icon" | null | undefined;
786
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
786
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
787
787
  interface AtomicButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
788
788
  /** Render as a different element */
789
789
  asChild?: boolean;
@@ -803,7 +803,7 @@ declare const textVariants: (props?: ({
803
803
  color?: "primary" | "secondary" | "success" | "warning" | "error" | "info" | "default" | "muted" | null | undefined;
804
804
  align?: "left" | "right" | "center" | "justify" | null | undefined;
805
805
  weight?: "thin" | "medium" | "normal" | "light" | "bold" | "black" | "semibold" | "extrabold" | null | undefined;
806
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
806
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
807
807
  interface AtomicTextProps extends Omit<React$1.HTMLAttributes<HTMLElement>, 'color'>, VariantProps<typeof textVariants> {
808
808
  /** Render as a different element */
809
809
  asChild?: boolean;
@@ -818,11 +818,8 @@ declare const AtomicText: React$1.ForwardRefExoticComponent<AtomicTextProps & Re
818
818
 
819
819
  declare const avatarVariants: (props?: ({
820
820
  size?: "xs" | "sm" | "lg" | "xl" | "xxl" | "xxxl" | "default" | null | undefined;
821
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
822
- declare const avatarImageVariants: (props?: class_variance_authority_dist_types.ClassProp | undefined) => string;
823
- declare const avatarFallbackVariants: (props?: ({
824
- size?: "xs" | "sm" | "lg" | "xl" | "xxl" | "xxxl" | "default" | null | undefined;
825
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
821
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
822
+ declare const avatarImageVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
826
823
  interface AtomicAvatarProps extends React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>, VariantProps<typeof avatarVariants> {
827
824
  src?: string;
828
825
  alt?: string;
@@ -836,14 +833,14 @@ declare const AtomicAvatar: React$1.ForwardRefExoticComponent<AtomicAvatarProps
836
833
  declare const AtomicAvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
837
834
  declare const AtomicAvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & VariantProps<(props?: ({
838
835
  size?: "xs" | "sm" | "lg" | "xl" | "xxl" | "xxxl" | "default" | null | undefined;
839
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLSpanElement>>;
836
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLSpanElement>>;
840
837
 
841
838
  declare const imageVariants: (props?: ({
842
839
  rounded?: "none" | "sm" | "md" | "lg" | "xl" | "full" | null | undefined;
843
840
  aspectRatio?: "auto" | "square" | "video" | "portrait" | "landscape" | null | undefined;
844
841
  objectFit?: "none" | "contain" | "fill" | "cover" | "scale-down" | null | undefined;
845
842
  objectPosition?: "bottom" | "left" | "right" | "top" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "center" | null | undefined;
846
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
843
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
847
844
  interface AtomicImageProps extends Omit<React$1.ComponentProps<typeof Image>, 'className' | 'objectFit' | 'objectPosition' | 'placeholder'>, VariantProps<typeof imageVariants> {
848
845
  className?: string;
849
846
  containerClassName?: string;
@@ -854,11 +851,83 @@ interface AtomicImageProps extends Omit<React$1.ComponentProps<typeof Image>, 'c
854
851
  }
855
852
  declare const AtomicImage: React$1.ForwardRefExoticComponent<Omit<AtomicImageProps, "ref"> & React$1.RefAttributes<HTMLImageElement | null>>;
856
853
 
854
+ declare const cardVariants: (props?: ({
855
+ variant?: "default" | "filled" | "elevated" | "outlined" | null | undefined;
856
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
857
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
858
+ declare const cardHeaderVariants: (props?: ({
859
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
860
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
861
+ declare const cardTitleVariants: (props?: ({
862
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
863
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
864
+ declare const cardDescriptionVariants: (props?: ({
865
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
866
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
867
+ declare const cardContentVariants: (props?: ({
868
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
869
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
870
+ declare const cardFooterVariants: (props?: ({
871
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
872
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
873
+ interface AtomicCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
874
+ /** Make card interactive with hover effects */
875
+ interactive?: boolean;
876
+ /** Make card full width */
877
+ fullWidth?: boolean;
878
+ }
879
+ interface AtomicCardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
880
+ }
881
+ interface AtomicCardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
882
+ /** Render as a different heading element */
883
+ as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
884
+ }
885
+ interface AtomicCardDescriptionProps extends React$1.HTMLAttributes<HTMLParagraphElement>, VariantProps<typeof cardDescriptionVariants> {
886
+ }
887
+ interface AtomicCardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
888
+ }
889
+ interface AtomicCardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
890
+ }
891
+ declare const AtomicCard: React$1.ForwardRefExoticComponent<AtomicCardProps & React$1.RefAttributes<HTMLDivElement>>;
892
+ declare const AtomicCardHeader: React$1.ForwardRefExoticComponent<AtomicCardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
893
+ declare const AtomicCardTitle: React$1.ForwardRefExoticComponent<AtomicCardTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
894
+ declare const AtomicCardDescription: React$1.ForwardRefExoticComponent<AtomicCardDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
895
+ declare const AtomicCardContent: React$1.ForwardRefExoticComponent<AtomicCardContentProps & React$1.RefAttributes<HTMLDivElement>>;
896
+ declare const AtomicCardFooter: React$1.ForwardRefExoticComponent<AtomicCardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
897
+
898
+ type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | number | string;
899
+ type Color$4 = 'current' | 'black' | 'white' | 'slate-50' | 'slate-100' | 'slate-200' | 'slate-300' | 'slate-400' | 'slate-500' | 'slate-600' | 'slate-700' | 'slate-800' | 'slate-900' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900' | 'zinc-50' | 'zinc-100' | 'zinc-200' | 'zinc-300' | 'zinc-400' | 'zinc-500' | 'zinc-600' | 'zinc-700' | 'zinc-800' | 'zinc-900' | 'red-50' | 'red-100' | 'red-200' | 'red-300' | 'red-400' | 'red-500' | 'red-600' | 'red-700' | 'red-800' | 'red-900' | 'orange-50' | 'orange-100' | 'orange-200' | 'orange-300' | 'orange-400' | 'orange-500' | 'orange-600' | 'orange-700' | 'orange-800' | 'orange-900' | 'yellow-50' | 'yellow-100' | 'yellow-200' | 'yellow-300' | 'yellow-400' | 'yellow-500' | 'yellow-600' | 'yellow-700' | 'yellow-800' | 'yellow-900' | 'green-50' | 'green-100' | 'green-200' | 'green-300' | 'green-400' | 'green-500' | 'green-600' | 'green-700' | 'green-800' | 'green-900' | 'blue-50' | 'blue-100' | 'blue-200' | 'blue-300' | 'blue-400' | 'blue-500' | 'blue-600' | 'blue-700' | 'blue-800' | 'blue-900' | 'indigo-50' | 'indigo-100' | 'indigo-200' | 'indigo-300' | 'indigo-400' | 'indigo-500' | 'indigo-600' | 'indigo-700' | 'indigo-800' | 'indigo-900' | 'purple-50' | 'purple-100' | 'purple-200' | 'purple-300' | 'purple-400' | 'purple-500' | 'purple-600' | 'purple-700' | 'purple-800' | 'purple-900' | 'pink-50' | 'pink-100' | 'pink-200' | 'pink-300' | 'pink-400' | 'pink-500' | 'pink-600' | 'pink-700' | 'pink-800' | 'pink-900';
900
+ type Spacing$4 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '14' | '16' | '20' | '24' | '28' | '32' | '36' | '40' | '44' | '48';
901
+ type SpacingObject$4 = {
902
+ x?: Spacing$4;
903
+ y?: Spacing$4;
904
+ t?: Spacing$4;
905
+ r?: Spacing$4;
906
+ b?: Spacing$4;
907
+ l?: Spacing$4;
908
+ };
909
+ interface AtomicIconProps extends Omit<LucideProps, 'size' | 'color'> {
910
+ icon: LucideIcon;
911
+ size?: IconSize;
912
+ color?: Color$4;
913
+ hoverColor?: Color$4;
914
+ p?: Spacing$4 | SpacingObject$4;
915
+ m?: Spacing$4 | SpacingObject$4;
916
+ cursor?: 'auto' | 'default' | 'pointer' | 'wait' | 'help' | 'not-allowed';
917
+ spin?: boolean;
918
+ pulse?: boolean;
919
+ bounce?: boolean;
920
+ rotate?: '0' | '45' | '90' | '180' | '-45' | '-90' | '-180';
921
+ 'aria-label'?: string;
922
+ 'aria-hidden'?: boolean;
923
+ }
924
+ declare const AtomicIcon: React$1.ForwardRefExoticComponent<Omit<AtomicIconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
925
+
857
926
  declare const inputVariants: (props?: ({
858
927
  variant?: "outline" | "default" | "filled" | "underlined" | null | undefined;
859
928
  size?: "sm" | "lg" | "default" | null | undefined;
860
929
  state?: "success" | "warning" | "error" | "default" | null | undefined;
861
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
930
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
862
931
  interface AtomicInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
863
932
  /** Left icon or element */
864
933
  leftIcon?: React$1.ReactNode;
@@ -889,10 +958,65 @@ interface AtomicInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEle
889
958
  }
890
959
  declare const AtomicInput: React$1.ForwardRefExoticComponent<AtomicInputProps & React$1.RefAttributes<HTMLInputElement>>;
891
960
 
961
+ type CheckboxSize = 'sm' | 'md' | 'lg';
962
+ type Color$3 = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
963
+ type Spacing$3 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
964
+ type SpacingObject$3 = {
965
+ x?: Spacing$3;
966
+ y?: Spacing$3;
967
+ t?: Spacing$3;
968
+ r?: Spacing$3;
969
+ b?: Spacing$3;
970
+ l?: Spacing$3;
971
+ };
972
+ interface AtomicCheckboxProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'color' | 'onChange'> {
973
+ checked?: boolean;
974
+ indeterminate?: boolean;
975
+ disabled?: boolean;
976
+ size?: CheckboxSize;
977
+ color?: Color$3;
978
+ p?: Spacing$3 | SpacingObject$3;
979
+ m?: Spacing$3 | SpacingObject$3;
980
+ label?: string;
981
+ description?: string;
982
+ error?: boolean;
983
+ errorMessage?: string;
984
+ onChange?: (checked: boolean, event: React$1.ChangeEvent<HTMLInputElement>) => void;
985
+ onInputChange?: React$1.ChangeEventHandler<HTMLInputElement>;
986
+ }
987
+ declare const AtomicCheckbox: React$1.ForwardRefExoticComponent<AtomicCheckboxProps & React$1.RefAttributes<HTMLInputElement>>;
988
+
989
+ type SwitchSize = 'sm' | 'md' | 'lg';
990
+ type Color$2 = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
991
+ type Spacing$2 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
992
+ type SpacingObject$2 = {
993
+ x?: Spacing$2;
994
+ y?: Spacing$2;
995
+ t?: Spacing$2;
996
+ r?: Spacing$2;
997
+ b?: Spacing$2;
998
+ l?: Spacing$2;
999
+ };
1000
+ interface AtomicSwitchProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'color' | 'onChange'> {
1001
+ checked?: boolean;
1002
+ disabled?: boolean;
1003
+ size?: SwitchSize;
1004
+ color?: Color$2;
1005
+ p?: Spacing$2 | SpacingObject$2;
1006
+ m?: Spacing$2 | SpacingObject$2;
1007
+ label?: string;
1008
+ description?: string;
1009
+ labelPosition?: 'left' | 'right';
1010
+ loading?: boolean;
1011
+ onChange?: (checked: boolean, event: React$1.ChangeEvent<HTMLInputElement>) => void;
1012
+ onInputChange?: React$1.ChangeEventHandler<HTMLInputElement>;
1013
+ }
1014
+ declare const AtomicSwitch: React$1.ForwardRefExoticComponent<AtomicSwitchProps & React$1.RefAttributes<HTMLInputElement>>;
1015
+
892
1016
  declare const spinnerVariants: (props?: ({
893
1017
  size?: "xs" | "sm" | "lg" | "xl" | "xxl" | "default" | null | undefined;
894
1018
  color?: "primary" | "secondary" | "success" | "warning" | "error" | "default" | "white" | "muted" | null | undefined;
895
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1019
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
896
1020
  interface AtomicSpinnerProps extends Omit<React$1.SVGProps<SVGSVGElement>, 'color'>, VariantProps<typeof spinnerVariants> {
897
1021
  /** Loading text to display alongside spinner */
898
1022
  label?: string;
@@ -910,7 +1034,7 @@ declare const badgeVariants: (props?: ({
910
1034
  variant?: "outline" | "secondary" | "success" | "warning" | "info" | "gray" | "destructive" | "default" | null | undefined;
911
1035
  size?: "sm" | "lg" | "default" | null | undefined;
912
1036
  shape?: "default" | "square" | "rounded" | null | undefined;
913
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1037
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
914
1038
  interface AtomicBadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
915
1039
  /** Icon to display on the left */
916
1040
  leftIcon?: React$1.ReactNode;
@@ -936,11 +1060,40 @@ declare const AtomicCountBadge: React$1.ForwardRefExoticComponent<Omit<AtomicBad
936
1060
  max?: number;
937
1061
  } & React$1.RefAttributes<HTMLDivElement>>;
938
1062
 
1063
+ type TagVariant = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info' | 'outline' | 'ghost' | 'solid';
1064
+ type TagSize = 'xs' | 'sm' | 'md' | 'lg';
1065
+ type Color$1 = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
1066
+ type Spacing$1 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
1067
+ type SpacingObject$1 = {
1068
+ x?: Spacing$1;
1069
+ y?: Spacing$1;
1070
+ t?: Spacing$1;
1071
+ r?: Spacing$1;
1072
+ b?: Spacing$1;
1073
+ l?: Spacing$1;
1074
+ };
1075
+ interface AtomicTagProps extends React$1.HTMLAttributes<HTMLSpanElement> {
1076
+ children: React$1.ReactNode;
1077
+ variant?: TagVariant;
1078
+ size?: TagSize;
1079
+ color?: Color$1;
1080
+ leftIcon?: LucideIcon;
1081
+ rightIcon?: LucideIcon;
1082
+ p?: Spacing$1 | SpacingObject$1;
1083
+ m?: Spacing$1 | SpacingObject$1;
1084
+ clickable?: boolean;
1085
+ removable?: boolean;
1086
+ onRemove?: () => void;
1087
+ disabled?: boolean;
1088
+ as?: 'span' | 'div' | 'button';
1089
+ }
1090
+ declare const AtomicTag: React$1.ForwardRefExoticComponent<AtomicTagProps & React$1.RefAttributes<HTMLElement>>;
1091
+
939
1092
  declare const linkVariants: (props?: ({
940
1093
  variant?: "button" | "primary" | "secondary" | "ghost" | "destructive" | "default" | "underline" | "muted" | null | undefined;
941
1094
  size?: "sm" | "lg" | "xl" | "default" | null | undefined;
942
1095
  weight?: "medium" | "normal" | "bold" | "semibold" | null | undefined;
943
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1096
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
944
1097
  interface AtomicLinkProps extends Omit<React$1.ComponentProps<typeof Link>, 'className'>, VariantProps<typeof linkVariants> {
945
1098
  className?: string;
946
1099
  external?: boolean;
@@ -955,17 +1108,17 @@ type AlignItems = 'stretch' | 'start' | 'center' | 'end' | 'baseline';
955
1108
  type JustifyContent = 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
956
1109
  type FlexDirection = 'row' | 'row-reverse' | 'col' | 'col-reverse';
957
1110
  type FlexWrap = 'wrap' | 'wrap-reverse' | 'nowrap';
958
- type Spacing$4 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '14' | '16' | '20' | '24' | '28' | '32' | '36' | '40' | '44' | '48' | '52' | '56' | '60' | '64' | '72' | '80' | '96';
959
- type SpacingObject$4 = {
960
- x?: Spacing$4;
961
- y?: Spacing$4;
962
- t?: Spacing$4;
963
- r?: Spacing$4;
964
- b?: Spacing$4;
965
- l?: Spacing$4;
1111
+ type Spacing = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '14' | '16' | '20' | '24' | '28' | '32' | '36' | '40' | '44' | '48' | '52' | '56' | '60' | '64' | '72' | '80' | '96';
1112
+ type SpacingObject = {
1113
+ x?: Spacing;
1114
+ y?: Spacing;
1115
+ t?: Spacing;
1116
+ r?: Spacing;
1117
+ b?: Spacing;
1118
+ l?: Spacing;
966
1119
  };
967
- type Size = Spacing$4 | 'auto' | 'full' | 'screen' | 'min' | 'max' | 'fit';
968
- type Color$4 = 'transparent' | 'current' | 'black' | 'white' | 'slate-50' | 'slate-100' | 'slate-200' | 'slate-300' | 'slate-400' | 'slate-500' | 'slate-600' | 'slate-700' | 'slate-800' | 'slate-900' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900' | 'zinc-50' | 'zinc-100' | 'zinc-200' | 'zinc-300' | 'zinc-400' | 'zinc-500' | 'zinc-600' | 'zinc-700' | 'zinc-800' | 'zinc-900' | 'red-50' | 'red-100' | 'red-200' | 'red-300' | 'red-400' | 'red-500' | 'red-600' | 'red-700' | 'red-800' | 'red-900' | 'orange-50' | 'orange-100' | 'orange-200' | 'orange-300' | 'orange-400' | 'orange-500' | 'orange-600' | 'orange-700' | 'orange-800' | 'orange-900' | 'yellow-50' | 'yellow-100' | 'yellow-200' | 'yellow-300' | 'yellow-400' | 'yellow-500' | 'yellow-600' | 'yellow-700' | 'yellow-800' | 'yellow-900' | 'green-50' | 'green-100' | 'green-200' | 'green-300' | 'green-400' | 'green-500' | 'green-600' | 'green-700' | 'green-800' | 'green-900' | 'blue-50' | 'blue-100' | 'blue-200' | 'blue-300' | 'blue-400' | 'blue-500' | 'blue-600' | 'blue-700' | 'blue-800' | 'blue-900' | 'indigo-50' | 'indigo-100' | 'indigo-200' | 'indigo-300' | 'indigo-400' | 'indigo-500' | 'indigo-600' | 'indigo-700' | 'indigo-800' | 'indigo-900' | 'purple-50' | 'purple-100' | 'purple-200' | 'purple-300' | 'purple-400' | 'purple-500' | 'purple-600' | 'purple-700' | 'purple-800' | 'purple-900' | 'pink-50' | 'pink-100' | 'pink-200' | 'pink-300' | 'pink-400' | 'pink-500' | 'pink-600' | 'pink-700' | 'pink-800' | 'pink-900';
1120
+ type Size = Spacing | 'auto' | 'full' | 'screen' | 'min' | 'max' | 'fit';
1121
+ type Color = 'transparent' | 'current' | 'black' | 'white' | 'slate-50' | 'slate-100' | 'slate-200' | 'slate-300' | 'slate-400' | 'slate-500' | 'slate-600' | 'slate-700' | 'slate-800' | 'slate-900' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900' | 'zinc-50' | 'zinc-100' | 'zinc-200' | 'zinc-300' | 'zinc-400' | 'zinc-500' | 'zinc-600' | 'zinc-700' | 'zinc-800' | 'zinc-900' | 'red-50' | 'red-100' | 'red-200' | 'red-300' | 'red-400' | 'red-500' | 'red-600' | 'red-700' | 'red-800' | 'red-900' | 'orange-50' | 'orange-100' | 'orange-200' | 'orange-300' | 'orange-400' | 'orange-500' | 'orange-600' | 'orange-700' | 'orange-800' | 'orange-900' | 'yellow-50' | 'yellow-100' | 'yellow-200' | 'yellow-300' | 'yellow-400' | 'yellow-500' | 'yellow-600' | 'yellow-700' | 'yellow-800' | 'yellow-900' | 'green-50' | 'green-100' | 'green-200' | 'green-300' | 'green-400' | 'green-500' | 'green-600' | 'green-700' | 'green-800' | 'green-900' | 'blue-50' | 'blue-100' | 'blue-200' | 'blue-300' | 'blue-400' | 'blue-500' | 'blue-600' | 'blue-700' | 'blue-800' | 'blue-900' | 'indigo-50' | 'indigo-100' | 'indigo-200' | 'indigo-300' | 'indigo-400' | 'indigo-500' | 'indigo-600' | 'indigo-700' | 'indigo-800' | 'indigo-900' | 'purple-50' | 'purple-100' | 'purple-200' | 'purple-300' | 'purple-400' | 'purple-500' | 'purple-600' | 'purple-700' | 'purple-800' | 'purple-900' | 'pink-50' | 'pink-100' | 'pink-200' | 'pink-300' | 'pink-400' | 'pink-500' | 'pink-600' | 'pink-700' | 'pink-800' | 'pink-900';
969
1122
  type BorderRadius = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'full';
970
1123
  type Shadow = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'inner';
971
1124
  type Position = 'static' | 'relative' | 'absolute' | 'fixed' | 'sticky';
@@ -978,187 +1131,31 @@ interface AtomicDivProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'c
978
1131
  flexGrow?: number;
979
1132
  flexShrink?: number;
980
1133
  order?: number;
981
- p?: Spacing$4 | SpacingObject$4;
982
- m?: Spacing$4 | SpacingObject$4;
1134
+ p?: Spacing | SpacingObject;
1135
+ m?: Spacing | SpacingObject;
983
1136
  w?: Size;
984
1137
  h?: Size;
985
1138
  minW?: Size;
986
1139
  minH?: Size;
987
1140
  maxW?: Size;
988
1141
  maxH?: Size;
989
- bg?: Color$4;
1142
+ bg?: Color;
990
1143
  bgGradient?: string;
991
1144
  border?: boolean | string;
992
- borderColor?: Color$4;
1145
+ borderColor?: Color;
993
1146
  rounded?: BorderRadius;
994
1147
  shadow?: Shadow;
995
1148
  position?: Position;
996
- top?: Spacing$4;
997
- right?: Spacing$4;
998
- bottom?: Spacing$4;
999
- left?: Spacing$4;
1149
+ top?: Spacing;
1150
+ right?: Spacing;
1151
+ bottom?: Spacing;
1152
+ left?: Spacing;
1000
1153
  cursor?: 'auto' | 'default' | 'pointer' | 'wait' | 'text' | 'move' | 'help' | 'not-allowed';
1001
1154
  as?: keyof JSX.IntrinsicElements;
1002
1155
  children?: React$1.ReactNode;
1003
1156
  }
1004
1157
  declare const AtomicDiv: React$1.ForwardRefExoticComponent<AtomicDivProps & React$1.RefAttributes<HTMLDivElement>>;
1005
1158
 
1006
- type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | number | string;
1007
- type Color$3 = 'current' | 'black' | 'white' | 'slate-50' | 'slate-100' | 'slate-200' | 'slate-300' | 'slate-400' | 'slate-500' | 'slate-600' | 'slate-700' | 'slate-800' | 'slate-900' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900' | 'zinc-50' | 'zinc-100' | 'zinc-200' | 'zinc-300' | 'zinc-400' | 'zinc-500' | 'zinc-600' | 'zinc-700' | 'zinc-800' | 'zinc-900' | 'red-50' | 'red-100' | 'red-200' | 'red-300' | 'red-400' | 'red-500' | 'red-600' | 'red-700' | 'red-800' | 'red-900' | 'orange-50' | 'orange-100' | 'orange-200' | 'orange-300' | 'orange-400' | 'orange-500' | 'orange-600' | 'orange-700' | 'orange-800' | 'orange-900' | 'yellow-50' | 'yellow-100' | 'yellow-200' | 'yellow-300' | 'yellow-400' | 'yellow-500' | 'yellow-600' | 'yellow-700' | 'yellow-800' | 'yellow-900' | 'green-50' | 'green-100' | 'green-200' | 'green-300' | 'green-400' | 'green-500' | 'green-600' | 'green-700' | 'green-800' | 'green-900' | 'blue-50' | 'blue-100' | 'blue-200' | 'blue-300' | 'blue-400' | 'blue-500' | 'blue-600' | 'blue-700' | 'blue-800' | 'blue-900' | 'indigo-50' | 'indigo-100' | 'indigo-200' | 'indigo-300' | 'indigo-400' | 'indigo-500' | 'indigo-600' | 'indigo-700' | 'indigo-800' | 'indigo-900' | 'purple-50' | 'purple-100' | 'purple-200' | 'purple-300' | 'purple-400' | 'purple-500' | 'purple-600' | 'purple-700' | 'purple-800' | 'purple-900' | 'pink-50' | 'pink-100' | 'pink-200' | 'pink-300' | 'pink-400' | 'pink-500' | 'pink-600' | 'pink-700' | 'pink-800' | 'pink-900';
1008
- type Spacing$3 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '14' | '16' | '20' | '24' | '28' | '32' | '36' | '40' | '44' | '48';
1009
- type SpacingObject$3 = {
1010
- x?: Spacing$3;
1011
- y?: Spacing$3;
1012
- t?: Spacing$3;
1013
- r?: Spacing$3;
1014
- b?: Spacing$3;
1015
- l?: Spacing$3;
1016
- };
1017
- interface AtomicIconProps extends Omit<LucideProps, 'size' | 'color'> {
1018
- icon: LucideIcon;
1019
- size?: IconSize;
1020
- color?: Color$3;
1021
- hoverColor?: Color$3;
1022
- p?: Spacing$3 | SpacingObject$3;
1023
- m?: Spacing$3 | SpacingObject$3;
1024
- cursor?: 'auto' | 'default' | 'pointer' | 'wait' | 'help' | 'not-allowed';
1025
- spin?: boolean;
1026
- pulse?: boolean;
1027
- bounce?: boolean;
1028
- rotate?: '0' | '45' | '90' | '180' | '-45' | '-90' | '-180';
1029
- 'aria-label'?: string;
1030
- 'aria-hidden'?: boolean;
1031
- }
1032
- declare const AtomicIcon: React$1.ForwardRefExoticComponent<Omit<AtomicIconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
1033
-
1034
- type TagVariant = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info' | 'outline' | 'ghost' | 'solid';
1035
- type TagSize = 'xs' | 'sm' | 'md' | 'lg';
1036
- type Color$2 = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
1037
- type Spacing$2 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
1038
- type SpacingObject$2 = {
1039
- x?: Spacing$2;
1040
- y?: Spacing$2;
1041
- t?: Spacing$2;
1042
- r?: Spacing$2;
1043
- b?: Spacing$2;
1044
- l?: Spacing$2;
1045
- };
1046
- interface AtomicTagProps extends React$1.HTMLAttributes<HTMLSpanElement> {
1047
- children: React$1.ReactNode;
1048
- variant?: TagVariant;
1049
- size?: TagSize;
1050
- color?: Color$2;
1051
- leftIcon?: LucideIcon;
1052
- rightIcon?: LucideIcon;
1053
- p?: Spacing$2 | SpacingObject$2;
1054
- m?: Spacing$2 | SpacingObject$2;
1055
- clickable?: boolean;
1056
- removable?: boolean;
1057
- onRemove?: () => void;
1058
- disabled?: boolean;
1059
- as?: 'span' | 'div' | 'button';
1060
- }
1061
- declare const AtomicTag: React$1.ForwardRefExoticComponent<AtomicTagProps & React$1.RefAttributes<HTMLElement>>;
1062
-
1063
- type CheckboxSize = 'sm' | 'md' | 'lg';
1064
- type Color$1 = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
1065
- type Spacing$1 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
1066
- type SpacingObject$1 = {
1067
- x?: Spacing$1;
1068
- y?: Spacing$1;
1069
- t?: Spacing$1;
1070
- r?: Spacing$1;
1071
- b?: Spacing$1;
1072
- l?: Spacing$1;
1073
- };
1074
- interface AtomicCheckboxProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'color' | 'onChange'> {
1075
- checked?: boolean;
1076
- indeterminate?: boolean;
1077
- disabled?: boolean;
1078
- size?: CheckboxSize;
1079
- color?: Color$1;
1080
- p?: Spacing$1 | SpacingObject$1;
1081
- m?: Spacing$1 | SpacingObject$1;
1082
- label?: string;
1083
- description?: string;
1084
- error?: boolean;
1085
- errorMessage?: string;
1086
- onChange?: (checked: boolean, event: React$1.ChangeEvent<HTMLInputElement>) => void;
1087
- onInputChange?: React$1.ChangeEventHandler<HTMLInputElement>;
1088
- }
1089
- declare const AtomicCheckbox: React$1.ForwardRefExoticComponent<AtomicCheckboxProps & React$1.RefAttributes<HTMLInputElement>>;
1090
-
1091
- type SwitchSize = 'sm' | 'md' | 'lg';
1092
- type Color = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
1093
- type Spacing = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
1094
- type SpacingObject = {
1095
- x?: Spacing;
1096
- y?: Spacing;
1097
- t?: Spacing;
1098
- r?: Spacing;
1099
- b?: Spacing;
1100
- l?: Spacing;
1101
- };
1102
- interface AtomicSwitchProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'color' | 'onChange'> {
1103
- checked?: boolean;
1104
- disabled?: boolean;
1105
- size?: SwitchSize;
1106
- color?: Color;
1107
- p?: Spacing | SpacingObject;
1108
- m?: Spacing | SpacingObject;
1109
- label?: string;
1110
- description?: string;
1111
- labelPosition?: 'left' | 'right';
1112
- loading?: boolean;
1113
- onChange?: (checked: boolean, event: React$1.ChangeEvent<HTMLInputElement>) => void;
1114
- onInputChange?: React$1.ChangeEventHandler<HTMLInputElement>;
1115
- }
1116
- declare const AtomicSwitch: React$1.ForwardRefExoticComponent<AtomicSwitchProps & React$1.RefAttributes<HTMLInputElement>>;
1117
-
1118
- declare const cardVariants: (props?: ({
1119
- variant?: "default" | "filled" | "elevated" | "outlined" | null | undefined;
1120
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1121
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1122
- declare const cardHeaderVariants: (props?: ({
1123
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1124
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1125
- declare const cardTitleVariants: (props?: ({
1126
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1127
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1128
- declare const cardDescriptionVariants: (props?: ({
1129
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1130
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1131
- declare const cardContentVariants: (props?: ({
1132
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1133
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1134
- declare const cardFooterVariants: (props?: ({
1135
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1136
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1137
- interface AtomicCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
1138
- /** Make card interactive with hover effects */
1139
- interactive?: boolean;
1140
- /** Make card full width */
1141
- fullWidth?: boolean;
1142
- }
1143
- interface AtomicCardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
1144
- }
1145
- interface AtomicCardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
1146
- /** Render as a different heading element */
1147
- as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
1148
- }
1149
- interface AtomicCardDescriptionProps extends React$1.HTMLAttributes<HTMLParagraphElement>, VariantProps<typeof cardDescriptionVariants> {
1150
- }
1151
- interface AtomicCardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
1152
- }
1153
- interface AtomicCardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
1154
- }
1155
- declare const AtomicCard: React$1.ForwardRefExoticComponent<AtomicCardProps & React$1.RefAttributes<HTMLDivElement>>;
1156
- declare const AtomicCardHeader: React$1.ForwardRefExoticComponent<AtomicCardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
1157
- declare const AtomicCardTitle: React$1.ForwardRefExoticComponent<AtomicCardTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
1158
- declare const AtomicCardDescription: React$1.ForwardRefExoticComponent<AtomicCardDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
1159
- declare const AtomicCardContent: React$1.ForwardRefExoticComponent<AtomicCardContentProps & React$1.RefAttributes<HTMLDivElement>>;
1160
- declare const AtomicCardFooter: React$1.ForwardRefExoticComponent<AtomicCardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
1161
-
1162
1159
  type Theme = 'light' | 'dark' | 'system';
1163
1160
  interface AtomicThemeProviderContextProps {
1164
1161
  theme: Theme;
@@ -1181,6 +1178,6 @@ interface AtomicThemeProviderProps {
1181
1178
  declare const AtomicThemeProvider: React$1.FC<AtomicThemeProviderProps>;
1182
1179
  declare const useAtomicTheme: () => AtomicThemeProviderContextProps;
1183
1180
 
1184
- declare const VERSION = "1.1.0";
1181
+ declare const VERSION = "2.0.0";
1185
1182
 
1186
- export { AnimationUtils, AtomicAlertType, type AtomicAlertTypeType, AtomicAlignment, type AtomicAlignmentType, type AtomicAnimationDuration, type AtomicAnimationEasing, AtomicAnimationPresets, type AtomicAnimationRotate, type AtomicAnimationScale, AtomicAnimationState, type AtomicAnimationStateType, AtomicAnimations, AtomicAnimationsCss, AtomicAvatar, AtomicAvatarFallback, AtomicAvatarImage, type AtomicAvatarProps, AtomicBadge, type AtomicBadgeProps, type AtomicBorderRadius, type AtomicBorderStyle, type AtomicBorderWidth, AtomicBorders, AtomicBordersCss, AtomicBreakpoint, type AtomicBreakpointType, AtomicButton, type AtomicButtonProps, AtomicButtonSpinner, AtomicButtonVariant, type AtomicButtonVariantType, AtomicCard, AtomicCardContent, type AtomicCardContentProps, AtomicCardDescription, type AtomicCardDescriptionProps, AtomicCardFooter, type AtomicCardFooterProps, AtomicCardHeader, type AtomicCardHeaderProps, type AtomicCardProps, AtomicCardTitle, type AtomicCardTitleProps, AtomicCardVariant, type AtomicCardVariantType, AtomicCheckbox, type AtomicCheckboxProps, AtomicColorVariant, type AtomicColorVariantType, AtomicColorsCss, AtomicCountBadge, AtomicDesignTokensCss, AtomicDirection, type AtomicDirectionType, AtomicDiv, type AtomicDivProps, AtomicEnumUtils, AtomicFormFieldState, type AtomicFormFieldStateType, AtomicIcon, type AtomicIconProps, AtomicImage, type AtomicImageProps, AtomicInlineSpinner, AtomicInput, type AtomicInputProps, AtomicInputVariant, type AtomicInputVariantType, AtomicLink, type AtomicLinkProps, AtomicLoadingState, type AtomicLoadingStateType, AtomicModalSize, type AtomicModalSizeType, AtomicOrientation, type AtomicOrientationType, AtomicPageSpinner, AtomicPosition, type AtomicPositionType, type AtomicShadowKey, type AtomicShadowValue, AtomicShadows, AtomicShadowsCss, AtomicSize, type AtomicSizeType, AtomicSpacingCss, AtomicSpinner, type AtomicSpinnerProps, AtomicStatus, AtomicStatusBadge, type AtomicStatusType, AtomicSwitch, type AtomicSwitchProps, AtomicTag, type AtomicTagProps, AtomicText, type AtomicTextProps, AtomicTextVariant, type AtomicTextVariantType, AtomicThemeMode, type AtomicThemeModeType, AtomicThemeProvider, type AtomicThemeProviderContextProps, type AtomicThemeProviderProps, AtomicTypographyCss, BorderUtils, ShadowUtils, VERSION, avatarFallbackVariants, avatarImageVariants, avatarVariants, badgeVariants, buttonVariants, cardContentVariants, cardDescriptionVariants, cardFooterVariants, cardHeaderVariants, cardTitleVariants, cardVariants, cn, imageVariants, inputVariants, linkVariants, spinnerVariants, textVariants, useAtomicTheme };
1183
+ export { AnimationUtils, AtomicAlertType, type AtomicAlertTypeType, AtomicAlignment, type AtomicAlignmentType, type AtomicAnimationDuration, type AtomicAnimationEasing, AtomicAnimationPresets, type AtomicAnimationRotate, type AtomicAnimationScale, AtomicAnimationState, type AtomicAnimationStateType, AtomicAnimations, AtomicAnimationsCss, AtomicAvatar, AtomicAvatarFallback, AtomicAvatarImage, type AtomicAvatarProps, AtomicBadge, type AtomicBadgeProps, type AtomicBorderRadius, type AtomicBorderStyle, type AtomicBorderWidth, AtomicBorders, AtomicBordersCss, AtomicBreakpoint, type AtomicBreakpointType, AtomicButton, type AtomicButtonProps, AtomicButtonSpinner, AtomicButtonVariant, type AtomicButtonVariantType, AtomicCard, AtomicCardContent, type AtomicCardContentProps, AtomicCardDescription, type AtomicCardDescriptionProps, AtomicCardFooter, type AtomicCardFooterProps, AtomicCardHeader, type AtomicCardHeaderProps, type AtomicCardProps, AtomicCardTitle, type AtomicCardTitleProps, AtomicCardVariant, type AtomicCardVariantType, AtomicCheckbox, type AtomicCheckboxProps, AtomicColorVariant, type AtomicColorVariantType, AtomicColorsCss, AtomicCountBadge, AtomicDesignTokensCss, AtomicDirection, type AtomicDirectionType, AtomicDiv, type AtomicDivProps, AtomicEnumUtils, AtomicFormFieldState, type AtomicFormFieldStateType, AtomicIcon, type AtomicIconProps, AtomicImage, type AtomicImageProps, AtomicInlineSpinner, AtomicInput, type AtomicInputProps, AtomicInputVariant, type AtomicInputVariantType, AtomicLink, type AtomicLinkProps, AtomicLoadingState, type AtomicLoadingStateType, AtomicModalSize, type AtomicModalSizeType, AtomicOrientation, type AtomicOrientationType, AtomicPageSpinner, AtomicPosition, type AtomicPositionType, type AtomicShadowKey, type AtomicShadowValue, AtomicShadows, AtomicShadowsCss, AtomicSize, type AtomicSizeType, AtomicSpacingCss, AtomicSpinner, type AtomicSpinnerProps, AtomicStatus, AtomicStatusBadge, type AtomicStatusType, AtomicSwitch, type AtomicSwitchProps, AtomicTag, type AtomicTagProps, AtomicText, type AtomicTextProps, AtomicTextVariant, type AtomicTextVariantType, AtomicThemeMode, type AtomicThemeModeType, AtomicThemeProvider, AtomicTypographyCss, BorderUtils, ShadowUtils, VERSION, avatarImageVariants, avatarVariants, badgeVariants, buttonVariants, cardDescriptionVariants, cardHeaderVariants, cardTitleVariants, cardVariants, cn, inputVariants, linkVariants, spinnerVariants, textVariants, useAtomicTheme };