cd-form 1.0.8 → 1.0.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/dist/CdForm.vue.d.ts +7 -2
- package/dist/cd-form.js +3347 -3334
- package/dist/cd-form.umd.cjs +13 -13
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/CdForm.vue.d.ts
CHANGED
|
@@ -33,7 +33,8 @@ declare function __VLS_template(): Partial<Record<NonNullable<string | number>,
|
|
|
33
33
|
};
|
|
34
34
|
declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
35
35
|
formData: FormDataConfig;
|
|
36
|
-
columnData
|
|
36
|
+
columnData?: ColumnDataConfig;
|
|
37
|
+
deviceType?: "pc" | "app" | "pad";
|
|
37
38
|
data?: any[];
|
|
38
39
|
tableColumns?: TableColumn[];
|
|
39
40
|
loading?: boolean;
|
|
@@ -49,6 +50,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
49
50
|
tableHeight?: number | string;
|
|
50
51
|
businessFlow?: BusinessFlowConfig;
|
|
51
52
|
}>, {
|
|
53
|
+
deviceType: string;
|
|
52
54
|
data: () => never[];
|
|
53
55
|
loading: boolean;
|
|
54
56
|
loadingText: string;
|
|
@@ -143,7 +145,8 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
143
145
|
}) => void;
|
|
144
146
|
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
145
147
|
formData: FormDataConfig;
|
|
146
|
-
columnData
|
|
148
|
+
columnData?: ColumnDataConfig;
|
|
149
|
+
deviceType?: "pc" | "app" | "pad";
|
|
147
150
|
data?: any[];
|
|
148
151
|
tableColumns?: TableColumn[];
|
|
149
152
|
loading?: boolean;
|
|
@@ -159,6 +162,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
159
162
|
tableHeight?: number | string;
|
|
160
163
|
businessFlow?: BusinessFlowConfig;
|
|
161
164
|
}>, {
|
|
165
|
+
deviceType: string;
|
|
162
166
|
data: () => never[];
|
|
163
167
|
loading: boolean;
|
|
164
168
|
loadingText: string;
|
|
@@ -240,6 +244,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
240
244
|
data: any[];
|
|
241
245
|
inlineEdit: boolean;
|
|
242
246
|
showFilter: boolean;
|
|
247
|
+
deviceType: "pc" | "app" | "pad";
|
|
243
248
|
loading: boolean;
|
|
244
249
|
loadingText: string;
|
|
245
250
|
pageConfig: PageConfig;
|