braid-ui 1.0.41 → 1.0.43
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/css/braid-ui.css +17 -0
- package/dist/css/braid-ui.min.css +1 -1
- package/dist/index.cjs +1838 -266
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -7
- package/dist/index.d.ts +17 -7
- package/dist/index.js +1837 -269
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -738,9 +738,10 @@ interface ContactInfoCardProps {
|
|
|
738
738
|
declare const ContactInfoCard: ({ isEditing, onToggleEdit, className }: ContactInfoCardProps) => react_jsx_runtime.JSX.Element;
|
|
739
739
|
|
|
740
740
|
interface CounterpartyBasicInfoProps {
|
|
741
|
+
value?: any;
|
|
741
742
|
onDataChange?: (data: any) => void;
|
|
742
743
|
}
|
|
743
|
-
declare const CounterpartyBasicInfo: ({ onDataChange }: CounterpartyBasicInfoProps) => react_jsx_runtime.JSX.Element;
|
|
744
|
+
declare const CounterpartyBasicInfo: ({ value, onDataChange }: CounterpartyBasicInfoProps) => react_jsx_runtime.JSX.Element;
|
|
744
745
|
|
|
745
746
|
interface CounterpartyProfileCardProps {
|
|
746
747
|
data?: Partial<CounterpartyDetail$1>;
|
|
@@ -1121,13 +1122,14 @@ interface DetailPageAction {
|
|
|
1121
1122
|
className?: string;
|
|
1122
1123
|
}
|
|
1123
1124
|
interface DetailPageLayoutProps {
|
|
1124
|
-
title: string;
|
|
1125
|
-
description
|
|
1125
|
+
title: string | ReactNode;
|
|
1126
|
+
description?: string;
|
|
1126
1127
|
cards: DetailPageCard[];
|
|
1127
1128
|
actions?: DetailPageAction[];
|
|
1128
1129
|
initialEditingState?: Record<string, boolean>;
|
|
1130
|
+
headerContent?: ReactNode;
|
|
1129
1131
|
}
|
|
1130
|
-
declare const DetailPageLayout: ({ title, description, cards, actions, initialEditingState }: DetailPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
1132
|
+
declare const DetailPageLayout: ({ title, description, cards, actions, initialEditingState, headerContent }: DetailPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
1131
1133
|
|
|
1132
1134
|
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
1133
1135
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1487,7 +1489,7 @@ interface StackProps {
|
|
|
1487
1489
|
declare const Stack: React$1.ForwardRefExoticComponent<StackProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1488
1490
|
|
|
1489
1491
|
interface StatusBadgeProps {
|
|
1490
|
-
status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED" | "BLOCKED" | "PENDING_APPROVAL" | "POSTED" | "FAILED" | "CANCELLED";
|
|
1492
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED" | "BLOCKED" | "PENDING_APPROVAL" | "POSTED" | "FAILED" | "CANCELLED" | "DELETED" | "NEEDS_OFAC" | "PENDING_UNBLOCK";
|
|
1491
1493
|
className?: string;
|
|
1492
1494
|
}
|
|
1493
1495
|
declare const StatusBadge: ({ status, className }: StatusBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1691,7 +1693,15 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1691
1693
|
|
|
1692
1694
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1693
1695
|
|
|
1694
|
-
declare function
|
|
1696
|
+
declare function VelocityLimits(): react_jsx_runtime.JSX.Element;
|
|
1697
|
+
|
|
1698
|
+
declare function CreateVelocityLimit(): react_jsx_runtime.JSX.Element;
|
|
1699
|
+
|
|
1700
|
+
declare function VelocityLimitDetail(): react_jsx_runtime.JSX.Element;
|
|
1701
|
+
|
|
1702
|
+
declare function ReconUpload(): react_jsx_runtime.JSX.Element;
|
|
1703
|
+
|
|
1704
|
+
declare function ReconExceptions(): react_jsx_runtime.JSX.Element;
|
|
1695
1705
|
|
|
1696
1706
|
/**
|
|
1697
1707
|
* Generates a CSV string from statement header and transaction data
|
|
@@ -1702,4 +1712,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1702
1712
|
*/
|
|
1703
1713
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1704
1714
|
|
|
1705
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateIndividual, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound,
|
|
1715
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -738,9 +738,10 @@ interface ContactInfoCardProps {
|
|
|
738
738
|
declare const ContactInfoCard: ({ isEditing, onToggleEdit, className }: ContactInfoCardProps) => react_jsx_runtime.JSX.Element;
|
|
739
739
|
|
|
740
740
|
interface CounterpartyBasicInfoProps {
|
|
741
|
+
value?: any;
|
|
741
742
|
onDataChange?: (data: any) => void;
|
|
742
743
|
}
|
|
743
|
-
declare const CounterpartyBasicInfo: ({ onDataChange }: CounterpartyBasicInfoProps) => react_jsx_runtime.JSX.Element;
|
|
744
|
+
declare const CounterpartyBasicInfo: ({ value, onDataChange }: CounterpartyBasicInfoProps) => react_jsx_runtime.JSX.Element;
|
|
744
745
|
|
|
745
746
|
interface CounterpartyProfileCardProps {
|
|
746
747
|
data?: Partial<CounterpartyDetail$1>;
|
|
@@ -1121,13 +1122,14 @@ interface DetailPageAction {
|
|
|
1121
1122
|
className?: string;
|
|
1122
1123
|
}
|
|
1123
1124
|
interface DetailPageLayoutProps {
|
|
1124
|
-
title: string;
|
|
1125
|
-
description
|
|
1125
|
+
title: string | ReactNode;
|
|
1126
|
+
description?: string;
|
|
1126
1127
|
cards: DetailPageCard[];
|
|
1127
1128
|
actions?: DetailPageAction[];
|
|
1128
1129
|
initialEditingState?: Record<string, boolean>;
|
|
1130
|
+
headerContent?: ReactNode;
|
|
1129
1131
|
}
|
|
1130
|
-
declare const DetailPageLayout: ({ title, description, cards, actions, initialEditingState }: DetailPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
1132
|
+
declare const DetailPageLayout: ({ title, description, cards, actions, initialEditingState, headerContent }: DetailPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
1131
1133
|
|
|
1132
1134
|
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
1133
1135
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1487,7 +1489,7 @@ interface StackProps {
|
|
|
1487
1489
|
declare const Stack: React$1.ForwardRefExoticComponent<StackProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1488
1490
|
|
|
1489
1491
|
interface StatusBadgeProps {
|
|
1490
|
-
status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED" | "BLOCKED" | "PENDING_APPROVAL" | "POSTED" | "FAILED" | "CANCELLED";
|
|
1492
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED" | "BLOCKED" | "PENDING_APPROVAL" | "POSTED" | "FAILED" | "CANCELLED" | "DELETED" | "NEEDS_OFAC" | "PENDING_UNBLOCK";
|
|
1491
1493
|
className?: string;
|
|
1492
1494
|
}
|
|
1493
1495
|
declare const StatusBadge: ({ status, className }: StatusBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1691,7 +1693,15 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1691
1693
|
|
|
1692
1694
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1693
1695
|
|
|
1694
|
-
declare function
|
|
1696
|
+
declare function VelocityLimits(): react_jsx_runtime.JSX.Element;
|
|
1697
|
+
|
|
1698
|
+
declare function CreateVelocityLimit(): react_jsx_runtime.JSX.Element;
|
|
1699
|
+
|
|
1700
|
+
declare function VelocityLimitDetail(): react_jsx_runtime.JSX.Element;
|
|
1701
|
+
|
|
1702
|
+
declare function ReconUpload(): react_jsx_runtime.JSX.Element;
|
|
1703
|
+
|
|
1704
|
+
declare function ReconExceptions(): react_jsx_runtime.JSX.Element;
|
|
1695
1705
|
|
|
1696
1706
|
/**
|
|
1697
1707
|
* Generates a CSV string from statement header and transaction data
|
|
@@ -1702,4 +1712,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1702
1712
|
*/
|
|
1703
1713
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1704
1714
|
|
|
1705
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateIndividual, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound,
|
|
1715
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|