braid-ui 1.0.113 → 1.0.115

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
@@ -3,7 +3,7 @@ import { z } from 'zod';
3
3
  import * as React$1 from 'react';
4
4
  import React__default, { ReactNode } from 'react';
5
5
  import { UseFormReturn, FieldValues, FieldPath, UseFormProps, Path } from 'react-hook-form';
6
- import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
6
+ import * as class_variance_authority_types from 'class-variance-authority/types';
7
7
  import { VariantProps } from 'class-variance-authority';
8
8
  import { DayPicker } from 'react-day-picker';
9
9
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
@@ -362,6 +362,12 @@ interface CounterpartiesViewProps {
362
362
  }
363
363
  declare const CounterpartiesView: ({ table, filters, onFilterChange, onResetFilters, onCreateCounterparty }: CounterpartiesViewProps) => react_jsx_runtime.JSX.Element;
364
364
 
365
+ interface CounterpartyTimelineEvent {
366
+ id: string;
367
+ action: string;
368
+ timestamp: string;
369
+ }
370
+
365
371
  interface PaymentMethodCardProps {
366
372
  type: "ACH" | "Wire";
367
373
  fiId: string;
@@ -458,13 +464,14 @@ interface CounterpartyDetailViewProps {
458
464
  onNavigateToTransactions?: () => void;
459
465
  latestOFAC?: OFACCheck;
460
466
  onNavigateToOFAC?: (ofacCheckId?: string) => void;
467
+ timeline: CounterpartyTimelineEvent[];
461
468
  }
462
- declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
469
+ declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, timeline, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
463
470
 
464
471
  declare const inputVariants: (props?: {
465
472
  variant?: "default" | "success" | "disabled" | "error" | "readonly";
466
473
  size?: "default" | "sm" | "lg";
467
- } & class_variance_authority_dist_types.ClassProp) => string;
474
+ } & class_variance_authority_types.ClassProp) => string;
468
475
  interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
469
476
  label?: string;
470
477
  hint?: string;
@@ -1415,7 +1422,7 @@ declare const AccountTypeBadge: ({ type, className }: AccountTypeBadgeProps) =>
1415
1422
 
1416
1423
  declare const badgeVariants: (props?: {
1417
1424
  variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "blocked" | "inbound" | "outbound" | "business" | "individual" | "government" | "nonprofit" | "corporation" | "llc" | "partnership" | "sole_proprietorship" | "active" | "inactive" | "pending" | "suspended" | "cip-active" | "cip-inactive" | "cip-pending" | "cip-secondary" | "alert-ofac" | "alert-dual" | "alert-monitoring" | "alert-error" | "ofac_no_match" | "ofac_review" | "ofac_cleared" | "ofac_confirmed" | "ofac_blocked" | "checking" | "savings" | "zero-balance" | "funding";
1418
- } & class_variance_authority_dist_types.ClassProp) => string;
1425
+ } & class_variance_authority_types.ClassProp) => string;
1419
1426
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
1420
1427
  }
1421
1428
  declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
@@ -1429,7 +1436,7 @@ declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) =
1429
1436
  declare const buttonVariants: (props?: {
1430
1437
  variant?: "default" | "ghost" | "link" | "secondary" | "destructive" | "outline";
1431
1438
  size?: "default" | "sm" | "lg" | "icon";
1432
- } & class_variance_authority_dist_types.ClassProp) => string;
1439
+ } & class_variance_authority_types.ClassProp) => string;
1433
1440
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
1434
1441
  asChild?: boolean;
1435
1442
  }
@@ -1446,7 +1453,7 @@ declare const cardVariants: (props?: {
1446
1453
  size?: "sm" | "md" | "lg" | "none";
1447
1454
  fullHeight?: boolean;
1448
1455
  interactive?: boolean;
1449
- } & class_variance_authority_dist_types.ClassProp) => string;
1456
+ } & class_variance_authority_types.ClassProp) => string;
1450
1457
  interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
1451
1458
  }
1452
1459
  declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1454,13 +1461,13 @@ declare const cardHeaderVariants: (props?: {
1454
1461
  size?: "sm" | "md" | "lg";
1455
1462
  align?: "start" | "center" | "end";
1456
1463
  direction?: "row" | "column";
1457
- } & class_variance_authority_dist_types.ClassProp) => string;
1464
+ } & class_variance_authority_types.ClassProp) => string;
1458
1465
  interface CardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
