@chainberry/ui-components 1.0.35 → 1.0.37
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 +12 -0
- package/dist/index.mjs +223 -222
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1984,6 +1984,15 @@ declare type SourceWallet = {
|
|
|
1984
1984
|
fiatRate: number;
|
|
1985
1985
|
};
|
|
1986
1986
|
|
|
1987
|
+
/** A plain circular spinner — a ring with one open segment that rotates.
|
|
1988
|
+
Color follows the surrounding text (`text-*`); size/thickness are props. */
|
|
1989
|
+
export declare function Spinner({ size, thickness, className, 'aria-label': ariaLabel, }: {
|
|
1990
|
+
size?: number;
|
|
1991
|
+
thickness?: number;
|
|
1992
|
+
className?: string;
|
|
1993
|
+
'aria-label'?: string;
|
|
1994
|
+
}): JSX.Element;
|
|
1995
|
+
|
|
1987
1996
|
declare const STATUS_META: Record<TxStatus, {
|
|
1988
1997
|
label: string;
|
|
1989
1998
|
tone: BadgeTone;
|
|
@@ -2130,6 +2139,9 @@ declare type TransactionDetail = {
|
|
|
2130
2139
|
updatedAt?: Date;
|
|
2131
2140
|
userId?: string;
|
|
2132
2141
|
customerWallet: string;
|
|
2142
|
+
/** Explorer URL for `customerWallet`, mirroring `fromAddressUrl`/`toAddressUrl`
|
|
2143
|
+
* on BlockchainDetails. Without it the address renders as an inert `#` link. */
|
|
2144
|
+
customerWalletUrl?: string;
|
|
2133
2145
|
expectedAmount: string;
|
|
2134
2146
|
rate: string;
|
|
2135
2147
|
commission: Commission;
|