@a2simcode/ui 0.0.143 → 0.0.146
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/count/index.d.ts +3 -3
- package/dist/components/count/src/count.vue.d.ts +1 -1
- package/dist/components/form/index.d.ts +27 -0
- package/dist/components/form/src/form.vue.d.ts +12 -0
- package/dist/simcode-ui.es.js +2785 -2777
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -14,12 +14,12 @@ declare const JCount: {
|
|
|
14
14
|
}, import('vue').PublicProps, {
|
|
15
15
|
size: "large" | "default" | "small";
|
|
16
16
|
modelValue: number | string;
|
|
17
|
-
getData: () => any;
|
|
18
17
|
formatJson: string;
|
|
19
18
|
decimal: number;
|
|
20
19
|
thousandSeparator: boolean;
|
|
21
20
|
isChinese: boolean;
|
|
22
21
|
tableIndex: number;
|
|
22
|
+
getData: () => any;
|
|
23
23
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
24
24
|
P: {};
|
|
25
25
|
B: {};
|
|
@@ -36,12 +36,12 @@ declare const JCount: {
|
|
|
36
36
|
}>, {}, {}, {}, {}, {
|
|
37
37
|
size: "large" | "default" | "small";
|
|
38
38
|
modelValue: number | string;
|
|
39
|
-
getData: () => any;
|
|
40
39
|
formatJson: string;
|
|
41
40
|
decimal: number;
|
|
42
41
|
thousandSeparator: boolean;
|
|
43
42
|
isChinese: boolean;
|
|
44
43
|
tableIndex: number;
|
|
44
|
+
getData: () => any;
|
|
45
45
|
}>;
|
|
46
46
|
__isFragment?: never;
|
|
47
47
|
__isTeleport?: never;
|
|
@@ -61,12 +61,12 @@ declare const JCount: {
|
|
|
61
61
|
}, string, {
|
|
62
62
|
size: "large" | "default" | "small";
|
|
63
63
|
modelValue: number | string;
|
|
64
|
-
getData: () => any;
|
|
65
64
|
formatJson: string;
|
|
66
65
|
decimal: number;
|
|
67
66
|
thousandSeparator: boolean;
|
|
68
67
|
isChinese: boolean;
|
|
69
68
|
tableIndex: number;
|
|
69
|
+
getData: () => any;
|
|
70
70
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
71
71
|
install: (app: import('vue').App) => void;
|
|
72
72
|
};
|
|
@@ -31,11 +31,11 @@ declare const _default: import('vue').DefineComponent<CountProps, {}, {}, {}, {}
|
|
|
31
31
|
}>, {
|
|
32
32
|
size: "large" | "default" | "small";
|
|
33
33
|
modelValue: number | string;
|
|
34
|
-
getData: () => any;
|
|
35
34
|
formatJson: string;
|
|
36
35
|
decimal: number;
|
|
37
36
|
thousandSeparator: boolean;
|
|
38
37
|
isChinese: boolean;
|
|
39
38
|
tableIndex: number;
|
|
39
|
+
getData: () => any;
|
|
40
40
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
41
41
|
export default _default;
|
|
@@ -9,6 +9,9 @@ export declare const JForm: {
|
|
|
9
9
|
span: number;
|
|
10
10
|
codeInit: string;
|
|
11
11
|
codeChange: string;
|
|
12
|
+
codeAfterSetData: string;
|
|
13
|
+
codeBeforeSave: string;
|
|
14
|
+
codeAfterSave: string;
|
|
12
15
|
}>;
|
|
13
16
|
default: () => {};
|
|
14
17
|
};
|
|
@@ -50,6 +53,9 @@ export declare const JForm: {
|
|
|
50
53
|
}) => Promise<any>;
|
|
51
54
|
setFormData: (data: Record<string, any>, filter?: (key: string, value: any, table: string) => boolean) => void;
|
|
52
55
|
getFormData: (useTable?: boolean) => Record<string, any>;
|
|
56
|
+
afterSetData: () => Promise<void>;
|
|
57
|
+
beforeSave: () => Promise<void>;
|
|
58
|
+
afterSave: () => Promise<void>;
|
|
53
59
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
54
60
|
change: (...args: any[]) => void;
|
|
55
61
|
}, import('vue').PublicProps, {
|
|
@@ -61,6 +67,9 @@ export declare const JForm: {
|
|
|
61
67
|
span: number;
|
|
62
68
|
codeInit: string;
|
|
63
69
|
codeChange: string;
|
|
70
|
+
codeAfterSetData: string;
|
|
71
|
+
codeBeforeSave: string;
|
|
72
|
+
codeAfterSave: string;
|
|
64
73
|
};
|
|
65
74
|
readonly: boolean;
|
|
66
75
|
schema: any[];
|
|
@@ -83,6 +92,9 @@ export declare const JForm: {
|
|
|
83
92
|
span: number;
|
|
84
93
|
codeInit: string;
|
|
85
94
|
codeChange: string;
|
|
95
|
+
codeAfterSetData: string;
|
|
96
|
+
codeBeforeSave: string;
|
|
97
|
+
codeAfterSave: string;
|
|
86
98
|
}>;
|
|
87
99
|
default: () => {};
|
|
88
100
|
};
|
|
@@ -124,6 +136,9 @@ export declare const JForm: {
|
|
|
124
136
|
}) => Promise<any>;
|
|
125
137
|
setFormData: (data: Record<string, any>, filter?: (key: string, value: any, table: string) => boolean) => void;
|
|
126
138
|
getFormData: (useTable?: boolean) => Record<string, any>;
|
|
139
|
+
afterSetData: () => Promise<void>;
|
|
140
|
+
beforeSave: () => Promise<void>;
|
|
141
|
+
afterSave: () => Promise<void>;
|
|
127
142
|
}, {}, {}, {}, {
|
|
128
143
|
config: {
|
|
129
144
|
labelWidth: number;
|
|
@@ -133,6 +148,9 @@ export declare const JForm: {
|
|
|
133
148
|
span: number;
|
|
134
149
|
codeInit: string;
|
|
135
150
|
codeChange: string;
|
|
151
|
+
codeAfterSetData: string;
|
|
152
|
+
codeBeforeSave: string;
|
|
153
|
+
codeAfterSave: string;
|
|
136
154
|
};
|
|
137
155
|
readonly: boolean;
|
|
138
156
|
schema: any[];
|
|
@@ -152,6 +170,9 @@ export declare const JForm: {
|
|
|
152
170
|
span: number;
|
|
153
171
|
codeInit: string;
|
|
154
172
|
codeChange: string;
|
|
173
|
+
codeAfterSetData: string;
|
|
174
|
+
codeBeforeSave: string;
|
|
175
|
+
codeAfterSave: string;
|
|
155
176
|
}>;
|
|
156
177
|
default: () => {};
|
|
157
178
|
};
|
|
@@ -193,6 +214,9 @@ export declare const JForm: {
|
|
|
193
214
|
}) => Promise<any>;
|
|
194
215
|
setFormData: (data: Record<string, any>, filter?: (key: string, value: any, table: string) => boolean) => void;
|
|
195
216
|
getFormData: (useTable?: boolean) => Record<string, any>;
|
|
217
|
+
afterSetData: () => Promise<void>;
|
|
218
|
+
beforeSave: () => Promise<void>;
|
|
219
|
+
afterSave: () => Promise<void>;
|
|
196
220
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
197
221
|
change: (...args: any[]) => void;
|
|
198
222
|
}, string, {
|
|
@@ -204,6 +228,9 @@ export declare const JForm: {
|
|
|
204
228
|
span: number;
|
|
205
229
|
codeInit: string;
|
|
206
230
|
codeChange: string;
|
|
231
|
+
codeAfterSetData: string;
|
|
232
|
+
codeBeforeSave: string;
|
|
233
|
+
codeAfterSave: string;
|
|
207
234
|
};
|
|
208
235
|
readonly: boolean;
|
|
209
236
|
schema: any[];
|
|
@@ -13,6 +13,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
span: number;
|
|
14
14
|
codeInit: string;
|
|
15
15
|
codeChange: string;
|
|
16
|
+
codeAfterSetData: string;
|
|
17
|
+
codeBeforeSave: string;
|
|
18
|
+
codeAfterSave: string;
|
|
16
19
|
}>;
|
|
17
20
|
default: () => {};
|
|
18
21
|
};
|
|
@@ -61,6 +64,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
61
64
|
}) => Promise<any>;
|
|
62
65
|
setFormData: (data: Record<string, any>, filter?: (key: string, value: any, table: string) => boolean) => void;
|
|
63
66
|
getFormData: (useTable?: boolean) => Record<string, any>;
|
|
67
|
+
afterSetData: () => Promise<void>;
|
|
68
|
+
beforeSave: () => Promise<void>;
|
|
69
|
+
afterSave: () => Promise<void>;
|
|
64
70
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
65
71
|
change: (...args: any[]) => void;
|
|
66
72
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -76,6 +82,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
76
82
|
span: number;
|
|
77
83
|
codeInit: string;
|
|
78
84
|
codeChange: string;
|
|
85
|
+
codeAfterSetData: string;
|
|
86
|
+
codeBeforeSave: string;
|
|
87
|
+
codeAfterSave: string;
|
|
79
88
|
}>;
|
|
80
89
|
default: () => {};
|
|
81
90
|
};
|
|
@@ -115,6 +124,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
115
124
|
span: number;
|
|
116
125
|
codeInit: string;
|
|
117
126
|
codeChange: string;
|
|
127
|
+
codeAfterSetData: string;
|
|
128
|
+
codeBeforeSave: string;
|
|
129
|
+
codeAfterSave: string;
|
|
118
130
|
};
|
|
119
131
|
readonly: boolean;
|
|
120
132
|
schema: any[];
|