halov 0.25.817 → 0.25.821
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/components/AppTabs.vue.d.ts +26 -65
- package/dist/components/DefaultPropertyForm.vue.d.ts +1 -1
- package/dist/components/FormInput.vue.d.ts +1 -1
- package/dist/components/HaloForm.vue.d.ts +2 -2
- package/dist/components/InputModal.vue.d.ts +1 -1
- package/dist/components/ListInputModal.vue.d.ts +1 -1
- package/dist/components/SearchCard.vue.d.ts +3 -3
- package/dist/components/SearchForm.vue.d.ts +1 -1
- package/dist/components/SearchModal.vue.d.ts +5 -5
- package/dist/components/SearchPanel.vue.d.ts +3 -3
- package/dist/components/SelectIconBox.vue.d.ts +1 -1
- package/dist/components/SideMenu.vue.d.ts +5 -1640
- package/dist/config.d.ts +1 -1
- package/dist/halov.es.js +4567 -13261
- package/dist/halov.umd.cjs +6 -0
- package/dist/store/Account.d.ts +1 -1
- package/dist/types/SystemMenu.d.ts +1 -0
- package/dist/types/TabInfo.d.ts +1 -0
- package/package.json +3 -3
- package/dist/halov.umd.js +0 -10
|
@@ -1,73 +1,34 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
import { DropdownOption } from 'naive-ui';
|
|
3
1
|
import { TabInfo } from '../types/TabInfo';
|
|
4
|
-
|
|
5
|
-
tabs:
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
tabs: Array<TabInfo>;
|
|
4
|
+
currentTab?: string;
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
prefix?(_: {}): any;
|
|
8
10
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
url: string;
|
|
20
|
-
} | {
|
|
21
|
-
label: string;
|
|
22
|
-
key: string;
|
|
23
|
-
type?: undefined;
|
|
24
|
-
} | {
|
|
25
|
-
type: string;
|
|
26
|
-
key: string;
|
|
27
|
-
label?: undefined;
|
|
28
|
-
})[]>;
|
|
29
|
-
renderDropdownIcon: (option: DropdownOption) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
30
|
-
[key: string]: any;
|
|
31
|
-
}> | undefined;
|
|
32
|
-
menuSelect: (key: string | number) => void;
|
|
33
|
-
menuCollapsed: import('vue').ComputedRef<boolean>;
|
|
34
|
-
menuPosition: "top" | "side";
|
|
35
|
-
toggleMenuCollapsed: () => void;
|
|
36
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("closeTab" | "update:currentTab" | "closeAll" | "closeOthers")[], "closeTab" | "update:currentTab" | "closeAll" | "closeOthers", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
37
|
-
tabs: {
|
|
38
|
-
type: PropType<Array<TabInfo>>;
|
|
39
|
-
default: () => never[];
|
|
40
|
-
};
|
|
41
|
-
currentTab: {
|
|
42
|
-
type: StringConstructor;
|
|
43
|
-
};
|
|
44
|
-
}>> & Readonly<{
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
closeTab: (...args: any[]) => void;
|
|
17
|
+
"update:currentTab": (...args: any[]) => void;
|
|
18
|
+
closeAll: (...args: any[]) => void;
|
|
19
|
+
closeOthers: (...args: any[]) => void;
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
45
21
|
onCloseTab?: ((...args: any[]) => any) | undefined;
|
|
46
22
|
"onUpdate:currentTab"?: ((...args: any[]) => any) | undefined;
|
|
47
23
|
onCloseAll?: ((...args: any[]) => any) | undefined;
|
|
48
24
|
onCloseOthers?: ((...args: any[]) => any) | undefined;
|
|
49
25
|
}>, {
|
|
50
|
-
tabs: TabInfo
|
|
51
|
-
}, {}, {
|
|
52
|
-
|
|
53
|
-
path: StringConstructor;
|
|
54
|
-
size: {
|
|
55
|
-
type: NumberConstructor;
|
|
56
|
-
default: number;
|
|
57
|
-
};
|
|
58
|
-
}>, {
|
|
59
|
-
url: import('vue').Ref<string | undefined, string | undefined>;
|
|
60
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
61
|
-
path: StringConstructor;
|
|
62
|
-
size: {
|
|
63
|
-
type: NumberConstructor;
|
|
64
|
-
default: number;
|
|
65
|
-
};
|
|
66
|
-
}>> & Readonly<{}>, {
|
|
67
|
-
size: number;
|
|
68
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
69
|
-
DropDownIcon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
|
-
MenuOpenIcon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
71
|
-
MenuIcon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
72
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
26
|
+
tabs: Array<TabInfo>;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
73
29
|
export default _default;
|
|
30
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -821,8 +821,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
821
821
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
822
822
|
}>, {
|
|
823
823
|
readonly: boolean;
|
|
824
|
-
show: boolean;
|
|
825
824
|
placeholder: string;
|
|
825
|
+
show: boolean;
|
|
826
826
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
827
827
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
828
828
|
value: StringConstructor;
|
|
@@ -140,8 +140,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
140
140
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
141
141
|
}>, {
|
|
142
142
|
readonly: boolean;
|
|
143
|
-
show: boolean;
|
|
144
143
|
placeholder: string;
|
|
144
|
+
show: boolean;
|
|
145
145
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
146
146
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
147
147
|
value: StringConstructor;
|
|
@@ -1512,8 +1512,8 @@ declare function __VLS_template(): {
|
|
|
1512
1512
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1513
1513
|
}>, {
|
|
1514
1514
|
readonly: boolean;
|
|
1515
|
-
show: boolean;
|
|
1516
1515
|
placeholder: string;
|
|
1516
|
+
show: boolean;
|
|
1517
1517
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1518
1518
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1519
1519
|
value: StringConstructor;
|
|
@@ -10864,8 +10864,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10864
10864
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
10865
10865
|
}>, {
|
|
10866
10866
|
readonly: boolean;
|
|
10867
|
-
show: boolean;
|
|
10868
10867
|
placeholder: string;
|
|
10868
|
+
show: boolean;
|
|
10869
10869
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
10870
10870
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
10871
10871
|
value: StringConstructor;
|
|
@@ -32,8 +32,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
32
32
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
33
33
|
onCommit?: ((...args: any[]) => any) | undefined;
|
|
34
34
|
}>, {
|
|
35
|
+
placeholder: string;
|
|
35
36
|
show: boolean;
|
|
36
37
|
submitting: boolean;
|
|
37
|
-
placeholder: string;
|
|
38
38
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
39
39
|
export default _default;
|
|
@@ -29,7 +29,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
29
29
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
30
30
|
}>, {
|
|
31
31
|
readonly: boolean;
|
|
32
|
-
show: boolean;
|
|
33
32
|
placeholder: string;
|
|
33
|
+
show: boolean;
|
|
34
34
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
35
35
|
export default _default;
|
|
@@ -2775,8 +2775,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2775
2775
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
2776
2776
|
}>, {
|
|
2777
2777
|
readonly: boolean;
|
|
2778
|
-
show: boolean;
|
|
2779
2778
|
placeholder: string;
|
|
2779
|
+
show: boolean;
|
|
2780
2780
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2781
2781
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2782
2782
|
value: StringConstructor;
|
|
@@ -4113,8 +4113,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
4113
4113
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
4114
4114
|
}>, {
|
|
4115
4115
|
readonly: boolean;
|
|
4116
|
-
show: boolean;
|
|
4117
4116
|
placeholder: string;
|
|
4117
|
+
show: boolean;
|
|
4118
4118
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4119
4119
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4120
4120
|
value: StringConstructor;
|
|
@@ -11990,8 +11990,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11990
11990
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
11991
11991
|
}>, {
|
|
11992
11992
|
readonly: boolean;
|
|
11993
|
-
show: boolean;
|
|
11994
11993
|
placeholder: string;
|
|
11994
|
+
show: boolean;
|
|
11995
11995
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
11996
11996
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11997
11997
|
value: StringConstructor;
|
|
@@ -1288,8 +1288,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1288
1288
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1289
1289
|
}>, {
|
|
1290
1290
|
readonly: boolean;
|
|
1291
|
-
show: boolean;
|
|
1292
1291
|
placeholder: string;
|
|
1292
|
+
show: boolean;
|
|
1293
1293
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1294
1294
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1295
1295
|
value: StringConstructor;
|
|
@@ -1337,8 +1337,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
1337
1337
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1338
1338
|
}>, {
|
|
1339
1339
|
readonly: boolean;
|
|
1340
|
-
show: boolean;
|
|
1341
1340
|
placeholder: string;
|
|
1341
|
+
show: boolean;
|
|
1342
1342
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1343
1343
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1344
1344
|
value: StringConstructor;
|
|
@@ -2675,8 +2675,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
2675
2675
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
2676
2676
|
}>, {
|
|
2677
2677
|
readonly: boolean;
|
|
2678
|
-
show: boolean;
|
|
2679
2678
|
placeholder: string;
|
|
2679
|
+
show: boolean;
|
|
2680
2680
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2681
2681
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2682
2682
|
value: StringConstructor;
|
|
@@ -10527,8 +10527,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
10527
10527
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
10528
10528
|
}>, {
|
|
10529
10529
|
readonly: boolean;
|
|
10530
|
-
show: boolean;
|
|
10531
10530
|
placeholder: string;
|
|
10531
|
+
show: boolean;
|
|
10532
10532
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
10533
10533
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
10534
10534
|
value: StringConstructor;
|
|
@@ -19797,8 +19797,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
19797
19797
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
19798
19798
|
}>, {
|
|
19799
19799
|
readonly: boolean;
|
|
19800
|
-
show: boolean;
|
|
19801
19800
|
placeholder: string;
|
|
19801
|
+
show: boolean;
|
|
19802
19802
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
19803
19803
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
19804
19804
|
value: StringConstructor;
|
|
@@ -21135,8 +21135,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
21135
21135
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
21136
21136
|
}>, {
|
|
21137
21137
|
readonly: boolean;
|
|
21138
|
-
show: boolean;
|
|
21139
21138
|
placeholder: string;
|
|
21139
|
+
show: boolean;
|
|
21140
21140
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21141
21141
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
21142
21142
|
value: StringConstructor;
|
|
@@ -1312,8 +1312,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1312
1312
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1313
1313
|
}>, {
|
|
1314
1314
|
readonly: boolean;
|
|
1315
|
-
show: boolean;
|
|
1316
1315
|
placeholder: string;
|
|
1316
|
+
show: boolean;
|
|
1317
1317
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1318
1318
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1319
1319
|
value: StringConstructor;
|
|
@@ -2650,8 +2650,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2650
2650
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
2651
2651
|
}>, {
|
|
2652
2652
|
readonly: boolean;
|
|
2653
|
-
show: boolean;
|
|
2654
2653
|
placeholder: string;
|
|
2654
|
+
show: boolean;
|
|
2655
2655
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2656
2656
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2657
2657
|
value: StringConstructor;
|
|
@@ -10527,8 +10527,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10527
10527
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
10528
10528
|
}>, {
|
|
10529
10529
|
readonly: boolean;
|
|
10530
|
-
show: boolean;
|
|
10531
10530
|
placeholder: string;
|
|
10531
|
+
show: boolean;
|
|
10532
10532
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
10533
10533
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
10534
10534
|
value: StringConstructor;
|
|
@@ -1440,8 +1440,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
1440
1440
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1441
1441
|
}>, {
|
|
1442
1442
|
readonly: boolean;
|
|
1443
|
-
show: boolean;
|
|
1444
1443
|
placeholder: string;
|
|
1444
|
+
show: boolean;
|
|
1445
1445
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1446
1446
|
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1447
1447
|
value: StringConstructor;
|