randmarcomps 1.237.0 → 1.238.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.
@@ -1,4 +1,5 @@
1
1
  import { Account } from 'randmar-api-client';
2
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
2
3
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
3
4
  import { ButtonProps as ButtonProps_2 } from './button';
4
5
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
@@ -62,6 +63,30 @@ export declare const Alert: React_2.ForwardRefExoticComponent<React_2.HTMLAttrib
62
63
 
63
64
  export declare const AlertDescription: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLParagraphElement> & React_2.RefAttributes<HTMLParagraphElement>>;
64
65
 
66
+ export declare const AlertDialog: React_2.FC<AlertDialogPrimitive.AlertDialogProps>;
67
+
68
+ export declare const AlertDialogAction: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
69
+
70
+ export declare const AlertDialogCancel: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
71
+
72
+ export declare const AlertDialogContent: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
73
+
74
+ export declare const AlertDialogDescription: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React_2.RefAttributes<HTMLParagraphElement>, "ref"> & React_2.RefAttributes<HTMLParagraphElement>>;
75
+
76
+ export declare const AlertDialogFooter: {
77
+ ({ className, ...props }: React_2.HTMLAttributes<HTMLDivElement>): JSX.Element;
78
+ displayName: string;
79
+ };
80
+
81
+ export declare const AlertDialogHeader: {
82
+ ({ className, ...props }: React_2.HTMLAttributes<HTMLDivElement>): JSX.Element;
83
+ displayName: string;
84
+ };
85
+
86
+ export declare const AlertDialogTitle: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React_2.RefAttributes<HTMLHeadingElement>, "ref"> & React_2.RefAttributes<HTMLHeadingElement>>;
87
+
88
+ export declare const AlertDialogTrigger: React_2.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
89
+
65
90
  export declare const AlertTitle: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLHeadingElement> & React_2.RefAttributes<HTMLParagraphElement>>;
66
91
 
67
92
  declare interface ApiKeyContextType {
@@ -473,6 +498,14 @@ export declare interface NavRoute {
473
498
  showInNav?: boolean;
474
499
  }
475
500
 
501
+ export declare function PageHeader({ title, children, className }: PageHeaderProps): JSX.Element;
502
+
503
+ export declare interface PageHeaderProps {
504
+ title: string;
505
+ children?: React.ReactNode;
506
+ className?: string;
507
+ }
508
+
476
509
  export declare function PartnerCard({ account, action, loading, className, withAbout, withVoice }: PartnerCardProps): JSX.Element;
477
510
 
478
511
  declare interface PartnerCardProps {
@@ -577,6 +610,14 @@ declare interface ResellerQualificationsCardProps {
577
610
  loading?: boolean;
578
611
  }
579
612
 
613
+ export declare function RichTextEditor({ id, name, value, onChange, placeholder, className, ...props }: RichTextEditorProps): JSX.Element | null;
614
+
615
+ export declare interface RichTextEditorProps extends Omit<default_2.InputHTMLAttributes<HTMLInputElement>, "onChange"> {
616
+ value: string;
617
+ onChange: default_2.ChangeEventHandler<HTMLInputElement>;
618
+ placeholder?: string;
619
+ }
620
+
580
621
  export declare function SalesOverviewCard({ salesData, salesStatistics, loading }: SalesOverviewCardProps): JSX.Element;
581
622
 
582
623
  declare interface SalesOverviewCardProps {