braid-ui 1.0.13 → 1.0.15
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 +93 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -9
- package/dist/index.d.ts +12 -9
- package/dist/index.js +92 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -667,7 +667,7 @@ interface ListPageProps {
|
|
|
667
667
|
}
|
|
668
668
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
669
669
|
|
|
670
|
-
interface StatementHeader
|
|
670
|
+
interface StatementHeader {
|
|
671
671
|
account?: string;
|
|
672
672
|
productId?: string;
|
|
673
673
|
programId?: string;
|
|
@@ -683,12 +683,6 @@ interface StatementTransaction {
|
|
|
683
683
|
count: number;
|
|
684
684
|
}
|
|
685
685
|
|
|
686
|
-
interface StatementHeaderProps {
|
|
687
|
-
data: StatementHeader$1;
|
|
688
|
-
onEdit: () => void;
|
|
689
|
-
}
|
|
690
|
-
declare const StatementHeader: ({ data, onEdit }: StatementHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
691
|
-
|
|
692
686
|
interface StatementViewProps {
|
|
693
687
|
statementType: string;
|
|
694
688
|
selectedProgram: string;
|
|
@@ -705,7 +699,7 @@ interface StatementViewProps {
|
|
|
705
699
|
value: string;
|
|
706
700
|
label: string;
|
|
707
701
|
}>;
|
|
708
|
-
statementHeader: StatementHeader
|
|
702
|
+
statementHeader: StatementHeader | null;
|
|
709
703
|
statementTransactions: StatementTransaction[];
|
|
710
704
|
programsLoading: boolean;
|
|
711
705
|
productsLoading: boolean;
|
|
@@ -1466,4 +1460,13 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1466
1460
|
|
|
1467
1461
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1468
1462
|
|
|
1469
|
-
|
|
1463
|
+
/**
|
|
1464
|
+
* Generates a CSV string from statement header and transaction data
|
|
1465
|
+
*/
|
|
1466
|
+
declare function generateStatementCSV(header: StatementHeader, transactions: StatementTransaction[]): string;
|
|
1467
|
+
/**
|
|
1468
|
+
* Triggers a browser download for CSV content
|
|
1469
|
+
*/
|
|
1470
|
+
declare function downloadCSV(content: string, filename: string): void;
|
|
1471
|
+
|
|
1472
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business as BusinessDetail, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, 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, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, 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, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, 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, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -667,7 +667,7 @@ interface ListPageProps {
|
|
|
667
667
|
}
|
|
668
668
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
669
669
|
|
|
670
|
-
interface StatementHeader
|
|
670
|
+
interface StatementHeader {
|
|
671
671
|
account?: string;
|
|
672
672
|
productId?: string;
|
|
673
673
|
programId?: string;
|
|
@@ -683,12 +683,6 @@ interface StatementTransaction {
|
|
|
683
683
|
count: number;
|
|
684
684
|
}
|
|
685
685
|
|
|
686
|
-
interface StatementHeaderProps {
|
|
687
|
-
data: StatementHeader$1;
|
|
688
|
-
onEdit: () => void;
|
|
689
|
-
}
|
|
690
|
-
declare const StatementHeader: ({ data, onEdit }: StatementHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
691
|
-
|
|
692
686
|
interface StatementViewProps {
|
|
693
687
|
statementType: string;
|
|
694
688
|
selectedProgram: string;
|
|
@@ -705,7 +699,7 @@ interface StatementViewProps {
|
|
|
705
699
|
value: string;
|
|
706
700
|
label: string;
|
|
707
701
|
}>;
|
|
708
|
-
statementHeader: StatementHeader
|
|
702
|
+
statementHeader: StatementHeader | null;
|
|
709
703
|
statementTransactions: StatementTransaction[];
|
|
710
704
|
programsLoading: boolean;
|
|
711
705
|
productsLoading: boolean;
|
|
@@ -1466,4 +1460,13 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1466
1460
|
|
|
1467
1461
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1468
1462
|
|
|
1469
|
-
|
|
1463
|
+
/**
|
|
1464
|
+
* Generates a CSV string from statement header and transaction data
|
|
1465
|
+
*/
|
|
1466
|
+
declare function generateStatementCSV(header: StatementHeader, transactions: StatementTransaction[]): string;
|
|
1467
|
+
/**
|
|
1468
|
+
* Triggers a browser download for CSV content
|
|
1469
|
+
*/
|
|
1470
|
+
declare function downloadCSV(content: string, filename: string): void;
|
|
1471
|
+
|
|
1472
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business as BusinessDetail, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, 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, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, 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, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, 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, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.js
CHANGED
|
@@ -11081,6 +11081,65 @@ var NotFound = () => {
|
|
|
11081
11081
|
] }) });
|
|
11082
11082
|
};
|
|
11083
11083
|
var NotFound_default = NotFound;
|
|
11084
|
+
|
|
11085
|
+
// src/lib/utils/csv-utils.ts
|
|
11086
|
+
function escapeCsvValue(value) {
|
|
11087
|
+
const stringValue = String(value);
|
|
11088
|
+
if (stringValue.includes(",") || stringValue.includes('"') || stringValue.includes("\n")) {
|
|
11089
|
+
return `"${stringValue.replace(/"/g, '""')}"`;
|
|
11090
|
+
}
|
|
11091
|
+
return stringValue;
|
|
11092
|
+
}
|
|
11093
|
+
function generateStatementCSV(header, transactions) {
|
|
11094
|
+
const lines = [];
|
|
11095
|
+
lines.push("Statement Information");
|
|
11096
|
+
if (header.account) {
|
|
11097
|
+
lines.push(`Account,${escapeCsvValue(header.account)}`);
|
|
11098
|
+
}
|
|
11099
|
+
if (header.productId) {
|
|
11100
|
+
lines.push(`Product ID,${escapeCsvValue(header.productId)}`);
|
|
11101
|
+
}
|
|
11102
|
+
if (header.programId) {
|
|
11103
|
+
lines.push(`Program ID,${escapeCsvValue(header.programId)}`);
|
|
11104
|
+
}
|
|
11105
|
+
if (header.startDate) {
|
|
11106
|
+
lines.push(`Start Date,${escapeCsvValue(header.startDate)}`);
|
|
11107
|
+
}
|
|
11108
|
+
if (header.endDate) {
|
|
11109
|
+
lines.push(`End Date,${escapeCsvValue(header.endDate)}`);
|
|
11110
|
+
}
|
|
11111
|
+
if (header.startingBalance) {
|
|
11112
|
+
lines.push(`Starting Balance,${escapeCsvValue(header.startingBalance)}`);
|
|
11113
|
+
}
|
|
11114
|
+
if (header.endingBalance) {
|
|
11115
|
+
lines.push(`Ending Balance,${escapeCsvValue(header.endingBalance)}`);
|
|
11116
|
+
}
|
|
11117
|
+
lines.push("");
|
|
11118
|
+
lines.push("Transaction Summary");
|
|
11119
|
+
lines.push("Transaction Type,Direction,Amount,Count");
|
|
11120
|
+
transactions.forEach((transaction) => {
|
|
11121
|
+
const row = [
|
|
11122
|
+
escapeCsvValue(transaction.transactionType),
|
|
11123
|
+
escapeCsvValue(transaction.direction),
|
|
11124
|
+
escapeCsvValue(transaction.amount),
|
|
11125
|
+
escapeCsvValue(transaction.count)
|
|
11126
|
+
].join(",");
|
|
11127
|
+
lines.push(row);
|
|
11128
|
+
});
|
|
11129
|
+
return lines.join("\n");
|
|
11130
|
+
}
|
|
11131
|
+
function downloadCSV(content, filename) {
|
|
11132
|
+
const blob = new Blob([content], { type: "text/csv;charset=utf-8;" });
|
|
11133
|
+
const url = URL.createObjectURL(blob);
|
|
11134
|
+
const link = document.createElement("a");
|
|
11135
|
+
link.href = url;
|
|
11136
|
+
link.download = filename;
|
|
11137
|
+
link.style.display = "none";
|
|
11138
|
+
document.body.appendChild(link);
|
|
11139
|
+
link.click();
|
|
11140
|
+
document.body.removeChild(link);
|
|
11141
|
+
URL.revokeObjectURL(url);
|
|
11142
|
+
}
|
|
11084
11143
|
function Statement() {
|
|
11085
11144
|
const [statementType, setStatementType] = useState("root");
|
|
11086
11145
|
const [selectedProgram, setSelectedProgram] = useState("");
|
|
@@ -11203,7 +11262,38 @@ function Statement() {
|
|
|
11203
11262
|
return false;
|
|
11204
11263
|
};
|
|
11205
11264
|
const handleDownloadCSV = () => {
|
|
11206
|
-
|
|
11265
|
+
if (!statementHeader || !statementTransactions.length) {
|
|
11266
|
+
toast({
|
|
11267
|
+
title: "No statement data",
|
|
11268
|
+
description: "Please generate a statement before downloading",
|
|
11269
|
+
variant: "destructive"
|
|
11270
|
+
});
|
|
11271
|
+
return;
|
|
11272
|
+
}
|
|
11273
|
+
try {
|
|
11274
|
+
const csvContent = generateStatementCSV(statementHeader, statementTransactions);
|
|
11275
|
+
const dateStr = (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
|
|
11276
|
+
let filenamePart = statementType;
|
|
11277
|
+
if (statementType === "program" && selectedProgram) {
|
|
11278
|
+
filenamePart = `program_${selectedProgram}`;
|
|
11279
|
+
} else if (statementType === "product" && selectedProduct) {
|
|
11280
|
+
filenamePart = `product_${selectedProduct}`;
|
|
11281
|
+
} else if (statementType === "account" && accountNumber) {
|
|
11282
|
+
filenamePart = `account_${accountNumber}`;
|
|
11283
|
+
}
|
|
11284
|
+
const filename = `statement_${filenamePart}_${dateStr}.csv`;
|
|
11285
|
+
downloadCSV(csvContent, filename);
|
|
11286
|
+
toast({
|
|
11287
|
+
title: "Download started",
|
|
11288
|
+
description: "Your statement CSV is being downloaded"
|
|
11289
|
+
});
|
|
11290
|
+
} catch (error) {
|
|
11291
|
+
toast({
|
|
11292
|
+
title: "Download failed",
|
|
11293
|
+
description: error instanceof Error ? error.message : "Failed to download CSV",
|
|
11294
|
+
variant: "destructive"
|
|
11295
|
+
});
|
|
11296
|
+
}
|
|
11207
11297
|
};
|
|
11208
11298
|
const handlePrintPDF = () => {
|
|
11209
11299
|
console.log("Printing PDF...");
|
|
@@ -12640,6 +12730,6 @@ function UIKit() {
|
|
|
12640
12730
|
] }) }) });
|
|
12641
12731
|
}
|
|
12642
12732
|
|
|
12643
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail_default as AlertDetail, AlertDetailRouter, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts_default as Alerts, AppSidebar, Badge, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, BusinessDetail_default as BusinessDetail, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses_default as Businesses, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Cases_default as Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties_default as Counterparties, CounterpartyBasicInfo, CounterpartyDetail_default as CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, Create_default as CreateBusiness, Create_default2 as CreateCounterparty, Create_default3 as CreateIndividual, Dashboard_default as Dashboard, DashboardDemo, DataGrid, DataTable, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail_default as IndividualDetail, Individuals_default as Individuals, InfoField, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound_default as NotFound, OFACAlertView, OriginatorCard, OriginatorFI, OriginatorFIAddress, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, 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, StatementHeader, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail_default as TransactionDetail, TransactionHistory_default as TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
12733
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail_default as AlertDetail, AlertDetailRouter, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts_default as Alerts, AppSidebar, Badge, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, BusinessDetail_default as BusinessDetail, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses_default as Businesses, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Cases_default as Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties_default as Counterparties, CounterpartyBasicInfo, CounterpartyDetail_default as CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, Create_default as CreateBusiness, Create_default2 as CreateCounterparty, Create_default3 as CreateIndividual, Dashboard_default as Dashboard, DashboardDemo, DataGrid, DataTable, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail_default as IndividualDetail, Individuals_default as Individuals, InfoField, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound_default as NotFound, OFACAlertView, OriginatorCard, OriginatorFI, OriginatorFIAddress, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, 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, StatementHeader, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail_default as TransactionDetail, TransactionHistory_default as TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
12644
12734
|
//# sourceMappingURL=index.js.map
|
|
12645
12735
|
//# sourceMappingURL=index.js.map
|