myshell-react-lib 0.1.2 → 0.1.4

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.cts CHANGED
@@ -65,7 +65,7 @@ declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<Accordion
65
65
  declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
66
66
 
67
67
  declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
68
- variant?: "default" | "error" | "warning" | "destructive" | "info" | null | undefined;
68
+ variant?: "default" | "warning" | "error" | "destructive" | "info" | null | undefined;
69
69
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
70
70
  declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
71
71
  declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
@@ -136,7 +136,7 @@ declare function Badge(props: BadgeProps): react_jsx_runtime.JSX.Element;
136
136
 
137
137
  declare const buttonVariants: (props?: ({
138
138
  variant?: "link" | "opacity" | "static" | "primary" | "secondary" | "tertiary" | "plain" | "solid" | null | undefined;
139
- color?: "default" | "error" | "brand" | "gray" | "chat" | null | undefined;
139
+ color?: "default" | "brand" | "error" | "gray" | "chat" | null | undefined;
140
140
  size?: "sm" | "md" | "lg" | null | undefined;
141
141
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
142
142
 
@@ -358,7 +358,7 @@ declare const Guide: React$1.FC<GuideProps>;
358
358
 
359
359
  declare const iconVariants: (props?: ({
360
360
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
361
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
361
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
362
362
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
363
363
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
364
364
  type IconProps = React$1.HTMLAttributes<HTMLSpanElement> & VariantProps<typeof iconVariants> & {
@@ -369,7 +369,7 @@ type IconProps = React$1.HTMLAttributes<HTMLSpanElement> & VariantProps<typeof i
369
369
  };
370
370
  declare const Icon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & VariantProps<(props?: ({
371
371
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
372
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
372
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
373
373
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
374
374
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
375
375
  /**
@@ -381,7 +381,7 @@ type IconComponent = React$1.ForwardRefExoticComponent<IconProps>;
381
381
 
382
382
  declare const iconButtonVariants: (props?: ({
383
383
  variant?: "opacity" | "primary" | "secondary" | "tertiary" | "plain" | "solid" | null | undefined;
384
- color?: "default" | "error" | "brand" | "gray" | null | undefined;
384
+ color?: "default" | "brand" | "error" | "gray" | null | undefined;
385
385
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
386
386
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
387
387
  type IconButtonSize = 'xs' | 'sm' | 'md' | 'lg';
@@ -880,15 +880,15 @@ type HeroIcon = React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGP
880
880
  } & React.RefAttributes<SVGSVGElement>>;
881
881
 
882
882
  type IIcons = {
883
- icon: HeroIcon | LucideIcon | IconComponent | React.ElementType;
883
+ icon: HeroIcon | LucideIcon | React.ElementType;
884
884
  onClick?: () => void;
885
885
  };
886
886
  type IActions = {
887
887
  label: string;
888
888
  onClick?: () => void;
889
- icon?: HeroIcon | LucideIcon | IconComponent | React.ElementType;
890
- variant?: 'primary' | 'secondary' | 'static' | 'link' | 'plain';
891
- color?: 'default' | 'brand' | 'error' | 'chat';
889
+ icon?: HeroIcon | LucideIcon | React.ElementType;
890
+ variant?: 'primary' | 'secondary' | 'tertiary' | 'static' | 'link' | 'plain' | 'solid';
891
+ color?: 'default' | 'brand' | 'error';
892
892
  };
893
893
  type ISecondaryNavigationBar = {
894
894
  /**
@@ -971,8 +971,9 @@ type ISecondaryNavigationBar = {
971
971
  };
972
972
  onSearchChange?: (value: string) => void;
973
973
  onClear?: () => void;
974
+ onBack?: () => void;
974
975
  };
975
- declare function SecondaryNavigationBar({ showSearchBar, searchValue, searchPlaceholder, title, border, backUrl, showClear, clearText, icons, actions, children, hasBackground, avatar, onSearchChange, onClear, }: ISecondaryNavigationBar): react_jsx_runtime.JSX.Element;
976
+ declare function SecondaryNavigationBar({ showSearchBar, searchValue, searchPlaceholder, title, border, backUrl, showClear, clearText, icons, actions, children, hasBackground, avatar, onSearchChange, onClear, onBack, }: ISecondaryNavigationBar): react_jsx_runtime.JSX.Element;
976
977
 
977
978
  interface ISelectProps extends SelectPrimitive.SelectProps {
978
979
  options?: Array<{
@@ -1057,7 +1058,7 @@ declare const SliderSingle: React$1.ForwardRefExoticComponent<Omit<ISliderSingle
1057
1058
  declare const spinnerVariants: (props?: ({
1058
1059
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
1059
1060
  speed?: "default" | "slow" | "fast" | null | undefined;
1060
- color?: "default" | "static" | "brand" | "warning" | "success" | null | undefined;
1061
+ color?: "default" | "brand" | "warning" | "success" | "static" | null | undefined;
1061
1062
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1062
1063
  interface SpinnerProps extends VariantProps<typeof spinnerVariants> {
1063
1064
  className?: ClassNameValue;
@@ -1240,45 +1241,45 @@ type BlockProps = {
1240
1241
  declare const dangerouText: (text: string) => string;
1241
1242
  declare const Heading: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1242
1243
  size?: "h1" | "h2" | "h3" | "h4" | "h5" | null | undefined;
1243
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1244
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1244
1245
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1245
1246
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLHeadingElement>>;
1246
1247
  declare const Display: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1247
1248
  size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
1248
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1249
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1249
1250
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1250
1251
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLElement & HTMLParagraphElement>>;
1251
1252
  declare const Title: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1252
1253
  size?: "h1" | "h2" | "h3" | "h4" | "h5" | null | undefined;
1253
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1254
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1254
1255
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1255
1256
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLHeadingElement>>;
1256
1257
  declare const SubHeading: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1257
1258
  size?: "sm" | "lg" | null | undefined;
1258
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1259
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1259
1260
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1260
1261
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLParagraphElement>>;
1261
1262
  declare const SubTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1262
1263
  size?: "sm" | "lg" | null | undefined;
1263
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1264
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1264
1265
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1265
1266
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLParagraphElement>>;
1266
1267
  declare const Text: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1267
1268
  size?: "xs" | "sm" | "lg" | null | undefined;
1268
1269
  weight?: "regular" | "medium" | "semibold" | null | undefined;
1269
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1270
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1270
1271
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1271
1272
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLElement & HTMLParagraphElement>>;
1272
1273
  declare const Paragraph: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1273
1274
  size?: "xs" | "sm" | "lg" | null | undefined;
1274
1275
  weight?: "regular" | "medium" | "semibold" | null | undefined;
1275
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1276
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1276
1277
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1277
1278
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLElement & HTMLParagraphElement>>;
1278
1279
  declare const Description: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1279
1280
  size?: "sm" | "lg" | null | undefined;
1280
1281
  weight?: "regular" | "medium" | null | undefined;
1281
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1282
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1282
1283
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1283
1284
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLParagraphElement>>;
1284
1285
 
@@ -1288,7 +1289,7 @@ interface ToastViewportProps extends React$1.ComponentPropsWithoutRef<typeof Toa
1288
1289
  }
1289
1290
  declare const ToastViewport: React$1.ForwardRefExoticComponent<ToastViewportProps & React$1.RefAttributes<HTMLOListElement>>;
1290
1291
  declare const Toast$1: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
1291
- variant?: "error" | "warning" | "success" | "info" | null | undefined;
1292
+ variant?: "warning" | "success" | "error" | "info" | null | undefined;
1292
1293
  position?: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | "left-center" | "right-center" | null | undefined;
1293
1294
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLLIElement>>;
1294
1295
  declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
@@ -1475,7 +1476,7 @@ declare function DownIcon({ className }: {
1475
1476
 
1476
1477
  declare const ArrowLeftIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1477
1478
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1478
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1479
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1479
1480
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1480
1481
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1481
1482
  component?: React$1.ElementType;
@@ -1483,7 +1484,7 @@ declare const ArrowLeftIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttri
1483
1484
 
1484
1485
  declare const ArrowUpTrayIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1485
1486
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1486
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1487
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1487
1488
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1488
1489
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1489
1490
  component?: React$1.ElementType;
@@ -1491,7 +1492,7 @@ declare const ArrowUpTrayIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAtt
1491
1492
 
1492
1493
  declare const WindowIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1493
1494
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1494
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1495
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1495
1496
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1496
1497
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1497
1498
  component?: React$1.ElementType;
@@ -1499,7 +1500,7 @@ declare const WindowIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttribut
1499
1500
 
1500
1501
  declare const CheckCircleIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1501
1502
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1502
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1503
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1503
1504
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1504
1505
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1505
1506
  component?: React$1.ElementType;
@@ -1507,7 +1508,7 @@ declare const CheckCircleIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAtt
1507
1508
 
1508
1509
  declare const PencilSquareIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1509
1510
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1510
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1511
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1511
1512
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1512
1513
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1513
1514
  component?: React$1.ElementType;
@@ -1515,7 +1516,7 @@ declare const PencilSquareIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAt
1515
1516
 
1516
1517
  declare const ConfigIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1517
1518
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1518
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1519
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1519
1520
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1520
1521
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1521
1522
  component?: React$1.ElementType;
@@ -1523,7 +1524,7 @@ declare const ConfigIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttribut
1523
1524
 
1524
1525
  declare const CaretDownIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1525
1526
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1526
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1527
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1527
1528
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1528
1529
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1529
1530
  component?: React$1.ElementType;
@@ -1531,7 +1532,7 @@ declare const CaretDownIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttri
1531
1532
 
1532
1533
  declare const CodeIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1533
1534
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1534
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1535
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1535
1536
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1536
1537
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1537
1538
  component?: React$1.ElementType;
@@ -1539,7 +1540,7 @@ declare const CodeIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes
1539
1540
 
1540
1541
  declare const DragIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1541
1542
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1542
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1543
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1543
1544
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1544
1545
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1545
1546
  component?: React$1.ElementType;
@@ -1547,7 +1548,7 @@ declare const DragIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes
1547
1548
 
1548
1549
  declare const PhoneIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1549
1550
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1550
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1551
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1551
1552
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1552
1553
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1553
1554
  component?: React$1.ElementType;
@@ -1555,7 +1556,7 @@ declare const PhoneIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttribute
1555
1556
 
1556
1557
  declare const RectangleGroupIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1557
1558
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1558
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1559
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1559
1560
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1560
1561
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1561
1562
  component?: React$1.ElementType;
package/dist/index.d.ts CHANGED
@@ -65,7 +65,7 @@ declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<Accordion
65
65
  declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
66
66
 
67
67
  declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
68
- variant?: "default" | "error" | "warning" | "destructive" | "info" | null | undefined;
68
+ variant?: "default" | "warning" | "error" | "destructive" | "info" | null | undefined;
69
69
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
70
70
  declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
71
71
  declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
@@ -136,7 +136,7 @@ declare function Badge(props: BadgeProps): react_jsx_runtime.JSX.Element;
136
136
 
137
137
  declare const buttonVariants: (props?: ({
138
138
  variant?: "link" | "opacity" | "static" | "primary" | "secondary" | "tertiary" | "plain" | "solid" | null | undefined;
139
- color?: "default" | "error" | "brand" | "gray" | "chat" | null | undefined;
139
+ color?: "default" | "brand" | "error" | "gray" | "chat" | null | undefined;
140
140
  size?: "sm" | "md" | "lg" | null | undefined;
141
141
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
142
142
 
@@ -358,7 +358,7 @@ declare const Guide: React$1.FC<GuideProps>;
358
358
 
359
359
  declare const iconVariants: (props?: ({
360
360
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
361
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
361
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
362
362
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
363
363
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
364
364
  type IconProps = React$1.HTMLAttributes<HTMLSpanElement> & VariantProps<typeof iconVariants> & {
@@ -369,7 +369,7 @@ type IconProps = React$1.HTMLAttributes<HTMLSpanElement> & VariantProps<typeof i
369
369
  };
370
370
  declare const Icon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & VariantProps<(props?: ({
371
371
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
372
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
372
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
373
373
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
374
374
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
375
375
  /**
@@ -381,7 +381,7 @@ type IconComponent = React$1.ForwardRefExoticComponent<IconProps>;
381
381
 
382
382
  declare const iconButtonVariants: (props?: ({
383
383
  variant?: "opacity" | "primary" | "secondary" | "tertiary" | "plain" | "solid" | null | undefined;
384
- color?: "default" | "error" | "brand" | "gray" | null | undefined;
384
+ color?: "default" | "brand" | "error" | "gray" | null | undefined;
385
385
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
386
386
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
387
387
  type IconButtonSize = 'xs' | 'sm' | 'md' | 'lg';
@@ -880,15 +880,15 @@ type HeroIcon = React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGP
880
880
  } & React.RefAttributes<SVGSVGElement>>;
881
881
 
882
882
  type IIcons = {
883
- icon: HeroIcon | LucideIcon | IconComponent | React.ElementType;
883
+ icon: HeroIcon | LucideIcon | React.ElementType;
884
884
  onClick?: () => void;
885
885
  };
886
886
  type IActions = {
887
887
  label: string;
888
888
  onClick?: () => void;
889
- icon?: HeroIcon | LucideIcon | IconComponent | React.ElementType;
890
- variant?: 'primary' | 'secondary' | 'static' | 'link' | 'plain';
891
- color?: 'default' | 'brand' | 'error' | 'chat';
889
+ icon?: HeroIcon | LucideIcon | React.ElementType;
890
+ variant?: 'primary' | 'secondary' | 'tertiary' | 'static' | 'link' | 'plain' | 'solid';
891
+ color?: 'default' | 'brand' | 'error';
892
892
  };
893
893
  type ISecondaryNavigationBar = {
894
894
  /**
@@ -971,8 +971,9 @@ type ISecondaryNavigationBar = {
971
971
  };
972
972
  onSearchChange?: (value: string) => void;
973
973
  onClear?: () => void;
974
+ onBack?: () => void;
974
975
  };
975
- declare function SecondaryNavigationBar({ showSearchBar, searchValue, searchPlaceholder, title, border, backUrl, showClear, clearText, icons, actions, children, hasBackground, avatar, onSearchChange, onClear, }: ISecondaryNavigationBar): react_jsx_runtime.JSX.Element;
976
+ declare function SecondaryNavigationBar({ showSearchBar, searchValue, searchPlaceholder, title, border, backUrl, showClear, clearText, icons, actions, children, hasBackground, avatar, onSearchChange, onClear, onBack, }: ISecondaryNavigationBar): react_jsx_runtime.JSX.Element;
976
977
 
977
978
  interface ISelectProps extends SelectPrimitive.SelectProps {
978
979
  options?: Array<{
@@ -1057,7 +1058,7 @@ declare const SliderSingle: React$1.ForwardRefExoticComponent<Omit<ISliderSingle
1057
1058
  declare const spinnerVariants: (props?: ({
1058
1059
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
1059
1060
  speed?: "default" | "slow" | "fast" | null | undefined;
1060
- color?: "default" | "static" | "brand" | "warning" | "success" | null | undefined;
1061
+ color?: "default" | "brand" | "warning" | "success" | "static" | null | undefined;
1061
1062
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1062
1063
  interface SpinnerProps extends VariantProps<typeof spinnerVariants> {
1063
1064
  className?: ClassNameValue;
@@ -1240,45 +1241,45 @@ type BlockProps = {
1240
1241
  declare const dangerouText: (text: string) => string;
1241
1242
  declare const Heading: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1242
1243
  size?: "h1" | "h2" | "h3" | "h4" | "h5" | null | undefined;
1243
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1244
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1244
1245
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1245
1246
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLHeadingElement>>;
1246
1247
  declare const Display: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1247
1248
  size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
1248
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1249
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1249
1250
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1250
1251
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLElement & HTMLParagraphElement>>;
1251
1252
  declare const Title: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1252
1253
  size?: "h1" | "h2" | "h3" | "h4" | "h5" | null | undefined;
1253
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1254
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1254
1255
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1255
1256
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLHeadingElement>>;
1256
1257
  declare const SubHeading: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1257
1258
  size?: "sm" | "lg" | null | undefined;
1258
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1259
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1259
1260
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1260
1261
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLParagraphElement>>;
1261
1262
  declare const SubTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1262
1263
  size?: "sm" | "lg" | null | undefined;
1263
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1264
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1264
1265
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1265
1266
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLParagraphElement>>;
1266
1267
  declare const Text: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1267
1268
  size?: "xs" | "sm" | "lg" | null | undefined;
1268
1269
  weight?: "regular" | "medium" | "semibold" | null | undefined;
1269
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1270
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1270
1271
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1271
1272
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLElement & HTMLParagraphElement>>;
1272
1273
  declare const Paragraph: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1273
1274
  size?: "xs" | "sm" | "lg" | null | undefined;
1274
1275
  weight?: "regular" | "medium" | "semibold" | null | undefined;
1275
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1276
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1276
1277
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1277
1278
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLElement & HTMLParagraphElement>>;
1278
1279
  declare const Description: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & VariantProps<(props?: ({
1279
1280
  size?: "sm" | "lg" | null | undefined;
1280
1281
  weight?: "regular" | "medium" | null | undefined;
1281
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "static" | "static-black" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1282
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | "static" | "static-black" | null | undefined;
1282
1283
  lineClamp?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
1283
1284
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & BlockProps & React$1.RefAttributes<HTMLParagraphElement>>;
1284
1285
 
@@ -1288,7 +1289,7 @@ interface ToastViewportProps extends React$1.ComponentPropsWithoutRef<typeof Toa
1288
1289
  }
1289
1290
  declare const ToastViewport: React$1.ForwardRefExoticComponent<ToastViewportProps & React$1.RefAttributes<HTMLOListElement>>;
1290
1291
  declare const Toast$1: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
1291
- variant?: "error" | "warning" | "success" | "info" | null | undefined;
1292
+ variant?: "warning" | "success" | "error" | "info" | null | undefined;
1292
1293
  position?: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | "left-center" | "right-center" | null | undefined;
1293
1294
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLLIElement>>;
1294
1295
  declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
@@ -1475,7 +1476,7 @@ declare function DownIcon({ className }: {
1475
1476
 
1476
1477
  declare const ArrowLeftIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1477
1478
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1478
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1479
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1479
1480
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1480
1481
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1481
1482
  component?: React$1.ElementType;
@@ -1483,7 +1484,7 @@ declare const ArrowLeftIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttri
1483
1484
 
1484
1485
  declare const ArrowUpTrayIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1485
1486
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1486
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1487
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1487
1488
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1488
1489
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1489
1490
  component?: React$1.ElementType;
@@ -1491,7 +1492,7 @@ declare const ArrowUpTrayIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAtt
1491
1492
 
1492
1493
  declare const WindowIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1493
1494
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1494
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1495
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1495
1496
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1496
1497
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1497
1498
  component?: React$1.ElementType;
@@ -1499,7 +1500,7 @@ declare const WindowIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttribut
1499
1500
 
1500
1501
  declare const CheckCircleIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1501
1502
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1502
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1503
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1503
1504
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1504
1505
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1505
1506
  component?: React$1.ElementType;
@@ -1507,7 +1508,7 @@ declare const CheckCircleIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAtt
1507
1508
 
1508
1509
  declare const PencilSquareIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1509
1510
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1510
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1511
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1511
1512
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1512
1513
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1513
1514
  component?: React$1.ElementType;
@@ -1515,7 +1516,7 @@ declare const PencilSquareIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAt
1515
1516
 
1516
1517
  declare const ConfigIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1517
1518
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1518
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1519
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1519
1520
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1520
1521
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1521
1522
  component?: React$1.ElementType;
@@ -1523,7 +1524,7 @@ declare const ConfigIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttribut
1523
1524
 
1524
1525
  declare const CaretDownIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1525
1526
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1526
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1527
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1527
1528
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1528
1529
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1529
1530
  component?: React$1.ElementType;
@@ -1531,7 +1532,7 @@ declare const CaretDownIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttri
1531
1532
 
1532
1533
  declare const CodeIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1533
1534
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1534
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1535
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1535
1536
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1536
1537
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1537
1538
  component?: React$1.ElementType;
@@ -1539,7 +1540,7 @@ declare const CodeIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes
1539
1540
 
1540
1541
  declare const DragIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1541
1542
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1542
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1543
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1543
1544
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1544
1545
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1545
1546
  component?: React$1.ElementType;
@@ -1547,7 +1548,7 @@ declare const DragIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes
1547
1548
 
1548
1549
  declare const PhoneIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1549
1550
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1550
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1551
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1551
1552
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1552
1553
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1553
1554
  component?: React$1.ElementType;
@@ -1555,7 +1556,7 @@ declare const PhoneIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttribute
1555
1556
 
1556
1557
  declare const RectangleGroupIcon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & class_variance_authority.VariantProps<(props?: ({
1557
1558
  size?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | null | undefined;
1558
- color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | null | undefined;
1559
+ color?: "default" | "subtle" | "subtler" | "subtlest" | "disabled" | "bolder" | "inverse" | "critical" | "brand" | "critical-bolder" | "warning" | "warning-bolder" | "success" | "success-bolder" | null | undefined;
1559
1560
  rotate?: "45" | "90" | "-45" | "-90" | "180" | null | undefined;
1560
1561
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & {
1561
1562
  component?: React$1.ElementType;