1459
1466
  }
1460
1467
  declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
1461
1468
  declare const cardTitleVariants: (props?: {
1462
1469
  size?: "sm" | "md" | "lg";
1463
- } & class_variance_authority_dist_types.ClassProp) => string;
1470
+ } & class_variance_authority_types.ClassProp) => string;
1464
1471
  interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
1465
1472
  }
1466
1473
  declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
@@ -1468,14 +1475,14 @@ declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAtt
1468
1475
  declare const cardContentVariants: (props?: {
1469
1476
  size?: "sm" | "md" | "lg";
1470
1477
  fullHeight?: boolean;
1471
- } & class_variance_authority_dist_types.ClassProp) => string;
1478
+ } & class_variance_authority_types.ClassProp) => string;
1472
1479
  interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
1473
1480
  }
1474
1481
  declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
1475
1482
  declare const cardFooterVariants: (props?: {
1476
1483
  size?: "sm" | "md" | "lg";
1477
1484
  justify?: "start" | "center" | "end" | "between";
1478
- } & class_variance_authority_dist_types.ClassProp) => string;
1485
+ } & class_variance_authority_types.ClassProp) => string;
1479
1486
  interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
1480
1487
  }
1481
1488
  declare const CardFooter: React$1.ForwardRefExoticComponent<CardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1641,7 +1648,7 @@ declare const EditableInfoField: ({ label, value, options, onChange, placeholder
1641
1648
 
1642
1649
  declare const selectVariants: (props?: {
1643
1650
  variant?: "default" | "success" | "disabled" | "error";
1644
- } & class_variance_authority_dist_types.ClassProp) => string;
1651
+ } & class_variance_authority_types.ClassProp) => string;
1645
1652
  interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
1646
1653
  label?: string;
1647
1654
  hint?: string;
@@ -1663,7 +1670,7 @@ declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectPr
1663
1670
 
1664
1671
  declare const textareaVariants: (props?: {
1665
1672
  variant?: "default" | "success" | "disabled" | "error" | "readonly";
1666
- } & class_variance_authority_dist_types.ClassProp) => string;
1673
+ } & class_variance_authority_types.ClassProp) => string;
1667
1674
  interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
1668
1675
  label?: string;
1669
1676
  hint?: string;
@@ -1765,7 +1772,7 @@ interface JsonViewerProps {
1765
1772
  }
1766
1773
  declare const JsonViewer: ({ data, className, compact, maxHeight, expandFully, defaultExpandDepth }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
1767
1774
 
1768
- declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
1775
+ declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
1769
1776
 
1770
1777
  interface MetricCardProps {
1771
1778
  title: string;
@@ -1839,7 +1846,7 @@ declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
1839
1846
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1840
1847
  declare const sheetVariants: (props?: {
1841
1848
  side?: "left" | "right" | "top" | "bottom";
1842
- } & class_variance_authority_dist_types.ClassProp) => string;
1849
+ } & class_variance_authority_types.ClassProp) => string;
1843
1850
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1844
1851
  }
1845
1852
  declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1905,7 +1912,7 @@ declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.
1905
1912
  } & VariantProps<(props?: {
1906
1913
  variant?: "default" | "outline";
1907
1914
  size?: "default" | "sm" | "lg";
1908
- } & class_variance_authority_dist_types.ClassProp) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1915
+ } & class_variance_authority_types.ClassProp) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1909
1916
  declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1910
1917
  asChild?: boolean;
1911
1918
  showOnHover?: boolean;
@@ -1969,7 +1976,7 @@ declare const ToastProvider: React$1.FC<ToastPrimitives.ToastProviderProps>;
1969
1976
  declare const ToastViewport: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastViewportProps & React$1.RefAttributes<HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
1970
1977
  declare const Toast$1: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: {
1971
1978
  variant?: "default" | "destructive";
1972
- } & class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLIElement>>;
1979
+ } & class_variance_authority_types.ClassProp) => string> & React$1.RefAttributes<HTMLLIElement>>;
1973
1980
  declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1974
1981
  declare const ToastClose: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1975
