@chainberry/ui-components 1.0.16 → 1.0.18
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 +10 -0
- package/dist/index.mjs +21389 -20603
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -280,6 +280,10 @@ export declare namespace balancesData {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
export declare function BalancesPage(): JSX.Element;
|
|
284
|
+
|
|
285
|
+
export declare function BalancesPageV2(): JSX.Element;
|
|
286
|
+
|
|
283
287
|
export declare namespace balancesRecentTransactions {
|
|
284
288
|
export {
|
|
285
289
|
RecentTxDirection,
|
|
@@ -2327,6 +2331,12 @@ export declare function WalletBalancesTable({ balances, actionsVariant, classNam
|
|
|
2327
2331
|
className?: string;
|
|
2328
2332
|
}): JSX.Element;
|
|
2329
2333
|
|
|
2334
|
+
export declare function WalletBalancesTableV2({ balances, actionsVariant, className, }: {
|
|
2335
|
+
balances: CurrencyBalance[];
|
|
2336
|
+
actionsVariant?: "icons" | "menu";
|
|
2337
|
+
className?: string;
|
|
2338
|
+
}): JSX.Element;
|
|
2339
|
+
|
|
2330
2340
|
export declare function WalletField({ id, label, placeholder, value, onChange, wallets, emptyMessage, variant, disabled, className, }: {
|
|
2331
2341
|
id?: string;
|
|
2332
2342
|
label?: ReactNode;
|