star-horse-lowcode 3.1.7 → 3.1.8
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 +5 -0
- package/dist/assets/index.css +1 -1
- package/dist/components/comp/StarHorseSearchForm.vue.d.ts +9 -62
- package/dist/components/formcomp/utils/FieldList.vue.d.ts +12 -3
- package/dist/index.es.js +2 -2
- package/dist/plugins/AblesPlugin.d.ts +15 -1
- package/dist/types/components/comp/StarHorseSearchForm.vue.d.ts +9 -62
- package/dist/types/components/formcomp/utils/FieldList.vue.d.ts +12 -3
- package/dist/types/plugins/AblesPlugin.d.ts +15 -1
- package/package.json +1 -1
|
@@ -45,4 +45,18 @@ export declare function dynamicFormContextMenuData(item: any, parentItem: any, f
|
|
|
45
45
|
* @param node
|
|
46
46
|
* @param recallFunction
|
|
47
47
|
*/
|
|
48
|
-
export declare function dynamicPageContextMenuData(node: DynamicNode, recallFunction: Function):
|
|
48
|
+
export declare function dynamicPageContextMenuData(node: DynamicNode, recallFunction: Function): ({
|
|
49
|
+
type: string;
|
|
50
|
+
text: any;
|
|
51
|
+
icon: string;
|
|
52
|
+
display: boolean;
|
|
53
|
+
handler: () => void;
|
|
54
|
+
direction?: undefined;
|
|
55
|
+
} | {
|
|
56
|
+
type: string;
|
|
57
|
+
direction: string;
|
|
58
|
+
display: boolean;
|
|
59
|
+
text?: undefined;
|
|
60
|
+
icon?: undefined;
|
|
61
|
+
handler?: undefined;
|
|
62
|
+
})[];
|
|
@@ -1,77 +1,24 @@
|
|
|
1
1
|
import { SearchParams } from "../../components/types/Params";
|
|
2
2
|
import { SearchFields } from "../../components/types/SearchProps";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
type: {
|
|
11
|
-
(arrayLength: number): SearchParams[];
|
|
12
|
-
(...items: SearchParams[]): SearchParams[];
|
|
13
|
-
new (arrayLength: number): SearchParams[];
|
|
14
|
-
new (...items: SearchParams[]): SearchParams[];
|
|
15
|
-
isArray(arg: any): arg is any[];
|
|
16
|
-
readonly prototype: any[];
|
|
17
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
18
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
19
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
20
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
21
|
-
of<T>(...items: T[]): T[];
|
|
22
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
dialogInput: {
|
|
26
|
-
type: BooleanConstructor;
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
mutComp: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: boolean;
|
|
32
|
-
};
|
|
33
|
-
}>, {
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
formData: SearchFields;
|
|
5
|
+
defaultCondition: SearchParams[];
|
|
6
|
+
dialogInput: boolean;
|
|
7
|
+
mutComp: boolean;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
|
|
34
10
|
searchForm: import("vue").Ref<any, any>;
|
|
35
11
|
setData: (data: any) => void;
|
|
36
12
|
createSearchParams: (formData: any) => any[];
|
|
37
13
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
38
14
|
searchData: (...args: any[]) => void;
|
|
39
15
|
initComplete: (...args: any[]) => void;
|
|
40
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
41
|
-
formData: {
|
|
42
|
-
type: PropType<SearchFields>;
|
|
43
|
-
required: true;
|
|
44
|
-
};
|
|
45
|
-
defaultCondition: {
|
|
46
|
-
type: {
|
|
47
|
-
(arrayLength: number): SearchParams[];
|
|
48
|
-
(...items: SearchParams[]): SearchParams[];
|
|
49
|
-
new (arrayLength: number): SearchParams[];
|
|
50
|
-
new (...items: SearchParams[]): SearchParams[];
|
|
51
|
-
isArray(arg: any): arg is any[];
|
|
52
|
-
readonly prototype: any[];
|
|
53
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
54
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
55
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
56
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
57
|
-
of<T>(...items: T[]): T[];
|
|
58
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
dialogInput: {
|
|
62
|
-
type: BooleanConstructor;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
|
-
mutComp: {
|
|
66
|
-
type: BooleanConstructor;
|
|
67
|
-
default: boolean;
|
|
68
|
-
};
|
|
69
|
-
}>> & Readonly<{
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
70
17
|
onSearchData?: (...args: any[]) => any;
|
|
71
18
|
onInitComplete?: (...args: any[]) => any;
|
|
72
19
|
}>, {
|
|
73
20
|
dialogInput: boolean;
|
|
74
21
|
mutComp: boolean;
|
|
75
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
76
23
|
declare const _default: typeof __VLS_export;
|
|
77
24
|
export default _default;
|
|
@@ -1,7 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
showContainer: boolean;
|
|
3
|
+
showFormItems: boolean;
|
|
4
|
+
showThirdItems: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
7
|
selectData: (...args: any[]) => void;
|
|
3
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
4
9
|
onSelectData?: (...args: any[]) => any;
|
|
5
|
-
}>, {
|
|
10
|
+
}>, {
|
|
11
|
+
showContainer: boolean;
|
|
12
|
+
showFormItems: boolean;
|
|
13
|
+
showThirdItems: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
15
|
declare const _default: typeof __VLS_export;
|
|
7
16
|
export default _default;
|
|
@@ -45,4 +45,18 @@ export declare function dynamicFormContextMenuData(item: any, parentItem: any, f
|
|
|
45
45
|
* @param node
|
|
46
46
|
* @param recallFunction
|
|
47
47
|
*/
|
|
48
|
-
export declare function dynamicPageContextMenuData(node: DynamicNode, recallFunction: Function):
|
|
48
|
+
export declare function dynamicPageContextMenuData(node: DynamicNode, recallFunction: Function): ({
|
|
49
|
+
type: string;
|
|
50
|
+
text: any;
|
|
51
|
+
icon: string;
|
|
52
|
+
display: boolean;
|
|
53
|
+
handler: () => void;
|
|
54
|
+
direction?: undefined;
|
|
55
|
+
} | {
|
|
56
|
+
type: string;
|
|
57
|
+
direction: string;
|
|
58
|
+
display: boolean;
|
|
59
|
+
text?: undefined;
|
|
60
|
+
icon?: undefined;
|
|
61
|
+
handler?: undefined;
|
|
62
|
+
})[];
|