halov 0.26.206 → 0.26.213
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.
|
@@ -215,6 +215,11 @@ export interface BatchAddConfig {
|
|
|
215
215
|
dataBuilder?: BatchAddDataBuilder;
|
|
216
216
|
}
|
|
217
217
|
export type BeforeSaveFunction = (data: any, method: string) => boolean;
|
|
218
|
+
export interface BeforeSearchArgs {
|
|
219
|
+
searchAction: string;
|
|
220
|
+
searchArgs: SearchArgs;
|
|
221
|
+
}
|
|
222
|
+
export type BeforeSearchFunction = (args: BeforeSearchArgs) => boolean;
|
|
218
223
|
export interface UI {
|
|
219
224
|
message(message: string, type?: "create" | "error" | "loading" | "success" | "warning" | "info"): void;
|
|
220
225
|
confirm(title: string | undefined, message: string, callback: Action): void;
|