braid-ui 1.0.115 → 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 +17 -11
- package/dist/index.d.ts +17 -11
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -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;
|
|
@@ -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;
|
package/dist/index.d.ts
CHANGED
|
@@ -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;
|
|
@@ -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;
|