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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "halov",
3
- "version": "0.26.0206",
3
+ "version": "0.26.0213",
4
4
  "type": "module",
5
5
  "main": "dist/halov.umd.cjs",
6
6
  "module": "dist/halov.es.js",