@chainberry/ui-components 1.0.10 → 1.0.12
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 +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +432 -441
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -492,7 +492,7 @@ export declare type DataTableProps<T> = {
|
|
|
492
492
|
toolbarBelow?: ReactNode;
|
|
493
493
|
};
|
|
494
494
|
|
|
495
|
-
declare type DateField =
|
|
495
|
+
declare type DateField = 'createdAt' | 'confirmedAt';
|
|
496
496
|
|
|
497
497
|
/** Past incoming deposits — the audit trail of received funds. Mixed senders,
|
|
498
498
|
receiving wallets, chains and statuses (confirmed / processing / pending). */
|
|
@@ -2026,7 +2026,7 @@ declare type TxStatus = 'CREATED' | 'PROCESSING' | 'KYT_IN_PROGRESS' | 'PENDING_
|
|
|
2026
2026
|
declare type TxType = 'UNKNOWN' | 'DEPOSIT' | 'WITHDRAWAL' | 'CHECKOUT' | 'MANUAL_DEPOSIT' | 'MANUAL_WITHDRAWAL' | 'AUTO_CONVERSION_DEPOSIT' | 'AUTO_CONVERSION_WITHDRAWAL' | 'AUTOMATIC_WITHDRAWAL';
|
|
2027
2027
|
|
|
2028
2028
|
declare const TYPE_OPTIONS: {
|
|
2029
|
-
value:
|
|
2029
|
+
value: string;
|
|
2030
2030
|
label: string;
|
|
2031
2031
|
}[];
|
|
2032
2032
|
|