@chainberry/ui-components 1.0.26 → 1.0.28
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 -1
- package/dist/index.mjs +18514 -18513
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -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
|