halov 0.26.213 → 0.26.305
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/README.md +8 -8
- package/dist/components/HaloForm.vue.d.ts +1 -2
- package/dist/components/ListInputModal.vue.d.ts +1 -1
- package/dist/halov.es.js +2334 -2331
- package/dist/halov.umd.cjs +6 -5
- package/dist/types/HaloTypes.d.ts +0 -5
- package/package.json +2 -3
|
@@ -215,11 +215,6 @@ 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;
|
|
223
218
|
export interface UI {
|
|
224
219
|
message(message: string, type?: "create" | "error" | "loading" | "success" | "warning" | "info"): void;
|
|
225
220
|
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.
|
|
3
|
+
"version": "0.26.0305",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/halov.umd.cjs",
|
|
6
6
|
"module": "dist/halov.es.js",
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"dev": "vite --config playground/vite.config.ts",
|
|
23
23
|
"build": "vite build && tsc -p tsconfig.build.json",
|
|
24
|
-
"preview": "vite preview"
|
|
25
|
-
"publish": "npm publish --access public"
|
|
24
|
+
"preview": "vite preview"
|
|
26
25
|
},
|
|
27
26
|
"peerDependencies": {
|
|
28
27
|
"axios": "^1.11.0",
|