1982
  declare const ToastTitle: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastTitleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import { z } from 'zod';
3
3
  import * as React$1 from 'react';
4
4
  import React__default, { ReactNode } from 'react';
5
5
  import { UseFormReturn, FieldValues, FieldPath, UseFormProps, Path } from 'react-hook-form';
6
- import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
6
+ import * as class_variance_authority_types from 'class-variance-authority/types';
7
7
  import { VariantProps } from 'class-variance-authority';
8
8
  import { DayPicker } from 'react-day-picker';
9
9
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
@@ -362,6 +362,12 @@ interface CounterpartiesViewProps {
362
362
  }
363
363
  declare const CounterpartiesView: ({ table, filters, onFilterChange, onResetFilters, onCreateCounterparty }: CounterpartiesViewProps) => react_jsx_runtime.JSX.Element;
364
364
 
365
+ interface CounterpartyTimelineEvent {
366
+ id: string;
367
+ action: string;
368
+ timestamp: string;
369
+ }
370
+
365
371
  interface PaymentMethodCardProps {
366
372
  type: "ACH" | "Wire";
367
373
  fiId: string;
@@ -458,13 +464,14 @@ interface CounterpartyDetailViewProps {
458
464
  onNavigateToTransactions?: () => void;
459
465
  latestOFAC?: OFACCheck;
460
466
  onNavigateToOFAC?: (ofacCheckId?: string) => void;
467
+ timeline: CounterpartyTimelineEvent[];
461
468
  }
462
- declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
469
+ declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, timeline, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
463
470
 
464
471
  declare const inputVariants: (props?: {
465
472
  variant?: "default" | "success" | "disabled" | "error" | "readonly";
466
473
  size?: "default" | "sm" | "lg";
467
- } & class_variance_authority_dist_types.ClassProp) => string;
474
+ } & class_variance_authority_types.ClassProp) => string;
468
475
  interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
469
476
  label?: string;
470
477
  hint?: string;
@@ -1415,7 +1422,7 @@ declare const AccountTypeBadge: ({ type, className }: AccountTypeBadgeProps) =>
1415
1422
 
1416
1423
  declare const badgeVariants: (props?: {
1417
1424
  variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "blocked" | "inbound" | "outbound" | "business" | "individual" | "government" | "nonprofit" | "corporation" | "llc" | "partnership" | "sole_proprietorship" | "active" | "inactive" | "pending" | "suspended" | "cip-active" | "cip-inactive" | "cip-pending" | "cip-secondary" | "alert-ofac" | "alert-dual" | "alert-monitoring" | "alert-error" | "ofac_no_match" | "ofac_review" | "ofac_cleared" | "ofac_confirmed" | "ofac_blocked" | "checking" | "savings" | "zero-balance" | "funding";
1418
- } & class_variance_authority_dist_types.ClassProp) => string;
1425
+ } & class_variance_authority_types.ClassProp) => string;
1419
1426
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
1420
1427
  }
1421
1428
  declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
@@ -1429,7 +1436,7 @@ declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) =
1429
1436
  declare const buttonVariants: (props?: {
1430
1437
  variant?: "default" | "ghost" | "link" | "secondary" | "destructive" | "outline";
1431
1438
  size?: "default" | "sm" | "lg" | "icon";
1432
- } & class_variance_authority_dist_types.ClassProp) => string;
1439
+ } & class_variance_authority_types.ClassProp) => string;
1433
1440
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
1434
1441
  asChild?: boolean;
1435
1442
  }
@@ -1446,7 +1453,7 @@ declare const cardVariants: (props?: {
1446
1453
  size?: "sm" | "md" | "lg" | "none";
1447
1454
  fullHeight?: boolean;
1448
1455
  interactive?: boolean;
1449
- } & class_variance_authority_dist_types.ClassProp) => string;
1456
+ } & class_variance_authority_types.ClassProp) => string;
1450
1457
  interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
1451
1458
  }
1452
1459
  declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1454,13 +1461,13 @@ declare const cardHeaderVariants: (props?: {
1454
1461
  size?: "sm" | "md" | "lg";
1455
1462
  align?: "start" | "center" | "end";
1456
1463
  direction?: "row" | "column";
1457
- } & class_variance_authority_dist_types.ClassProp) => string;
1464
+ } & class_variance_authority_types.ClassProp) => string;
1458
1465
  interface CardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
