braid-ui 1.0.114 → 1.0.116
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +32 -26
- package/dist/index.d.ts +32 -26
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
|
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';
|
|
@@ -274,7 +274,7 @@ interface BusinessAccount$1 {
|
|
|
274
274
|
bankName: string;
|
|
275
275
|
bankAccountType: string;
|
|
276
276
|
}
|
|
277
|
-
interface SelectOption$
|
|
277
|
+
interface SelectOption$5 {
|
|
278
278
|
value: string;
|
|
279
279
|
label: string;
|
|
280
280
|
}
|
|
@@ -291,8 +291,8 @@ interface BusinessDetailViewProps {
|
|
|
291
291
|
businessAccounts: BusinessAccount$1[];
|
|
292
292
|
currentStatus: string;
|
|
293
293
|
isEditingProfile: boolean;
|
|
294
|
-
statusOptions: SelectOption$
|
|
295
|
-
businessEntityTypeOptions: SelectOption$
|
|
294
|
+
statusOptions: SelectOption$5[];
|
|
295
|
+
businessEntityTypeOptions: SelectOption$5[];
|
|
296
296
|
onStatusChange: (newStatus: string) => void;
|
|
297
297
|
onProfileDataChange: (profile: BusinessProfile) => void;
|
|
298
298
|
onToggleProfileEdit: () => void;
|
|
@@ -471,7 +471,7 @@ declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, cur
|
|
|
471
471
|
declare const inputVariants: (props?: {
|
|
472
472
|
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
473
473
|
size?: "default" | "sm" | "lg";
|
|
474
|
-
} &
|
|
474
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
475
475
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
476
476
|
label?: string;
|
|
477
477
|
hint?: string;
|
|
@@ -560,7 +560,7 @@ interface AccountFormValues {
|
|
|
560
560
|
fundingAccountNumber?: string;
|
|
561
561
|
sweepAccountNumber?: string;
|
|
562
562
|
}
|
|
563
|
-
interface SelectOption$
|
|
563
|
+
interface SelectOption$4 {
|
|
564
564
|
value: string;
|
|
565
565
|
label: string;
|
|
566
566
|
}
|
|
@@ -568,8 +568,8 @@ interface AccountDetailViewProps {
|
|
|
568
568
|
account: BusinessAccount;
|
|
569
569
|
currentStatus: string;
|
|
570
570
|
onStatusChange: (status: string) => void;
|
|
571
|
-
statusOptions: SelectOption$
|
|
572
|
-
canAcceptSweepOptions: SelectOption$
|
|
571
|
+
statusOptions: SelectOption$4[];
|
|
572
|
+
canAcceptSweepOptions: SelectOption$4[];
|
|
573
573
|
form: UseFormReturn<AccountFormValues> & {
|
|
574
574
|
isEditing: boolean;
|
|
575
575
|
handleToggleEdit: () => void;
|
|
@@ -679,7 +679,7 @@ declare const externalAccountSchema: z.ZodObject<{
|
|
|
679
679
|
}, z.core.$strip>;
|
|
680
680
|
type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
|
|
681
681
|
|
|
682
|
-
interface SelectOption$
|
|
682
|
+
interface SelectOption$3 {
|
|
683
683
|
value: string;
|
|
684
684
|
label: string;
|
|
685
685
|
}
|
|
@@ -694,7 +694,7 @@ interface IndividualDetailViewProps {
|
|
|
694
694
|
profile: IndividualProfileEdit;
|
|
695
695
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
696
696
|
status: string;
|
|
697
|
-
statusOptions: SelectOption$
|
|
697
|
+
statusOptions: SelectOption$3[];
|
|
698
698
|
onStatusChange: (newStatus: string) => void;
|
|
699
699
|
latestOFAC?: OFACCheck;
|
|
700
700
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
@@ -814,7 +814,7 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
|
|
|
814
814
|
|
|
815
815
|
declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
|
|
816
816
|
|
|
817
|
-
interface SelectOption$
|
|
817
|
+
interface SelectOption$2 {
|
|
818
818
|
value: string;
|
|
819
819
|
label: string;
|
|
820
820
|
}
|
|
@@ -833,7 +833,7 @@ interface BusinessProfileCardProps {
|
|
|
833
833
|
onToggleIdNumberVisibility?: () => void;
|
|
834
834
|
isLoadingIdNumber?: boolean;
|
|
835
835
|
revealedIdNumber?: string | null;
|
|
836
|
-
businessEntityTypeOptions?: SelectOption$
|
|
836
|
+
businessEntityTypeOptions?: SelectOption$2[];
|
|
837
837
|
}
|
|
838
838
|
declare const BusinessProfileCard: ({ data, businessId, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
839
839
|
|
|
@@ -1040,6 +1040,10 @@ interface FeeFilters {
|
|
|
1040
1040
|
transactionTypes: string[];
|
|
1041
1041
|
}
|
|
1042
1042
|
|
|
1043
|
+
interface SelectOption$1 {
|
|
1044
|
+
value: string;
|
|
1045
|
+
label: string;
|
|
1046
|
+
}
|
|
1043
1047
|
interface FeesViewProps {
|
|
1044
1048
|
filters: FeeFilters;
|
|
1045
1049
|
onFilterChange: (field: keyof FeeFilters, value: string | string[]) => void;
|
|
@@ -1047,8 +1051,10 @@ interface FeesViewProps {
|
|
|
1047
1051
|
onApplyFilters: () => void;
|
|
1048
1052
|
onCreateFee: () => void;
|
|
1049
1053
|
table: React.ReactNode;
|
|
1054
|
+
productOptions: SelectOption$1[];
|
|
1055
|
+
programOptions: SelectOption$1[];
|
|
1050
1056
|
}
|
|
1051
|
-
declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
|
|
1057
|
+
declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, productOptions, programOptions, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
|
|
1052
1058
|
|
|
1053
1059
|
interface StatementHeader {
|
|
1054
1060
|
account?: string;
|
|
@@ -1422,7 +1428,7 @@ declare const AccountTypeBadge: ({ type, className }: AccountTypeBadgeProps) =>
|
|
|
1422
1428
|
|
|
1423
1429
|
declare const badgeVariants: (props?: {
|
|
1424
1430
|
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";
|
|
1425
|
-
} &
|
|
1431
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1426
1432
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
1427
1433
|
}
|
|
1428
1434
|
declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1436,7 +1442,7 @@ declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) =
|
|
|
1436
1442
|
declare const buttonVariants: (props?: {
|
|
1437
1443
|
variant?: "default" | "ghost" | "link" | "secondary" | "destructive" | "outline";
|
|
1438
1444
|
size?: "default" | "sm" | "lg" | "icon";
|
|
1439
|
-
} &
|
|
1445
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1440
1446
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
1441
1447
|
asChild?: boolean;
|
|
1442
1448
|
}
|
|
@@ -1453,7 +1459,7 @@ declare const cardVariants: (props?: {
|
|
|
1453
1459
|
size?: "sm" | "md" | "lg" | "none";
|
|
1454
1460
|
fullHeight?: boolean;
|
|
1455
1461
|
interactive?: boolean;
|
|
1456
|
-
} &
|
|
1462
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1457
1463
|
interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
|
|
1458
1464
|
}
|
|
1459
1465
|
declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1461,13 +1467,13 @@ declare const cardHeaderVariants: (props?: {
|
|
|
1461
1467
|
size?: "sm" | "md" | "lg";
|
|
1462
1468
|
align?: "start" | "center" | "end";
|
|
1463
1469
|
direction?: "row" | "column";
|
|
1464
|
-
} &
|
|
1470
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1465
1471
|
interface CardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
|
|
1466
1472
|
}
|
|
1467
1473
|
declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1468
1474
|
declare const cardTitleVariants: (props?: {
|
|
1469
1475
|
size?: "sm" | "md" | "lg";
|
|
1470
|
-
} &
|
|
1476
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1471
1477
|
interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
|
|
1472
1478
|
}
|
|
1473
1479
|
declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -1475,14 +1481,14 @@ declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAtt
|
|
|
1475
1481
|
declare const cardContentVariants: (props?: {
|
|
1476
1482
|
size?: "sm" | "md" | "lg";
|
|
1477
1483
|
fullHeight?: boolean;
|
|
1478
|
-
} &
|
|
1484
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1479
1485
|
interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
|
|
1480
1486
|
}
|
|
1481
1487
|
declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1482
1488
|
declare const cardFooterVariants: (props?: {
|
|
1483
1489
|
size?: "sm" | "md" | "lg";
|
|
1484
1490
|
justify?: "start" | "center" | "end" | "between";
|
|
1485
|
-
} &
|
|
1491
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1486
1492
|
interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
|
|
1487
1493
|
}
|
|
1488
1494
|
declare const CardFooter: React$1.ForwardRefExoticComponent<CardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1648,7 +1654,7 @@ declare const EditableInfoField: ({ label, value, options, onChange, placeholder
|
|
|
1648
1654
|
|
|
1649
1655
|
declare const selectVariants: (props?: {
|
|
1650
1656
|
variant?: "default" | "success" | "disabled" | "error";
|
|
1651
|
-
} &
|
|
1657
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1652
1658
|
interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
1653
1659
|
label?: string;
|
|
1654
1660
|
hint?: string;
|
|
@@ -1670,7 +1676,7 @@ declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectPr
|
|
|
1670
1676
|
|
|
1671
1677
|
declare const textareaVariants: (props?: {
|
|
1672
1678
|
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
1673
|
-
} &
|
|
1679
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1674
1680
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
1675
1681
|
label?: string;
|
|
1676
1682
|
hint?: string;
|
|
@@ -1772,7 +1778,7 @@ interface JsonViewerProps {
|
|
|
1772
1778
|
}
|
|
1773
1779
|
declare const JsonViewer: ({ data, className, compact, maxHeight, expandFully, defaultExpandDepth }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
|
|
1774
1780
|
|
|
1775
|
-
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?:
|
|
1781
|
+
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>>;
|
|
1776
1782
|
|
|
1777
1783
|
interface MetricCardProps {
|
|
1778
1784
|
title: string;
|
|
@@ -1846,7 +1852,7 @@ declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
|
1846
1852
|
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1847
1853
|
declare const sheetVariants: (props?: {
|
|
1848
1854
|
side?: "left" | "right" | "top" | "bottom";
|
|
1849
|
-
} &
|
|
1855
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1850
1856
|
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
1851
1857
|
}
|
|
1852
1858
|
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1912,7 +1918,7 @@ declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.
|
|
|
1912
1918
|
} & VariantProps<(props?: {
|
|
1913
1919
|
variant?: "default" | "outline";
|
|
1914
1920
|
size?: "default" | "sm" | "lg";
|
|
1915
|
-
} &
|
|
1921
|
+
} & class_variance_authority_types.ClassProp) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1916
1922
|
declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1917
1923
|
asChild?: boolean;
|
|
1918
1924
|
showOnHover?: boolean;
|
|
@@ -1976,7 +1982,7 @@ declare const ToastProvider: React$1.FC<ToastPrimitives.ToastProviderProps>;
|
|
|
1976
1982
|
declare const ToastViewport: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastViewportProps & React$1.RefAttributes<HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
|
|
1977
1983
|
declare const Toast$1: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: {
|
|
1978
1984
|
variant?: "default" | "destructive";
|
|
1979
|
-
} &
|
|
1985
|
+
} & class_variance_authority_types.ClassProp) => string> & React$1.RefAttributes<HTMLLIElement>>;
|
|
1980
1986
|
declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1981
1987
|
declare const ToastClose: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1982
1988
|
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
|
|
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';
|
|
@@ -274,7 +274,7 @@ interface BusinessAccount$1 {
|
|
|
274
274
|
bankName: string;
|
|
275
275
|
bankAccountType: string;
|
|
276
276
|
}
|
|
277
|
-
interface SelectOption$
|
|
277
|
+
interface SelectOption$5 {
|
|
278
278
|
value: string;
|
|
279
279
|
label: string;
|
|
280
280
|
}
|
|
@@ -291,8 +291,8 @@ interface BusinessDetailViewProps {
|
|
|
291
291
|
businessAccounts: BusinessAccount$1[];
|
|
292
292
|
currentStatus: string;
|
|
293
293
|
isEditingProfile: boolean;
|
|
294
|
-
statusOptions: SelectOption$
|
|
295
|
-
businessEntityTypeOptions: SelectOption$
|
|
294
|
+
statusOptions: SelectOption$5[];
|
|
295
|
+
businessEntityTypeOptions: SelectOption$5[];
|
|
296
296
|
onStatusChange: (newStatus: string) => void;
|
|
297
297
|
onProfileDataChange: (profile: BusinessProfile) => void;
|
|
298
298
|
onToggleProfileEdit: () => void;
|
|
@@ -471,7 +471,7 @@ declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, cur
|
|
|
471
471
|
declare const inputVariants: (props?: {
|
|
472
472
|
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
473
473
|
size?: "default" | "sm" | "lg";
|
|
474
|
-
} &
|
|
474
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
475
475
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
476
476
|
label?: string;
|
|
477
477
|
hint?: string;
|
|
@@ -560,7 +560,7 @@ interface AccountFormValues {
|
|
|
560
560
|
fundingAccountNumber?: string;
|
|
561
561
|
sweepAccountNumber?: string;
|
|
562
562
|
}
|
|
563
|
-
interface SelectOption$
|
|
563
|
+
interface SelectOption$4 {
|
|
564
564
|
value: string;
|
|
565
565
|
label: string;
|
|
566
566
|
}
|
|
@@ -568,8 +568,8 @@ interface AccountDetailViewProps {
|
|
|
568
568
|
account: BusinessAccount;
|
|
569
569
|
currentStatus: string;
|
|
570
570
|
onStatusChange: (status: string) => void;
|
|
571
|
-
statusOptions: SelectOption$
|
|
572
|
-
canAcceptSweepOptions: SelectOption$
|
|
571
|
+
statusOptions: SelectOption$4[];
|
|
572
|
+
canAcceptSweepOptions: SelectOption$4[];
|
|
573
573
|
form: UseFormReturn<AccountFormValues> & {
|
|
574
574
|
isEditing: boolean;
|
|
575
575
|
handleToggleEdit: () => void;
|
|
@@ -679,7 +679,7 @@ declare const externalAccountSchema: z.ZodObject<{
|
|
|
679
679
|
}, z.core.$strip>;
|
|
680
680
|
type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
|
|
681
681
|
|
|
682
|
-
interface SelectOption$
|
|
682
|
+
interface SelectOption$3 {
|
|
683
683
|
value: string;
|
|
684
684
|
label: string;
|
|
685
685
|
}
|
|
@@ -694,7 +694,7 @@ interface IndividualDetailViewProps {
|
|
|
694
694
|
profile: IndividualProfileEdit;
|
|
695
695
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
696
696
|
status: string;
|
|
697
|
-
statusOptions: SelectOption$
|
|
697
|
+
statusOptions: SelectOption$3[];
|
|
698
698
|
onStatusChange: (newStatus: string) => void;
|
|
699
699
|
latestOFAC?: OFACCheck;
|
|
700
700
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
@@ -814,7 +814,7 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
|
|
|
814
814
|
|
|
815
815
|
declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
|
|
816
816
|
|
|
817
|
-
interface SelectOption$
|
|
817
|
+
interface SelectOption$2 {
|
|
818
818
|
value: string;
|
|
819
819
|
label: string;
|
|
820
820
|
}
|
|
@@ -833,7 +833,7 @@ interface BusinessProfileCardProps {
|
|
|
833
833
|
onToggleIdNumberVisibility?: () => void;
|
|
834
834
|
isLoadingIdNumber?: boolean;
|
|
835
835
|
revealedIdNumber?: string | null;
|
|
836
|
-
businessEntityTypeOptions?: SelectOption$
|
|
836
|
+
businessEntityTypeOptions?: SelectOption$2[];
|
|
837
837
|
}
|
|
838
838
|
declare const BusinessProfileCard: ({ data, businessId, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
839
839
|
|
|
@@ -1040,6 +1040,10 @@ interface FeeFilters {
|
|
|
1040
1040
|
transactionTypes: string[];
|
|
1041
1041
|
}
|
|
1042
1042
|
|
|
1043
|
+
interface SelectOption$1 {
|
|
1044
|
+
value: string;
|
|
1045
|
+
label: string;
|
|
1046
|
+
}
|
|
1043
1047
|
interface FeesViewProps {
|
|
1044
1048
|
filters: FeeFilters;
|
|
1045
1049
|
onFilterChange: (field: keyof FeeFilters, value: string | string[]) => void;
|
|
@@ -1047,8 +1051,10 @@ interface FeesViewProps {
|
|
|
1047
1051
|
onApplyFilters: () => void;
|
|
1048
1052
|
onCreateFee: () => void;
|
|
1049
1053
|
table: React.ReactNode;
|
|
1054
|
+
productOptions: SelectOption$1[];
|
|
1055
|
+
programOptions: SelectOption$1[];
|
|
1050
1056
|
}
|
|
1051
|
-
declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
|
|
1057
|
+
declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, productOptions, programOptions, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
|
|
1052
1058
|
|
|
1053
1059
|
interface StatementHeader {
|
|
1054
1060
|
account?: string;
|
|
@@ -1422,7 +1428,7 @@ declare const AccountTypeBadge: ({ type, className }: AccountTypeBadgeProps) =>
|
|
|
1422
1428
|
|
|
1423
1429
|
declare const badgeVariants: (props?: {
|
|
1424
1430
|
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";
|
|
1425
|
-
} &
|
|
1431
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1426
1432
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
1427
1433
|
}
|
|
1428
1434
|
declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1436,7 +1442,7 @@ declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) =
|
|
|
1436
1442
|
declare const buttonVariants: (props?: {
|
|
1437
1443
|
variant?: "default" | "ghost" | "link" | "secondary" | "destructive" | "outline";
|
|
1438
1444
|
size?: "default" | "sm" | "lg" | "icon";
|
|
1439
|
-
} &
|
|
1445
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1440
1446
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
1441
1447
|
asChild?: boolean;
|
|
1442
1448
|
}
|
|
@@ -1453,7 +1459,7 @@ declare const cardVariants: (props?: {
|
|
|
1453
1459
|
size?: "sm" | "md" | "lg" | "none";
|
|
1454
1460
|
fullHeight?: boolean;
|
|
1455
1461
|
interactive?: boolean;
|
|
1456
|
-
} &
|
|
1462
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1457
1463
|
interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
|
|
1458
1464
|
}
|
|
1459
1465
|
declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1461,13 +1467,13 @@ declare const cardHeaderVariants: (props?: {
|
|
|
1461
1467
|
size?: "sm" | "md" | "lg";
|
|
1462
1468
|
align?: "start" | "center" | "end";
|
|
1463
1469
|
direction?: "row" | "column";
|
|
1464
|
-
} &
|
|
1470
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1465
1471
|
interface CardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
|
|
1466
1472
|
}
|
|
1467
1473
|
declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1468
1474
|
declare const cardTitleVariants: (props?: {
|
|
1469
1475
|
size?: "sm" | "md" | "lg";
|
|
1470
|
-
} &
|
|
1476
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1471
1477
|
interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
|
|
1472
1478
|
}
|
|
1473
1479
|
declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -1475,14 +1481,14 @@ declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAtt
|
|
|
1475
1481
|
declare const cardContentVariants: (props?: {
|
|
1476
1482
|
size?: "sm" | "md" | "lg";
|
|
1477
1483
|
fullHeight?: boolean;
|
|
1478
|
-
} &
|
|
1484
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1479
1485
|
interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
|
|
1480
1486
|
}
|
|
1481
1487
|
declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1482
1488
|
declare const cardFooterVariants: (props?: {
|
|
1483
1489
|
size?: "sm" | "md" | "lg";
|
|
1484
1490
|
justify?: "start" | "center" | "end" | "between";
|
|
1485
|
-
} &
|
|
1491
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1486
1492
|
interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
|
|
1487
1493
|
}
|
|
1488
1494
|
declare const CardFooter: React$1.ForwardRefExoticComponent<CardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1648,7 +1654,7 @@ declare const EditableInfoField: ({ label, value, options, onChange, placeholder
|
|
|
1648
1654
|
|
|
1649
1655
|
declare const selectVariants: (props?: {
|
|
1650
1656
|
variant?: "default" | "success" | "disabled" | "error";
|
|
1651
|
-
} &
|
|
1657
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1652
1658
|
interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
1653
1659
|
label?: string;
|
|
1654
1660
|
hint?: string;
|
|
@@ -1670,7 +1676,7 @@ declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectPr
|
|
|
1670
1676
|
|
|
1671
1677
|
declare const textareaVariants: (props?: {
|
|
1672
1678
|
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
1673
|
-
} &
|
|
1679
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1674
1680
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
1675
1681
|
label?: string;
|
|
1676
1682
|
hint?: string;
|
|
@@ -1772,7 +1778,7 @@ interface JsonViewerProps {
|
|
|
1772
1778
|
}
|
|
1773
1779
|
declare const JsonViewer: ({ data, className, compact, maxHeight, expandFully, defaultExpandDepth }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
|
|
1774
1780
|
|
|
1775
|
-
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?:
|
|
1781
|
+
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>>;
|
|
1776
1782
|
|
|
1777
1783
|
interface MetricCardProps {
|
|
1778
1784
|
title: string;
|
|
@@ -1846,7 +1852,7 @@ declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
|
1846
1852
|
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1847
1853
|
declare const sheetVariants: (props?: {
|
|
1848
1854
|
side?: "left" | "right" | "top" | "bottom";
|
|
1849
|
-
} &
|
|
1855
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
1850
1856
|
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
1851
1857
|
}
|
|
1852
1858
|
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1912,7 +1918,7 @@ declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.
|
|
|
1912
1918
|
} & VariantProps<(props?: {
|
|
1913
1919
|
variant?: "default" | "outline";
|
|
1914
1920
|
size?: "default" | "sm" | "lg";
|
|
1915
|
-
} &
|
|
1921
|
+
} & class_variance_authority_types.ClassProp) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1916
1922
|
declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1917
1923
|
asChild?: boolean;
|
|
1918
1924
|
showOnHover?: boolean;
|
|
@@ -1976,7 +1982,7 @@ declare const ToastProvider: React$1.FC<ToastPrimitives.ToastProviderProps>;
|
|
|
1976
1982
|
declare const ToastViewport: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastViewportProps & React$1.RefAttributes<HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
|
|
1977
1983
|
declare const Toast$1: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: {
|
|
1978
1984
|
variant?: "default" | "destructive";
|
|
1979
|
-
} &
|
|
1985
|
+
} & class_variance_authority_types.ClassProp) => string> & React$1.RefAttributes<HTMLLIElement>>;
|
|
1980
1986
|
declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1981
1987
|
declare const ToastClose: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1982
1988
|
declare const ToastTitle: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastTitleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|