zhytech-ui 1.2.9 → 1.2.10
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 +14 -0
- package/dist/src/components/dynamicFilter/filterItem.vue.d.ts +14 -14
- package/dist/src/components/dynamicFilter/index.vue.d.ts +14 -14
- package/dist/src/components/dynamicForm/components/advanced/upload/index.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/advanced/upload/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/advanced/uploadImage/index.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/advanced/uploadImage/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/application/employee/index.d.ts +10 -8
- package/dist/src/components/dynamicForm/components/application/employee/propsEditor.vue.d.ts +15 -7
- package/dist/src/components/dynamicForm/components/application/employee/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/application/grade/index.d.ts +7 -5
- package/dist/src/components/dynamicForm/components/application/grade/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/application/post/index.d.ts +7 -5
- package/dist/src/components/dynamicForm/components/application/post/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/base/checkbox/index.d.ts +9 -7
- package/dist/src/components/dynamicForm/components/base/checkbox/propsEditor.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/base/checkbox/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/base/date/index.d.ts +7 -5
- package/dist/src/components/dynamicForm/components/base/date/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/base/input/index.d.ts +7 -5
- package/dist/src/components/dynamicForm/components/base/input/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/base/inputNumber/index.d.ts +7 -5
- package/dist/src/components/dynamicForm/components/base/inputNumber/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/base/label/index.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/base/label/renderer.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/base/radio/index.d.ts +9 -7
- package/dist/src/components/dynamicForm/components/base/radio/propsEditor.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/base/radio/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/base/time/index.d.ts +7 -5
- package/dist/src/components/dynamicForm/components/base/time/renderer.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/common/answerSheet/answerSheetItem.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/common/answerSheet/index.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/common/batchAddDialog.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/common/componentBasePropsEditor.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/common/componentDesigner.vue.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/common/componentRenderer.vue.d.ts +12 -12
- package/dist/src/components/dynamicForm/components/common/conditionInput.vue.d.ts +22 -22
- package/dist/src/components/dynamicForm/components/common/dictionaryBinder.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/common/formPropsEditor.vue.d.ts +15 -5
- package/dist/src/components/dynamicForm/components/common/toolbar.vue.d.ts +8 -8
- package/dist/src/components/dynamicForm/components/layout/groupLayout/index.d.ts +10 -10
- package/dist/src/components/dynamicForm/components/layout/groupLayout/renderer.vue.d.ts +10 -10
- package/dist/src/components/dynamicForm/components/layout/tabs/index.d.ts +4 -4
- package/dist/src/components/dynamicForm/components/layout/tabs/propsEditor.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/layout/tabs/renderer.vue.d.ts +2 -2
- package/dist/src/components/dynamicForm/formDesigner.vue.d.ts +40 -43
- package/dist/src/components/dynamicForm/formRenderer.vue.d.ts +6 -6
- package/dist/src/components/filePreview/components/videoPreview.vue.d.ts +14 -6
- package/dist/src/components/filePreview/index.vue.d.ts +4 -4
- package/dist/src/components/richTextEditor/index.vue.d.ts +2 -2
- package/dist/src/components/verificationCode/components/clickTextVCode.vue.d.ts +10 -10
- package/dist/src/components/verificationCode/components/puzzleVCode.vue.d.ts +4 -4
- package/dist/src/components/verificationCode/index.vue.d.ts +2 -2
- package/dist/src/hooks/useUtils.d.ts +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +7720 -41965
- package/dist/zhytech-ui.umd.js +11 -607
- package/package.json +8 -35
|
@@ -3,7 +3,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
3
3
|
* 组件
|
|
4
4
|
*/
|
|
5
5
|
components: {
|
|
6
|
-
type:
|
|
6
|
+
type: PropType<Record<string, any>[]>;
|
|
7
7
|
required: true;
|
|
8
8
|
};
|
|
9
9
|
/**
|
|
@@ -24,7 +24,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
24
24
|
* 布局方向
|
|
25
25
|
*/
|
|
26
26
|
layoutMode: {
|
|
27
|
-
type:
|
|
27
|
+
type: PropType<"horizontal" | "vertical">;
|
|
28
28
|
default: string;
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
@@ -39,10 +39,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
39
39
|
isArray(arg: any): arg is any[];
|
|
40
40
|
readonly prototype: any[];
|
|
41
41
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
42
|
-
from<
|
|
43
|
-
from<
|
|
44
|
-
from<
|
|
45
|
-
of<
|
|
42
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
43
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
44
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
45
|
+
of<T>(...items: T[]): T[];
|
|
46
46
|
readonly [Symbol.species]: ArrayConstructor;
|
|
47
47
|
};
|
|
48
48
|
default: never[];
|
|
@@ -54,7 +54,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
54
54
|
* 组件
|
|
55
55
|
*/
|
|
56
56
|
components: {
|
|
57
|
-
type:
|
|
57
|
+
type: PropType<Record<string, any>[]>;
|
|
58
58
|
required: true;
|
|
59
59
|
};
|
|
60
60
|
/**
|
|
@@ -75,7 +75,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
75
75
|
* 布局方向
|
|
76
76
|
*/
|
|
77
77
|
layoutMode: {
|
|
78
|
-
type:
|
|
78
|
+
type: PropType<"horizontal" | "vertical">;
|
|
79
79
|
default: string;
|
|
80
80
|
};
|
|
81
81
|
/**
|
|
@@ -90,10 +90,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
90
90
|
isArray(arg: any): arg is any[];
|
|
91
91
|
readonly prototype: any[];
|
|
92
92
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
93
|
-
from<
|
|
94
|
-
from<
|
|
95
|
-
from<
|
|
96
|
-
of<
|
|
93
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
94
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
95
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
96
|
+
of<T>(...items: T[]): T[];
|
|
97
97
|
readonly [Symbol.species]: ArrayConstructor;
|
|
98
98
|
};
|
|
99
99
|
default: never[];
|
|
@@ -40,10 +40,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
40
40
|
isArray(arg: any): arg is any[];
|
|
41
41
|
readonly prototype: any[];
|
|
42
42
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
43
|
-
from<
|
|
44
|
-
from<
|
|
45
|
-
from<
|
|
46
|
-
of<
|
|
43
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
44
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
45
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
46
|
+
of<T>(...items: T[]): T[];
|
|
47
47
|
readonly [Symbol.species]: ArrayConstructor;
|
|
48
48
|
};
|
|
49
49
|
default: () => never[];
|
|
@@ -92,10 +92,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
92
92
|
isArray(arg: any): arg is any[];
|
|
93
93
|
readonly prototype: any[];
|
|
94
94
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
95
|
-
from<
|
|
96
|
-
from<
|
|
97
|
-
from<
|
|
98
|
-
of<
|
|
95
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
96
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
97
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
98
|
+
of<T>(...items: T[]): T[];
|
|
99
99
|
readonly [Symbol.species]: ArrayConstructor;
|
|
100
100
|
};
|
|
101
101
|
default: () => never[];
|
|
@@ -112,15 +112,15 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
112
112
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
113
113
|
dynamicFilterRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
114
114
|
items: {
|
|
115
|
-
type:
|
|
115
|
+
type: PropType<filterItemType[]>;
|
|
116
116
|
required: true;
|
|
117
117
|
};
|
|
118
118
|
conditionTypes: {
|
|
119
|
-
type:
|
|
119
|
+
type: PropType<filterConditionType>;
|
|
120
120
|
required: true;
|
|
121
121
|
};
|
|
122
122
|
conditionProps: {
|
|
123
|
-
type:
|
|
123
|
+
type: PropType<filterConditionPropType>;
|
|
124
124
|
required: true;
|
|
125
125
|
};
|
|
126
126
|
showStyle: {
|
|
@@ -136,10 +136,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
136
136
|
isArray(arg: any): arg is any[];
|
|
137
137
|
readonly prototype: any[];
|
|
138
138
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
139
|
-
from<
|
|
140
|
-
from<
|
|
141
|
-
from<
|
|
142
|
-
of<
|
|
139
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
140
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
141
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
142
|
+
of<T>(...items: T[]): T[];
|
|
143
143
|
readonly [Symbol.species]: ArrayConstructor;
|
|
144
144
|
};
|
|
145
145
|
default: () => never[];
|
|
@@ -163,15 +163,15 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
163
163
|
Defaults: {};
|
|
164
164
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
165
165
|
items: {
|
|
166
|
-
type:
|
|
166
|
+
type: PropType<filterItemType[]>;
|
|
167
167
|
required: true;
|
|
168
168
|
};
|
|
169
169
|
conditionTypes: {
|
|
170
|
-
type:
|
|
170
|
+
type: PropType<filterConditionType>;
|
|
171
171
|
required: true;
|
|
172
172
|
};
|
|
173
173
|
conditionProps: {
|
|
174
|
-
type:
|
|
174
|
+
type: PropType<filterConditionPropType>;
|
|
175
175
|
required: true;
|
|
176
176
|
};
|
|
177
177
|
showStyle: {
|
|
@@ -187,10 +187,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
187
187
|
isArray(arg: any): arg is any[];
|
|
188
188
|
readonly prototype: any[];
|
|
189
189
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
190
|
-
from<
|
|
191
|
-
from<
|
|
192
|
-
from<
|
|
193
|
-
of<
|
|
190
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
191
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
192
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
193
|
+
of<T>(...items: T[]): T[];
|
|
194
194
|
readonly [Symbol.species]: ArrayConstructor;
|
|
195
195
|
};
|
|
196
196
|
default: () => never[];
|
|
@@ -8,7 +8,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
8
8
|
* @description: 业务字典数据
|
|
9
9
|
*/
|
|
10
10
|
dictionary: {
|
|
11
|
-
type:
|
|
11
|
+
type: PropType<dictionaryData>;
|
|
12
12
|
default: () => void;
|
|
13
13
|
};
|
|
14
14
|
placeholder: {
|
|
@@ -43,7 +43,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
43
43
|
* @description: 业务字典数据
|
|
44
44
|
*/
|
|
45
45
|
dictionary: {
|
|
46
|
-
type:
|
|
46
|
+
type: PropType<dictionaryData>;
|
|
47
47
|
default: () => void;
|
|
48
48
|
};
|
|
49
49
|
placeholder: {
|
|
@@ -1,11 +1,21 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
formBeforeExtendProps?(_: {}): any;
|
|
5
|
+
formAfterExtendProps?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
formRef: unknown;
|
|
9
|
+
};
|
|
10
|
+
rootEl: any;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
2
14
|
validate(callback?: Function): Promise<any>;
|
|
3
15
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
4
16
|
formRef: unknown;
|
|
5
|
-
}, any
|
|
6
|
-
|
|
7
|
-
formAfterExtendProps?(_: {}): any;
|
|
8
|
-
}>;
|
|
17
|
+
}, any>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
9
19
|
export default _default;
|
|
10
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
11
21
|
new (): {
|
|
@@ -8,10 +8,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
8
8
|
isArray(arg: any): arg is any[];
|
|
9
9
|
readonly prototype: any[];
|
|
10
10
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
11
|
-
from<
|
|
12
|
-
from<
|
|
13
|
-
from<
|
|
14
|
-
of<
|
|
11
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
12
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
13
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
14
|
+
of<T>(...items: T[]): T[];
|
|
15
15
|
readonly [Symbol.species]: ArrayConstructor;
|
|
16
16
|
};
|
|
17
17
|
default: () => never[];
|
|
@@ -36,10 +36,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
36
36
|
isArray(arg: any): arg is any[];
|
|
37
37
|
readonly prototype: any[];
|
|
38
38
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
39
|
-
from<
|
|
40
|
-
from<
|
|
41
|
-
from<
|
|
42
|
-
of<
|
|
39
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
40
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
41
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
42
|
+
of<T>(...items: T[]): T[];
|
|
43
43
|
readonly [Symbol.species]: ArrayConstructor;
|
|
44
44
|
};
|
|
45
45
|
default: () => never[];
|
|
@@ -14,7 +14,7 @@ declare const _default: {
|
|
|
14
14
|
required: true;
|
|
15
15
|
};
|
|
16
16
|
component: {
|
|
17
|
-
type:
|
|
17
|
+
type: PropType<Record<string, any>>;
|
|
18
18
|
required: true;
|
|
19
19
|
};
|
|
20
20
|
showDescription: {
|
|
@@ -30,10 +30,10 @@ declare const _default: {
|
|
|
30
30
|
isArray(arg: any): arg is any[];
|
|
31
31
|
readonly prototype: any[];
|
|
32
32
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
33
|
-
from<
|
|
34
|
-
from<
|
|
35
|
-
from<
|
|
36
|
-
of<
|
|
33
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
34
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
35
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
36
|
+
of<T>(...items: T[]): T[];
|
|
37
37
|
readonly [Symbol.species]: ArrayConstructor;
|
|
38
38
|
};
|
|
39
39
|
default: never[];
|
|
@@ -51,7 +51,7 @@ declare const _default: {
|
|
|
51
51
|
required: true;
|
|
52
52
|
};
|
|
53
53
|
component: {
|
|
54
|
-
type:
|
|
54
|
+
type: PropType<Record<string, any>>;
|
|
55
55
|
required: true;
|
|
56
56
|
};
|
|
57
57
|
showDescription: {
|
|
@@ -67,10 +67,10 @@ declare const _default: {
|
|
|
67
67
|
isArray(arg: any): arg is any[];
|
|
68
68
|
readonly prototype: any[];
|
|
69
69
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
70
|
-
from<
|
|
71
|
-
from<
|
|
72
|
-
from<
|
|
73
|
-
of<
|
|
70
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
71
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
72
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
73
|
+
of<T>(...items: T[]): T[];
|
|
74
74
|
readonly [Symbol.species]: ArrayConstructor;
|
|
75
75
|
};
|
|
76
76
|
default: never[];
|
|
@@ -17,7 +17,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
17
17
|
* 组件
|
|
18
18
|
*/
|
|
19
19
|
component: {
|
|
20
|
-
type:
|
|
20
|
+
type: PropType<Record<string, any>>;
|
|
21
21
|
required: true;
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
@@ -39,10 +39,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
39
39
|
isArray(arg: any): arg is any[];
|
|
40
40
|
readonly prototype: any[];
|
|
41
41
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
42
|
-
from<
|
|
43
|
-
from<
|
|
44
|
-
from<
|
|
45
|
-
of<
|
|
42
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
43
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
44
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
45
|
+
of<T>(...items: T[]): T[];
|
|
46
46
|
readonly [Symbol.species]: ArrayConstructor;
|
|
47
47
|
};
|
|
48
48
|
default: never[];
|
|
@@ -69,7 +69,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
69
69
|
* 组件
|
|
70
70
|
*/
|
|
71
71
|
component: {
|
|
72
|
-
type:
|
|
72
|
+
type: PropType<Record<string, any>>;
|
|
73
73
|
required: true;
|
|
74
74
|
};
|
|
75
75
|
/**
|
|
@@ -91,10 +91,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
91
91
|
isArray(arg: any): arg is any[];
|
|
92
92
|
readonly prototype: any[];
|
|
93
93
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
94
|
-
from<
|
|
95
|
-
from<
|
|
96
|
-
from<
|
|
97
|
-
of<
|
|
94
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
95
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
96
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
97
|
+
of<T>(...items: T[]): T[];
|
|
98
98
|
readonly [Symbol.species]: ArrayConstructor;
|
|
99
99
|
};
|
|
100
100
|
default: never[];
|
|
@@ -14,7 +14,7 @@ declare const _default: {
|
|
|
14
14
|
required: true;
|
|
15
15
|
};
|
|
16
16
|
component: {
|
|
17
|
-
type:
|
|
17
|
+
type: PropType<Record<string, any>>;
|
|
18
18
|
required: true;
|
|
19
19
|
};
|
|
20
20
|
showDescription: {
|
|
@@ -34,7 +34,7 @@ declare const _default: {
|
|
|
34
34
|
required: true;
|
|
35
35
|
};
|
|
36
36
|
component: {
|
|
37
|
-
type:
|
|
37
|
+
type: PropType<Record<string, any>>;
|
|
38
38
|
required: true;
|
|
39
39
|
};
|
|
40
40
|
showDescription: {
|
|
@@ -50,7 +50,7 @@ declare const _default: {
|
|
|
50
50
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
51
51
|
propEditor: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
52
52
|
dictionary: {
|
|
53
|
-
type:
|
|
53
|
+
type: PropType<import('../../..').dictionaryData>;
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
allowCreateDictionary: {
|
|
@@ -59,7 +59,7 @@ declare const _default: {
|
|
|
59
59
|
};
|
|
60
60
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
61
61
|
dictionary: {
|
|
62
|
-
type:
|
|
62
|
+
type: PropType<import('../../..').dictionaryData>;
|
|
63
63
|
default: () => void;
|
|
64
64
|
};
|
|
65
65
|
allowCreateDictionary: {
|
|
@@ -4,7 +4,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
4
4
|
* @description: 业务字典数据集合
|
|
5
5
|
*/
|
|
6
6
|
dictionary: {
|
|
7
|
-
type:
|
|
7
|
+
type: PropType<dictionaryData>;
|
|
8
8
|
default: () => void;
|
|
9
9
|
};
|
|
10
10
|
allowCreateDictionary: {
|
|
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
16
16
|
* @description: 业务字典数据集合
|
|
17
17
|
*/
|
|
18
18
|
dictionary: {
|
|
19
|
-
type:
|
|
19
|
+
type: PropType<dictionaryData>;
|
|
20
20
|
default: () => void;
|
|
21
21
|
};
|
|
22
22
|
allowCreateDictionary: {
|
|
@@ -17,7 +17,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
17
17
|
* 组件
|
|
18
18
|
*/
|
|
19
19
|
component: {
|
|
20
|
-
type:
|
|
20
|
+
type: PropType<Record<string, any>>;
|
|
21
21
|
required: true;
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
@@ -49,7 +49,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
49
49
|
* 组件
|
|
50
50
|
*/
|
|
51
51
|
component: {
|
|
52
|
-
type:
|
|
52
|
+
type: PropType<Record<string, any>>;
|
|
53
53
|
required: true;
|
|
54
54
|
};
|
|
55
55
|
/**
|
|
@@ -6,7 +6,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
6
6
|
* @description: 表单数据,包含表单属性,组件集合、初始数据
|
|
7
7
|
*/
|
|
8
8
|
formData: {
|
|
9
|
-
type:
|
|
9
|
+
type: PropType<dynamicFormData<formAttribute>>;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
@@ -21,10 +21,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
21
21
|
isArray(arg: any): arg is any[];
|
|
22
22
|
readonly prototype: any[];
|
|
23
23
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
24
|
-
from<
|
|
25
|
-
from<
|
|
26
|
-
from<
|
|
27
|
-
of<
|
|
24
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
25
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
26
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
27
|
+
of<T>(...items: T[]): T[];
|
|
28
28
|
readonly [Symbol.species]: ArrayConstructor;
|
|
29
29
|
};
|
|
30
30
|
default: () => never[];
|
|
@@ -40,14 +40,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
40
40
|
* @description: 文件上传配置参数
|
|
41
41
|
*/
|
|
42
42
|
uploadOptions: {
|
|
43
|
-
type:
|
|
43
|
+
type: PropType<uploadOption>;
|
|
44
44
|
default: () => uploadOption;
|
|
45
45
|
};
|
|
46
46
|
/**
|
|
47
47
|
* @description: 业务字典数据
|
|
48
48
|
*/
|
|
49
49
|
dictionary: {
|
|
50
|
-
type:
|
|
50
|
+
type: PropType<dictionaryData>;
|
|
51
51
|
default: () => void;
|
|
52
52
|
};
|
|
53
53
|
/**
|
|
@@ -75,7 +75,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
75
75
|
* 批量添加组件参数
|
|
76
76
|
*/
|
|
77
77
|
batchAddComponentParams: {
|
|
78
|
-
type:
|
|
78
|
+
type: PropType<batchAddComponentParam>;
|
|
79
79
|
default: () => void;
|
|
80
80
|
};
|
|
81
81
|
/**
|
|
@@ -107,7 +107,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
107
107
|
* @description: 表单数据,包含表单属性,组件集合、初始数据
|
|
108
108
|
*/
|
|
109
109
|
formData: {
|
|
110
|
-
type:
|
|
110
|
+
type: PropType<dynamicFormData<formAttribute>>;
|
|
111
111
|
required: true;
|
|
112
112
|
};
|
|
113
113
|
/**
|
|
@@ -122,10 +122,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
122
122
|
isArray(arg: any): arg is any[];
|
|
123
123
|
readonly prototype: any[];
|
|
124
124
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
125
|
-
from<
|
|
126
|
-
from<
|
|
127
|
-
from<
|
|
128
|
-
of<
|
|
125
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
126
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
127
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
128
|
+
of<T>(...items: T[]): T[];
|
|
129
129
|
readonly [Symbol.species]: ArrayConstructor;
|
|
130
130
|
};
|
|
131
131
|
default: () => never[];
|
|
@@ -141,14 +141,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
141
141
|
* @description: 文件上传配置参数
|
|
142
142
|
*/
|
|
143
143
|
uploadOptions: {
|
|
144
|
-
type:
|
|
144
|
+
type: PropType<uploadOption>;
|
|
145
145
|
default: () => uploadOption;
|
|
146
146
|
};
|
|
147
147
|
/**
|
|
148
148
|
* @description: 业务字典数据
|
|
149
149
|
*/
|
|
150
150
|
dictionary: {
|
|
151
|
-
type:
|
|
151
|
+
type: PropType<dictionaryData>;
|
|
152
152
|
default: () => void;
|
|
153
153
|
};
|
|
154
154
|
/**
|
|
@@ -176,7 +176,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
176
176
|
* 批量添加组件参数
|
|
177
177
|
*/
|
|
178
178
|
batchAddComponentParams: {
|
|
179
|
-
type:
|
|
179
|
+
type: PropType<batchAddComponentParam>;
|
|
180
180
|
default: () => void;
|
|
181
181
|
};
|
|
182
182
|
/**
|
|
@@ -231,36 +231,33 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
231
231
|
$slots: Readonly<{
|
|
232
232
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
233
233
|
}>;
|
|
234
|
-
$root:
|
|
235
|
-
$parent:
|
|
234
|
+
$root: ComponentPublicInstance | null;
|
|
235
|
+
$parent: ComponentPublicInstance | null;
|
|
236
236
|
$host: Element | null;
|
|
237
237
|
$emit: (event: string, ...args: any[]) => void;
|
|
238
238
|
$el: any;
|
|
239
239
|
$options: import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
240
240
|
validate(callback?: Function): Promise<any>;
|
|
241
241
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
242
|
-
beforeCreate?: ((
|
|
243
|
-
created?: ((
|
|
244
|
-
beforeMount?: ((
|
|
245
|
-
mounted?: ((
|
|
246
|
-
beforeUpdate?: ((
|
|
247
|
-
updated?: ((
|
|
248
|
-
activated?: ((
|
|
249
|
-
deactivated?: ((
|
|
250
|
-
beforeDestroy?: ((
|
|
251
|
-
beforeUnmount?: ((
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
258
|
-
renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
259
|
-
errorCaptured?: (((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void)[]) | undefined;
|
|
242
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
243
|
+
created?: (() => void) | (() => void)[];
|
|
244
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
245
|
+
mounted?: (() => void) | (() => void)[];
|
|
246
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
247
|
+
updated?: (() => void) | (() => void)[];
|
|
248
|
+
activated?: (() => void) | (() => void)[];
|
|
249
|
+
deactivated?: (() => void) | (() => void)[];
|
|
250
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
251
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
252
|
+
destroyed?: (() => void) | (() => void)[];
|
|
253
|
+
unmounted?: (() => void) | (() => void)[];
|
|
254
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
255
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
256
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
260
257
|
};
|
|
261
258
|
$forceUpdate: () => void;
|
|
262
259
|
$nextTick: typeof import('vue').nextTick;
|
|
263
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (
|
|
260
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
264
261
|
} & Readonly<{}> & Omit<Readonly<{}> & Readonly<{}>, "validate"> & import('vue').ShallowUnwrapRef<{
|
|
265
262
|
validate(callback?: Function): Promise<any>;
|
|
266
263
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -271,7 +268,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
271
268
|
}) | null;
|
|
272
269
|
rendererForm: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
273
270
|
formData: {
|
|
274
|
-
type:
|
|
271
|
+
type: PropType<dynamicFormData<formAttribute>>;
|
|
275
272
|
default: () => {
|
|
276
273
|
components: never[];
|
|
277
274
|
props: {
|
|
@@ -286,7 +283,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
286
283
|
required: true;
|
|
287
284
|
};
|
|
288
285
|
uploadOptions: {
|
|
289
|
-
type:
|
|
286
|
+
type: PropType<uploadOption>;
|
|
290
287
|
default: () => uploadOption;
|
|
291
288
|
};
|
|
292
289
|
device: {
|
|
@@ -306,7 +303,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
306
303
|
default: boolean;
|
|
307
304
|
};
|
|
308
305
|
selectComponents: {
|
|
309
|
-
type:
|
|
306
|
+
type: PropType<Record<string, any>[]>;
|
|
310
307
|
default: () => never[];
|
|
311
308
|
};
|
|
312
309
|
hiddenTitle: {
|
|
@@ -369,7 +366,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
369
366
|
Defaults: {};
|
|
370
367
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
371
368
|
formData: {
|
|
372
|
-
type:
|
|
369
|
+
type: PropType<dynamicFormData<formAttribute>>;
|
|
373
370
|
default: () => {
|
|
374
371
|
components: never[];
|
|
375
372
|
props: {
|
|
@@ -384,7 +381,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
384
381
|
required: true;
|
|
385
382
|
};
|
|
386
383
|
uploadOptions: {
|
|
387
|
-
type:
|
|
384
|
+
type: PropType<uploadOption>;
|
|
388
385
|
default: () => uploadOption;
|
|
389
386
|
};
|
|
390
387
|
device: {
|
|
@@ -404,7 +401,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
404
401
|
default: boolean;
|
|
405
402
|
};
|
|
406
403
|
selectComponents: {
|
|
407
|
-
type:
|
|
404
|
+
type: PropType<Record<string, any>[]>;
|
|
408
405
|
default: () => never[];
|
|
409
406
|
};
|
|
410
407
|
hiddenTitle: {
|