1459
1466
  }
1460
1467
  declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
1461
1468
  declare const cardTitleVariants: (props?: {
1462
1469
  size?: "sm" | "md" | "lg";
1463
- } & class_variance_authority_dist_types.ClassProp) => string;
1470
+ } & class_variance_authority_types.ClassProp) => string;
1464
1471
  interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
1465
1472
  }
1466
1473
  declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
@@ -1468,14 +1475,14 @@ declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAtt
1468
1475
  declare const cardContentVariants: (props?: {
1469
1476
  size?: "sm" | "md" | "lg";
1470
1477
  fullHeight?: boolean;
1471
- } & class_variance_authority_dist_types.ClassProp) => string;
1478
+ } & class_variance_authority_types.ClassProp) => string;
1472
1479
  interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
1473
1480
  }
1474
1481
  declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
1475
1482
  declare const cardFooterVariants: (props?: {
1476
1483
  size?: "sm" | "md" | "lg";
1477
1484
  justify?: "start" | "center" | "end" | "between";
1478
- } & class_variance_authority_dist_types.ClassProp) => string;
1485
+ } & class_variance_authority_types.ClassProp) => string;
1479
1486
  interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
1480
1487
  }
1481
1488
  declare const CardFooter: React$1.ForwardRefExoticComponent<CardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1641,7 +1648,7 @@ declare const EditableInfoField: ({ label, value, options, onChange, placeholder
1641
1648
 
1642
1649
  declare const selectVariants: (props?: {
1643
1650
  variant?: "default" | "success" | "disabled" | "error";
1644
- } & class_variance_authority_dist_types.ClassProp) => string;
1651
+ } & class_variance_authority_types.ClassProp) => string;
1645
1652
  interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
1646
1653
  label?: string;
1647
1654
  hint?: string;
@@ -1663,7 +1670,7 @@ declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectPr
1663
1670
 
1664
1671
  declare const textareaVariants: (props?: {
1665
1672
  variant?: "default" | "success" | "disabled" | "error" | "readonly";
1666
- } & class_variance_authority_dist_types.ClassProp) => string;
1673
+ } & class_variance_authority_types.ClassProp) => string;
1667
1674
  interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
1668
1675
  label?: string;
1669
1676
  hint?: string;
@@ -1765,7 +1772,7 @@ interface JsonViewerProps {
1765
1772
  }
1766
1773
  declare const JsonViewer: ({ data, className, compact, maxHeight, expandFully, defaultExpandDepth }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
1767
1774
 
1768
- declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
1775
+ declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
1769
1776
 
1770
1777
  interface MetricCardProps {
1771
1778
  title: string;
@@ -1839,7 +1846,7 @@ declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
1839
1846
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1840
1847
  declare const sheetVariants: (props?: {
1841
1848
  side?: "left" | "right" | "top" | "bottom";
1842
- } & class_variance_authority_dist_types.ClassProp) => string;
1849
+ } & class_variance_authority_types.ClassProp) => string;
1843
1850
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1844
1851
  }
1845
1852
  declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1905,7 +1912,7 @@ declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.
1905
1912
  } & VariantProps<(props?: {
1906
1913
  variant?: "default" | "outline";
1907
1914
  size?: "default" | "sm" | "lg";
1908
- } & class_variance_authority_dist_types.ClassProp) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1915
+ } & class_variance_authority_types.ClassProp) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1909
1916
  declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1910
1917
  asChild?: boolean;
1911
1918
  showOnHover?: boolean;
@@ -1969,7 +1976,7 @@ declare const ToastProvider: React$1.FC<ToastPrimitives.ToastProviderProps>;
1969
1976
  declare const ToastViewport: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastViewportProps & React$1.RefAttributes<HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
1970
1977
  declare const Toast$1: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: {
1971
1978
  variant?: "default" | "destructive";
1972
- } & class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLIElement>>;
1979
+ } & class_variance_authority_types.ClassProp) => string> & React$1.RefAttributes<HTMLLIElement>>;
1973
1980
  declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1974
1981
  declare const ToastClose: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1975
1982
  declare const ToastTitle: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastTitleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;