cd-form 1.0.4 → 1.0.5
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/CdForm.vue.d.ts +22 -29
- package/dist/cd-form.js +5532 -2968
- package/dist/cd-form.umd.cjs +21 -16
- package/dist/components/AiAddDialog.vue.d.ts +45 -0
- package/dist/components/FieldManageDialog.vue.d.ts +39 -0
- package/dist/index.d.ts +3 -1
- package/dist/style.css +1 -1
- package/dist/types.d.ts +16 -0
- package/package.json +11 -11
package/dist/CdForm.vue.d.ts
CHANGED
|
@@ -16,11 +16,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
16
16
|
fieldOptions?: any[];
|
|
17
17
|
filterCondition?: any;
|
|
18
18
|
inlineEdit?: boolean;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
};
|
|
19
|
+
planFilterOptions?: any[];
|
|
20
|
+
enableVirtualScroll?: boolean;
|
|
21
|
+
virtualScrollGt?: number;
|
|
22
|
+
tableHeight?: number | string;
|
|
24
23
|
}>, {
|
|
25
24
|
data: () => never[];
|
|
26
25
|
loading: boolean;
|
|
@@ -39,13 +38,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
39
38
|
value: string;
|
|
40
39
|
};
|
|
41
40
|
inlineEdit: boolean;
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
};
|
|
47
|
-
seqLabel: string;
|
|
48
|
-
};
|
|
41
|
+
planFilterOptions: () => never[];
|
|
42
|
+
enableVirtualScroll: boolean;
|
|
43
|
+
virtualScrollGt: number;
|
|
44
|
+
tableHeight: undefined;
|
|
49
45
|
}>>, {
|
|
50
46
|
tableRef: Ref<any, any>;
|
|
51
47
|
formRenderRef: Ref<any, any>;
|
|
@@ -68,6 +64,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
68
64
|
group: (params: {
|
|
69
65
|
groupFields: string[];
|
|
70
66
|
mergeFields: boolean;
|
|
67
|
+
updatedData?: any[];
|
|
71
68
|
}) => void;
|
|
72
69
|
"select-org-data": (data: any) => void;
|
|
73
70
|
"page-change": (pageInfo: {
|
|
@@ -118,11 +115,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
118
115
|
fieldOptions?: any[];
|
|
119
116
|
filterCondition?: any;
|
|
120
117
|
inlineEdit?: boolean;
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
};
|
|
118
|
+
planFilterOptions?: any[];
|
|
119
|
+
enableVirtualScroll?: boolean;
|
|
120
|
+
virtualScrollGt?: number;
|
|
121
|
+
tableHeight?: number | string;
|
|
126
122
|
}>, {
|
|
127
123
|
data: () => never[];
|
|
128
124
|
loading: boolean;
|
|
@@ -141,13 +137,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
141
137
|
value: string;
|
|
142
138
|
};
|
|
143
139
|
inlineEdit: boolean;
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
};
|
|
149
|
-
seqLabel: string;
|
|
150
|
-
};
|
|
140
|
+
planFilterOptions: () => never[];
|
|
141
|
+
enableVirtualScroll: boolean;
|
|
142
|
+
virtualScrollGt: number;
|
|
143
|
+
tableHeight: undefined;
|
|
151
144
|
}>>> & Readonly<{
|
|
152
145
|
onAdd?: ((data: any) => any) | undefined;
|
|
153
146
|
onEdit?: ((data: any) => any) | undefined;
|
|
@@ -158,6 +151,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
158
151
|
onGroup?: ((params: {
|
|
159
152
|
groupFields: string[];
|
|
160
153
|
mergeFields: boolean;
|
|
154
|
+
updatedData?: any[];
|
|
161
155
|
}) => any) | undefined;
|
|
162
156
|
"onSelect-org-data"?: ((data: any) => any) | undefined;
|
|
163
157
|
"onPage-change"?: ((pageInfo: {
|
|
@@ -205,11 +199,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
205
199
|
pageConfig: PageConfig;
|
|
206
200
|
fieldOptions: any[];
|
|
207
201
|
filterCondition: any;
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
};
|
|
202
|
+
planFilterOptions: any[];
|
|
203
|
+
enableVirtualScroll: boolean;
|
|
204
|
+
virtualScrollGt: number;
|
|
205
|
+
tableHeight: number | string;
|
|
213
206
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
214
207
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
215
208
|
export default _default;
|