cd-form 1.0.9 → 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.
@@ -34,6 +34,7 @@ declare function __VLS_template(): Partial<Record<NonNullable<string | number>,
34
34
  declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
35
35
  formData: FormDataConfig;
36
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;
@@ -144,6 +146,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
144
146
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
145
147
  formData: FormDataConfig;
146
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;