@chainberry/ui-components 1.0.17 → 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.d.ts CHANGED
@@ -2331,6 +2331,12 @@ export declare function WalletBalancesTable({ balances, actionsVariant, classNam
2331
2331
  className?: string;
2332
2332
  }): JSX.Element;
2333
2333
 
2334
+ export declare function WalletBalancesTableV2({ balances, actionsVariant, className, }: {
2335
+ balances: CurrencyBalance[];
2336
+ actionsVariant?: "icons" | "menu";
2337
+ className?: string;
2338
+ }): JSX.Element;
2339
+
2334
2340
  export declare function WalletField({ id, label, placeholder, value, onChange, wallets, emptyMessage, variant, disabled, className, }: {
2335
2341
  id?: string;
2336
2342
  label?: ReactNode;