@chainberry/ui-components 1.0.27 → 1.0.29
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 +3 -2
- package/dist/index.mjs +18510 -18512
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -415,7 +415,7 @@ declare const COINS_2: Coin_2[];
|
|
|
415
415
|
declare const COINS_3: Coin_3[];
|
|
416
416
|
|
|
417
417
|
/** Path to an asset logo, or undefined when we have no artwork for the code. */
|
|
418
|
-
declare function coinSrc(code: string): string | undefined;
|
|
418
|
+
export declare function coinSrc(code: string): string | undefined;
|
|
419
419
|
|
|
420
420
|
export declare type Column<T> = {
|
|
421
421
|
id: string;
|
|
@@ -2129,12 +2129,13 @@ export declare namespace transactionsData {
|
|
|
2129
2129
|
}
|
|
2130
2130
|
}
|
|
2131
2131
|
|
|
2132
|
-
export declare function TransactionsFilterPanel({ open, onOpenChange, value, assets, onApply, }: {
|
|
2132
|
+
export declare function TransactionsFilterPanel({ open, onOpenChange, value, assets, onApply, onSave, }: {
|
|
2133
2133
|
open: boolean;
|
|
2134
2134
|
onOpenChange: (open: boolean) => void;
|
|
2135
2135
|
value: TxFilter;
|
|
2136
2136
|
assets: AssetOption[];
|
|
2137
2137
|
onApply: (filter: TxFilter) => void;
|
|
2138
|
+
onSave: (filter: TxFilter) => void;
|
|
2138
2139
|
/**
|
|
2139
2140
|
* @deprecated No longer invoked. Reset now clears the in-drawer draft only and
|
|
2140
2141
|
* never mutates applied filters or the table — commit changes via Apply
|