cnhis-design-vue 3.1.46-beta.2 → 3.1.46-beta.4

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.
Files changed (49) hide show
  1. package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useSurgicalAnesthesiaChart.js +1 -1
  2. package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useTop.js +1 -1
  3. package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +1 -1
  4. package/es/components/form-render/src/components/renderer/dist/levelSearchCascader.d.ts +77 -0
  5. package/es/components/form-render/src/components/renderer/dist/searchCascade.d.ts +93 -0
  6. package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks.d.ts +1 -1
  7. package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks.js +1 -1
  8. package/es/components/iho-table/src/plugins/dist/highLightSetPlugin.d.ts +3 -0
  9. package/es/components/iho-table/src/plugins/filterRenderPlugin/dist/index.d.ts +3 -0
  10. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/dist/index.d.ts +3 -0
  11. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/dist/defaultRendererPlugin.d.ts +3 -0
  12. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/dist/seqRendererPlugin.d.ts +3 -0
  13. package/es/components/iho-table/src/plugins/varialbleHeightPlugin/dist/index.d.ts +3 -0
  14. package/es/components/iho-table/src/utils/dist/index.d.ts +44 -0
  15. package/es/components/index.css +1 -1
  16. package/es/components/index.d.ts +2 -1
  17. package/es/components/index.js +1 -1
  18. package/es/components/quick-search/src/index.vue2.js +1 -1
  19. package/es/components/scale-view/src/components/formitem/dist/r-address.d.ts +36 -0
  20. package/es/components/scale-view/src/components/formitem/dist/r-sign.d.ts +36 -0
  21. package/es/components/scale-view/src/components/formitem/dist/standard-modal.d.ts +82 -0
  22. package/es/components/search-cascader/src/components/dist/SearchMenu.d.ts +57 -0
  23. package/es/components/search-cascader/src/components/dist/SearchMenu1.d.ts +57 -0
  24. package/es/components/table-export-field/index.d.ts +967 -0
  25. package/es/components/table-export-field/index.js +1 -0
  26. package/es/components/table-export-field/src/components/ExportModal.vue.d.ts +192 -0
  27. package/es/components/table-export-field/src/components/ExportModal.vue.js +1 -0
  28. package/es/components/table-export-field/src/components/ExportModal.vue2.js +1 -0
  29. package/es/components/table-export-field/src/components/SaveProjectModal.vue.d.ts +687 -0
  30. package/es/components/table-export-field/src/components/SaveProjectModal.vue.js +1 -0
  31. package/es/components/table-export-field/src/components/SaveProjectModal.vue2.js +1 -0
  32. package/es/components/table-export-field/src/constants/index.d.ts +3 -0
  33. package/es/components/table-export-field/src/constants/index.js +1 -0
  34. package/es/components/table-export-field/src/hooks/useAsyncData.d.ts +6 -0
  35. package/es/components/table-export-field/src/hooks/useAsyncData.js +1 -0
  36. package/es/components/table-export-field/src/index.vue.d.ts +968 -0
  37. package/es/components/table-export-field/src/index.vue.js +1 -0
  38. package/es/components/table-export-field/src/index.vue2.js +1 -0
  39. package/es/components/table-export-field/src/types/index.d.ts +6 -0
  40. package/es/components/table-export-field/src/types/index.js +1 -0
  41. package/es/components/table-export-field/style/index.css +1 -0
  42. package/es/components/table-filter/src/components/render-widget/components/DateQuickBtn/index.vue2.js +1 -1
  43. package/es/components/table-filter/src/components/render-widget/components/Select.vue2.js +1 -1
  44. package/es/components/table-filter/src/components/render-widget/components/SelectDynamic.vue.d.ts +1 -1
  45. package/es/components/table-filter/src/components/render-widget/components/SelectDynamic.vue2.js +1 -1
  46. package/es/components/table-filter/src/components/render-widget/components/index.d.ts +1 -1
  47. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +1 -1
  48. package/es/shared/package.json.js +1 -1
  49. package/package.json +2 -2
@@ -0,0 +1,968 @@
1
+ import { PropType } from 'vue';
2
+ import { IExportSchemeType } from '../../../../es/components/table-export-field/src/types';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ visible: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ tableListId: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ fieldOriginList: {
13
+ type: PropType<any[]>;
14
+ default: () => never[];
15
+ };
16
+ exportApiConfig: {
17
+ type: ObjectConstructor;
18
+ };
19
+ }, {
20
+ defaultKey: string;
21
+ message: import("naive-ui").MessageApi;
22
+ getTableListExportScheme: (params: any, filterApiConfig: any) => Promise<any>;
23
+ deleteTableListExportScheme: (params: any, filterApiConfig: any) => Promise<any>;
24
+ exportTableListScheme: (params: any, filterApiConfig: any) => Promise<any>;
25
+ baseOption: {
26
+ schemeId: string;
27
+ schemeName: string;
28
+ fieldKeys: never[];
29
+ };
30
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
31
+ visible: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ tableListId: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ fieldOriginList: {
40
+ type: PropType<any[]>;
41
+ default: () => never[];
42
+ };
43
+ exportApiConfig: {
44
+ type: ObjectConstructor;
45
+ };
46
+ }>> & {
47
+ onCancelModal?: ((...args: any[]) => any) | undefined;
48
+ }>>;
49
+ emit: (event: "cancelModal", ...args: any[]) => void;
50
+ isShowSaveProjectModal: import("vue").Ref<boolean>;
51
+ curProgram: import("vue").Ref<{
52
+ schemeId: string;
53
+ schemeName: string;
54
+ fieldKeys: string[];
55
+ updatedTime?: string | undefined;
56
+ }>;
57
+ programOptions: import("vue").Ref<{
58
+ schemeId: string;
59
+ schemeName: string;
60
+ fieldKeys: string[];
61
+ updatedTime?: string | undefined;
62
+ }[]>;
63
+ downLoadFieldList: import("vue").ComputedRef<any[]>;
64
+ isDefaultShowFields: import("vue").ComputedRef<any[]>;
65
+ handleProjectModal: () => void;
66
+ handleExportModal: () => void;
67
+ updateCurProgram: (schemeId: string) => void;
68
+ updateFieldCheckList: (fieldCheckList: string[]) => void;
69
+ getExportFieldList: () => Promise<import("naive-ui").MessageReactive | undefined>;
70
+ init: () => Promise<void>;
71
+ NButton: any;
72
+ ExportModal: import("vue").DefineComponent<{
73
+ visible: {
74
+ type: BooleanConstructor;
75
+ default: boolean;
76
+ };
77
+ tableListId: {
78
+ type: StringConstructor;
79
+ default: string;
80
+ };
81
+ fieldOriginList: {
82
+ type: PropType<any[]>;
83
+ default: () => never[];
84
+ };
85
+ curProgram: {
86
+ type: PropType<IExportSchemeType>;
87
+ default: () => {};
88
+ };
89
+ programOptions: {
90
+ type: PropType<IExportSchemeType[]>;
91
+ default: () => never[];
92
+ };
93
+ downLoadFieldList: {
94
+ type: PropType<any[]>;
95
+ default: () => never[];
96
+ };
97
+ }, {
98
+ defaultKey: string;
99
+ baseSetting: {
100
+ width: string;
101
+ height: string;
102
+ };
103
+ menuProps: {
104
+ class: string;
105
+ };
106
+ message: import("naive-ui").MessageApi;
107
+ deleteTableListExportScheme: (params: any, filterApiConfig: any) => Promise<any>;
108
+ exportTableListScheme: (params: any, filterApiConfig: any) => Promise<any>;
109
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
110
+ visible: {
111
+ type: BooleanConstructor;
112
+ default: boolean;
113
+ };
114
+ tableListId: {
115
+ type: StringConstructor;
116
+ default: string;
117
+ };
118
+ fieldOriginList: {
119
+ type: PropType<any[]>;
120
+ default: () => never[];
121
+ };
122
+ curProgram: {
123
+ type: PropType<IExportSchemeType>;
124
+ default: () => {};
125
+ };
126
+ programOptions: {
127
+ type: PropType<IExportSchemeType[]>;
128
+ default: () => never[];
129
+ };
130
+ downLoadFieldList: {
131
+ type: PropType<any[]>;
132
+ default: () => never[];
133
+ };
134
+ }>> & {
135
+ onCancelModal?: ((...args: any[]) => any) | undefined;
136
+ onUpdateCurProgram?: ((...args: any[]) => any) | undefined;
137
+ onUpdateFieldCheckList?: ((...args: any[]) => any) | undefined;
138
+ }>>;
139
+ emits: (event: "cancelModal" | "updateCurProgram" | "updateFieldCheckList", ...args: any[]) => void;
140
+ isChangeWindow: import("vue").Ref<boolean>;
141
+ modalWidth: import("vue").Ref<string>;
142
+ bodyStyle: import("vue").Ref<{
143
+ maxHeight: string;
144
+ height: string;
145
+ }>;
146
+ isSelectAll: import("vue").Ref<boolean>;
147
+ isIndeterminate: import("vue").Ref<boolean>;
148
+ fieldCheckList: import("vue").Ref<any[]>;
149
+ exportApiConfig: import("../..").AnyObject;
150
+ curSchemeId: import("vue").ComputedRef<string>;
151
+ deleteExportSchemeItem: (schemeId: string) => Promise<import("naive-ui").MessageReactive | undefined>;
152
+ doExportScheme: () => Promise<import("naive-ui").MessageReactive | undefined>;
153
+ renderTag: ({ option }: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
154
+ [key: string]: any;
155
+ }>;
156
+ renderLabel: (option: IExportSchemeType) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
157
+ [key: string]: any;
158
+ }>;
159
+ handleClick: (e: MouseEvent) => void;
160
+ handleDelete: (option: IExportSchemeType) => import("naive-ui").MessageReactive | undefined;
161
+ handleUpdateSelect: (value: string | number | null) => void;
162
+ _setFieldCheckListValue: (optionKey: string | number | null) => void;
163
+ exportData: () => void;
164
+ handleCheckboxAll: (checked: boolean) => void;
165
+ cancelModal: () => void;
166
+ resetWindow: () => void;
167
+ changeWindow: () => void;
168
+ NModal: any;
169
+ NCard: any;
170
+ NButton: any;
171
+ NSelect: any;
172
+ NCheckboxGroup: import("vue").DefineComponent<{
173
+ readonly min: NumberConstructor;
174
+ readonly max: NumberConstructor;
175
+ readonly size: PropType<"small" | "medium" | "large">;
176
+ readonly value: PropType<(string | number)[] | null>;
177
+ readonly defaultValue: {
178
+ readonly type: PropType<(string | number)[] | null>;
179
+ readonly default: null;
180
+ };
181
+ readonly disabled: {
182
+ readonly type: PropType<boolean | undefined>;
183
+ readonly default: undefined;
184
+ };
185
+ readonly 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<(value: (string | number)[], meta: {
186
+ actionType: "check" | "uncheck";
187
+ value: string | number;
188
+ }) => void>>;
189
+ readonly onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<(value: (string | number)[], meta: {
190
+ actionType: "check" | "uncheck";
191
+ value: string | number;
192
+ }) => void>>;
193
+ readonly onChange: PropType<import("naive-ui/es/_utils").MaybeArray<(value: (string | number)[]) => void> | undefined>;
194
+ }, {
195
+ mergedClsPrefix: import("vue").ComputedRef<string>;
196
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
197
+ readonly min: NumberConstructor;
198
+ readonly max: NumberConstructor;
199
+ readonly size: PropType<"small" | "medium" | "large">;
200
+ readonly value: PropType<(string | number)[] | null>;
201
+ readonly defaultValue: {
202
+ readonly type: PropType<(string | number)[] | null>;
203
+ readonly default: null;
204
+ };
205
+ readonly disabled: {
206
+ readonly type: PropType<boolean | undefined>;
207
+ readonly default: undefined;
208
+ };
209
+ readonly 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<(value: (string | number)[], meta: {
210
+ actionType: "check" | "uncheck";
211
+ value: string | number;
212
+ }) => void>>;
213
+ readonly onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<(value: (string | number)[], meta: {
214
+ actionType: "check" | "uncheck";
215
+ value: string | number;
216
+ }) => void>>;
217
+ readonly onChange: PropType<import("naive-ui/es/_utils").MaybeArray<(value: (string | number)[]) => void> | undefined>;
218
+ }>>, {
219
+ readonly disabled: boolean | undefined;
220
+ readonly defaultValue: (string | number)[] | null;
221
+ }>;
222
+ NCheckbox: any;
223
+ NPopover: any;
224
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancelModal" | "updateCurProgram" | "updateFieldCheckList")[], "cancelModal" | "updateCurProgram" | "updateFieldCheckList", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
225
+ visible: {
226
+ type: BooleanConstructor;
227
+ default: boolean;
228
+ };
229
+ tableListId: {
230
+ type: StringConstructor;
231
+ default: string;
232
+ };
233
+ fieldOriginList: {
234
+ type: PropType<any[]>;
235
+ default: () => never[];
236
+ };
237
+ curProgram: {
238
+ type: PropType<IExportSchemeType>;
239
+ default: () => {};
240
+ };
241
+ programOptions: {
242
+ type: PropType<IExportSchemeType[]>;
243
+ default: () => never[];
244
+ };
245
+ downLoadFieldList: {
246
+ type: PropType<any[]>;
247
+ default: () => never[];
248
+ };
249
+ }>> & {
250
+ onCancelModal?: ((...args: any[]) => any) | undefined;
251
+ onUpdateCurProgram?: ((...args: any[]) => any) | undefined;
252
+ onUpdateFieldCheckList?: ((...args: any[]) => any) | undefined;
253
+ }, {
254
+ visible: boolean;
255
+ tableListId: string;
256
+ fieldOriginList: any[];
257
+ curProgram: IExportSchemeType;
258
+ programOptions: IExportSchemeType[];
259
+ downLoadFieldList: any[];
260
+ }>;
261
+ SaveProjectModal: import("vue").DefineComponent<{
262
+ visible: {
263
+ type: BooleanConstructor;
264
+ default: boolean;
265
+ };
266
+ tableListId: {
267
+ type: StringConstructor;
268
+ default: string;
269
+ };
270
+ programOptions: {
271
+ type: PropType<IExportSchemeType[]>;
272
+ default: () => never[];
273
+ };
274
+ curProgram: {
275
+ type: PropType<IExportSchemeType>;
276
+ default: () => {};
277
+ };
278
+ }, {
279
+ message: import("naive-ui").MessageApi;
280
+ saveTableListExportScheme: (params: any, filterApiConfig: any) => Promise<any>;
281
+ defaultKey: string;
282
+ rules: {
283
+ projectName: {
284
+ required: boolean;
285
+ message: string;
286
+ trigger: string[];
287
+ };
288
+ };
289
+ modeList: {
290
+ value: string;
291
+ label: string;
292
+ }[];
293
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
294
+ visible: {
295
+ type: BooleanConstructor;
296
+ default: boolean;
297
+ };
298
+ tableListId: {
299
+ type: StringConstructor;
300
+ default: string;
301
+ };
302
+ programOptions: {
303
+ type: PropType<IExportSchemeType[]>;
304
+ default: () => never[];
305
+ };
306
+ curProgram: {
307
+ type: PropType<IExportSchemeType>;
308
+ default: () => {};
309
+ };
310
+ }>> & {
311
+ onCancelSaveModal?: ((...args: any[]) => any) | undefined;
312
+ }>>;
313
+ emits: (event: "cancelSaveModal", ...args: any[]) => void;
314
+ formRef: any;
315
+ formValue: {
316
+ projectName: string;
317
+ };
318
+ selectProject: import("vue").Ref<any>;
319
+ projectList: import("vue").Ref<any[]>;
320
+ exportApiConfig: import("../..").AnyObject;
321
+ handleRadioChange: (value: string | number | boolean) => void;
322
+ validateProjectName: () => boolean;
323
+ getParams: () => {
324
+ fieldKeys: string[];
325
+ lastUsedSchemeName: string;
326
+ schemeId: string;
327
+ schemeName: string;
328
+ tableListId: string;
329
+ };
330
+ saveToCalss: () => void;
331
+ cancelSaveToCalss: () => void;
332
+ NForm: any;
333
+ NFormItem: import("vue").DefineComponent<{
334
+ readonly label: StringConstructor;
335
+ readonly labelWidth: PropType<string | number>;
336
+ readonly labelStyle: PropType<string | import("vue").CSSProperties>;
337
+ readonly labelAlign: PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
338
+ readonly labelPlacement: PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
339
+ readonly path: StringConstructor;
340
+ readonly first: BooleanConstructor;
341
+ readonly rulePath: StringConstructor;
342
+ readonly required: BooleanConstructor;
343
+ readonly showRequireMark: {
344
+ readonly type: PropType<boolean | undefined>;
345
+ readonly default: undefined;
346
+ };
347
+ readonly requireMarkPlacement: PropType<"left" | "right" | "right-hanging">;
348
+ readonly showFeedback: {
349
+ readonly type: PropType<boolean | undefined>;
350
+ readonly default: undefined;
351
+ };
352
+ readonly rule: PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
353
+ readonly size: PropType<"small" | "medium" | "large">;
354
+ readonly ignorePathChange: BooleanConstructor;
355
+ readonly validationStatus: PropType<"error" | "success" | "warning">;
356
+ readonly feedback: StringConstructor;
357
+ readonly showLabel: {
358
+ readonly type: PropType<boolean | undefined>;
359
+ readonly default: undefined;
360
+ };
361
+ readonly labelProps: PropType<import("vue").LabelHTMLAttributes>;
362
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Form", {
363
+ blankHeightSmall: string;
364
+ blankHeightMedium: string;
365
+ blankHeightLarge: string;
366
+ lineHeight: string;
367
+ labelTextColor: string;
368
+ asteriskColor: string;
369
+ feedbackTextColorError: string;
370
+ feedbackTextColorWarning: string;
371
+ feedbackTextColor: string;
372
+ feedbackPadding: string;
373
+ feedbackHeightSmall: string;
374
+ feedbackHeightMedium: string;
375
+ feedbackHeightLarge: string;
376
+ feedbackFontSizeSmall: string;
377
+ feedbackFontSizeMedium: string;
378
+ feedbackFontSizeLarge: string;
379
+ labelFontSizeLeftSmall: string;
380
+ labelFontSizeLeftMedium: string;
381
+ labelFontSizeLeftLarge: string;
382
+ labelFontSizeTopSmall: string;
383
+ labelFontSizeTopMedium: string;
384
+ labelFontSizeTopLarge: string;
385
+ labelHeightSmall: string;
386
+ labelHeightMedium: string;
387
+ labelHeightLarge: string;
388
+ labelPaddingVertical: string;
389
+ labelPaddingHorizontal: string;
390
+ labelTextAlignVertical: string;
391
+ labelTextAlignHorizontal: string;
392
+ }, any>>;
393
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
394
+ blankHeightSmall: string;
395
+ blankHeightMedium: string;
396
+ blankHeightLarge: string;
397
+ lineHeight: string;
398
+ labelTextColor: string;
399
+ asteriskColor: string;
400
+ feedbackTextColorError: string;
401
+ feedbackTextColorWarning: string;
402
+ feedbackTextColor: string;
403
+ feedbackPadding: string;
404
+ feedbackHeightSmall: string;
405
+ feedbackHeightMedium: string;
406
+ feedbackHeightLarge: string;
407
+ feedbackFontSizeSmall: string;
408
+ feedbackFontSizeMedium: string;
409
+ feedbackFontSizeLarge: string;
410
+ labelFontSizeLeftSmall: string;
411
+ labelFontSizeLeftMedium: string;
412
+ labelFontSizeLeftLarge: string;
413
+ labelFontSizeTopSmall: string;
414
+ labelFontSizeTopMedium: string;
415
+ labelFontSizeTopLarge: string;
416
+ labelHeightSmall: string;
417
+ labelHeightMedium: string;
418
+ labelHeightLarge: string;
419
+ labelPaddingVertical: string;
420
+ labelPaddingHorizontal: string;
421
+ labelTextAlignVertical: string;
422
+ labelTextAlignHorizontal: string;
423
+ }, any>>>;
424
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
425
+ blankHeightSmall: string;
426
+ blankHeightMedium: string;
427
+ blankHeightLarge: string;
428
+ lineHeight: string;
429
+ labelTextColor: string;
430
+ asteriskColor: string;
431
+ feedbackTextColorError: string;
432
+ feedbackTextColorWarning: string;
433
+ feedbackTextColor: string;
434
+ feedbackPadding: string;
435
+ feedbackHeightSmall: string;
436
+ feedbackHeightMedium: string;
437
+ feedbackHeightLarge: string;
438
+ feedbackFontSizeSmall: string;
439
+ feedbackFontSizeMedium: string;
440
+ feedbackFontSizeLarge: string;
441
+ labelFontSizeLeftSmall: string;
442
+ labelFontSizeLeftMedium: string;
443
+ labelFontSizeLeftLarge: string;
444
+ labelFontSizeTopSmall: string;
445
+ labelFontSizeTopMedium: string;
446
+ labelFontSizeTopLarge: string;
447
+ labelHeightSmall: string;
448
+ labelHeightMedium: string;
449
+ labelHeightLarge: string;
450
+ labelPaddingVertical: string;
451
+ labelPaddingHorizontal: string;
452
+ labelTextAlignVertical: string;
453
+ labelTextAlignHorizontal: string;
454
+ }, any>>>;
455
+ }, {
456
+ cssVars: import("vue").ComputedRef<{
457
+ '--n-bezier': string;
458
+ '--n-line-height': string;
459
+ '--n-blank-height': string;
460
+ '--n-label-font-size': string;
461
+ '--n-label-text-align': string;
462
+ '--n-label-height': string;
463
+ '--n-label-padding': string;
464
+ '--n-asterisk-color': string;
465
+ '--n-label-text-color': string;
466
+ '--n-feedback-padding': string;
467
+ '--n-feedback-font-size': string;
468
+ '--n-feedback-height': string;
469
+ '--n-feedback-text-color': string;
470
+ '--n-feedback-text-color-warning': string;
471
+ '--n-feedback-text-color-error': string;
472
+ }> | undefined;
473
+ themeClass: import("vue").Ref<string>;
474
+ onRender: () => void;
475
+ validate: import("naive-ui/es/form/src/interface").FormItemValidate;
476
+ restoreValidation: () => void;
477
+ path?: string | undefined;
478
+ internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
479
+ mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").Size>;
480
+ validationErrored: import("vue").Ref<boolean>;
481
+ mergedLabelStyle: import("vue").ComputedRef<(import("vue").StyleValue | undefined)[]>;
482
+ mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelPlacement>;
483
+ mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelAlign | undefined>;
484
+ mergedShowRequireMark: import("vue").ComputedRef<boolean | undefined>;
485
+ mergedRequireMarkPlacement: import("vue").ComputedRef<"left" | "right" | "right-hanging">;
486
+ mergedValidationStatus: import("vue").ComputedRef<"error" | "success" | "warning" | undefined>;
487
+ mergedShowFeedback: import("vue").ComputedRef<boolean>;
488
+ mergedShowLabel: import("vue").ComputedRef<boolean>;
489
+ isAutoLabelWidth: import("vue").ComputedRef<boolean>;
490
+ labelElementRef: import("vue").Ref<HTMLLabelElement | null>;
491
+ mergedClsPrefix: import("vue").ComputedRef<string>;
492
+ mergedRequired: import("vue").ComputedRef<boolean>;
493
+ feedbackId: import("vue").Ref<string>;
494
+ renderExplains: import("vue").Ref<{
495
+ key: string;
496
+ render: () => import("vue").VNodeChild;
497
+ }[]>;
498
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
499
+ readonly label: StringConstructor;
500
+ readonly labelWidth: PropType<string | number>;
501
+ readonly labelStyle: PropType<string | import("vue").CSSProperties>;
502
+ readonly labelAlign: PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
503
+ readonly labelPlacement: PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
504
+ readonly path: StringConstructor;
505
+ readonly first: BooleanConstructor;
506
+ readonly rulePath: StringConstructor;
507
+ readonly required: BooleanConstructor;
508
+ readonly showRequireMark: {
509
+ readonly type: PropType<boolean | undefined>;
510
+ readonly default: undefined;
511
+ };
512
+ readonly requireMarkPlacement: PropType<"left" | "right" | "right-hanging">;
513
+ readonly showFeedback: {
514
+ readonly type: PropType<boolean | undefined>;
515
+ readonly default: undefined;
516
+ };
517
+ readonly rule: PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
518
+ readonly size: PropType<"small" | "medium" | "large">;
519
+ readonly ignorePathChange: BooleanConstructor;
520
+ readonly validationStatus: PropType<"error" | "success" | "warning">;
521
+ readonly feedback: StringConstructor;
522
+ readonly showLabel: {
523
+ readonly type: PropType<boolean | undefined>;
524
+ readonly default: undefined;
525
+ };
526
+ readonly labelProps: PropType<import("vue").LabelHTMLAttributes>;
527
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Form", {
528
+ blankHeightSmall: string;
529
+ blankHeightMedium: string;
530
+ blankHeightLarge: string;
531
+ lineHeight: string;
532
+ labelTextColor: string;
533
+ asteriskColor: string;
534
+ feedbackTextColorError: string;
535
+ feedbackTextColorWarning: string;
536
+ feedbackTextColor: string;
537
+ feedbackPadding: string;
538
+ feedbackHeightSmall: string;
539
+ feedbackHeightMedium: string;
540
+ feedbackHeightLarge: string;
541
+ feedbackFontSizeSmall: string;
542
+ feedbackFontSizeMedium: string;
543
+ feedbackFontSizeLarge: string;
544
+ labelFontSizeLeftSmall: string;
545
+ labelFontSizeLeftMedium: string;
546
+ labelFontSizeLeftLarge: string;
547
+ labelFontSizeTopSmall: string;
548
+ labelFontSizeTopMedium: string;
549
+ labelFontSizeTopLarge: string;
550
+ labelHeightSmall: string;
551
+ labelHeightMedium: string;
552
+ labelHeightLarge: string;
553
+ labelPaddingVertical: string;
554
+ labelPaddingHorizontal: string;
555
+ labelTextAlignVertical: string;
556
+ labelTextAlignHorizontal: string;
557
+ }, any>>;
558
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
559
+ blankHeightSmall: string;
560
+ blankHeightMedium: string;
561
+ blankHeightLarge: string;
562
+ lineHeight: string;
563
+ labelTextColor: string;
564
+ asteriskColor: string;
565
+ feedbackTextColorError: string;
566
+ feedbackTextColorWarning: string;
567
+ feedbackTextColor: string;
568
+ feedbackPadding: string;
569
+ feedbackHeightSmall: string;
570
+ feedbackHeightMedium: string;
571
+ feedbackHeightLarge: string;
572
+ feedbackFontSizeSmall: string;
573
+ feedbackFontSizeMedium: string;
574
+ feedbackFontSizeLarge: string;
575
+ labelFontSizeLeftSmall: string;
576
+ labelFontSizeLeftMedium: string;
577
+ labelFontSizeLeftLarge: string;
578
+ labelFontSizeTopSmall: string;
579
+ labelFontSizeTopMedium: string;
580
+ labelFontSizeTopLarge: string;
581
+ labelHeightSmall: string;
582
+ labelHeightMedium: string;
583
+ labelHeightLarge: string;
584
+ labelPaddingVertical: string;
585
+ labelPaddingHorizontal: string;
586
+ labelTextAlignVertical: string;
587
+ labelTextAlignHorizontal: string;
588
+ }, any>>>;
589
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
590
+ blankHeightSmall: string;
591
+ blankHeightMedium: string;
592
+ blankHeightLarge: string;
593
+ lineHeight: string;
594
+ labelTextColor: string;
595
+ asteriskColor: string;
596
+ feedbackTextColorError: string;
597
+ feedbackTextColorWarning: string;
598
+ feedbackTextColor: string;
599
+ feedbackPadding: string;
600
+ feedbackHeightSmall: string;
601
+ feedbackHeightMedium: string;
602
+ feedbackHeightLarge: string;
603
+ feedbackFontSizeSmall: string;
604
+ feedbackFontSizeMedium: string;
605
+ feedbackFontSizeLarge: string;
606
+ labelFontSizeLeftSmall: string;
607
+ labelFontSizeLeftMedium: string;
608
+ labelFontSizeLeftLarge: string;
609
+ labelFontSizeTopSmall: string;
610
+ labelFontSizeTopMedium: string;
611
+ labelFontSizeTopLarge: string;
612
+ labelHeightSmall: string;
613
+ labelHeightMedium: string;
614
+ labelHeightLarge: string;
615
+ labelPaddingVertical: string;
616
+ labelPaddingHorizontal: string;
617
+ labelTextAlignVertical: string;
618
+ labelTextAlignHorizontal: string;
619
+ }, any>>>;
620
+ }>>, {
621
+ readonly required: boolean;
622
+ readonly first: boolean;
623
+ readonly showRequireMark: boolean | undefined;
624
+ readonly showFeedback: boolean | undefined;
625
+ readonly showLabel: boolean | undefined;
626
+ readonly ignorePathChange: boolean;
627
+ }>;
628
+ NModal: any;
629
+ NCard: any;
630
+ NIcon: any;
631
+ NInput: any;
632
+ NButton: any;
633
+ NRadioGroup: import("vue").DefineComponent<{
634
+ readonly name: StringConstructor;
635
+ readonly value: PropType<string | number | boolean | null>;
636
+ readonly defaultValue: {
637
+ readonly type: PropType<string | number | boolean | null>;
638
+ readonly default: null;
639
+ };
640
+ readonly size: PropType<"small" | "medium" | "large">;
641
+ readonly disabled: {
642
+ readonly type: PropType<boolean | undefined>;
643
+ readonly default: undefined;
644
+ };
645
+ readonly 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/radio/src/interface").OnUpdateValue>>;
646
+ readonly onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/radio/src/interface").OnUpdateValue>>;
647
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Radio", {
648
+ labelLineHeight: string;
649
+ buttonHeightSmall: string;
650
+ buttonHeightMedium: string;
651
+ buttonHeightLarge: string;
652
+ fontSizeSmall: string;
653
+ fontSizeMedium: string;
654
+ fontSizeLarge: string;
655
+ boxShadow: string;
656
+ boxShadowActive: string;
657
+ boxShadowFocus: string;
658
+ boxShadowHover: string;
659
+ boxShadowDisabled: string;
660
+ color: string;
661
+ colorDisabled: string;
662
+ colorActive: string;
663
+ textColor: string;
664
+ textColorDisabled: string;
665
+ dotColorActive: string;
666
+ dotColorDisabled: string;
667
+ buttonBorderColor: string;
668
+ buttonBorderColorActive: string;
669
+ buttonBorderColorHover: string;
670
+ buttonColor: string;
671
+ buttonColorActive: string;
672
+ buttonTextColor: string;
673
+ buttonTextColorActive: string;
674
+ buttonTextColorHover: string;
675
+ opacityDisabled: string;
676
+ buttonBoxShadowFocus: string;
677
+ buttonBoxShadowHover: string;
678
+ buttonBoxShadow: string;
679
+ buttonBorderRadius: string;
680
+ radioSizeSmall: string;
681
+ radioSizeMedium: string;
682
+ radioSizeLarge: string;
683
+ labelPadding: string;
684
+ }, any>>;
685
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Radio", {
686
+ labelLineHeight: string;
687
+ buttonHeightSmall: string;
688
+ buttonHeightMedium: string;
689
+ buttonHeightLarge: string;
690
+ fontSizeSmall: string;
691
+ fontSizeMedium: string;
692
+ fontSizeLarge: string;
693
+ boxShadow: string;
694
+ boxShadowActive: string;
695
+ boxShadowFocus: string;
696
+ boxShadowHover: string;
697
+ boxShadowDisabled: string;
698
+ color: string;
699
+ colorDisabled: string;
700
+ colorActive: string;
701
+ textColor: string;
702
+ textColorDisabled: string;
703
+ dotColorActive: string;
704
+ dotColorDisabled: string;
705
+ buttonBorderColor: string;
706
+ buttonBorderColorActive: string;
707
+ buttonBorderColorHover: string;
708
+ buttonColor: string;
709
+ buttonColorActive: string;
710
+ buttonTextColor: string;
711
+ buttonTextColorActive: string;
712
+ buttonTextColorHover: string;
713
+ opacityDisabled: string;
714
+ buttonBoxShadowFocus: string;
715
+ buttonBoxShadowHover: string;
716
+ buttonBoxShadow: string;
717
+ buttonBorderRadius: string;
718
+ radioSizeSmall: string;
719
+ radioSizeMedium: string;
720
+ radioSizeLarge: string;
721
+ labelPadding: string;
722
+ }, any>>>;
723
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Radio", {
724
+ labelLineHeight: string;
725
+ buttonHeightSmall: string;
726
+ buttonHeightMedium: string;
727
+ buttonHeightLarge: string;
728
+ fontSizeSmall: string;
729
+ fontSizeMedium: string;
730
+ fontSizeLarge: string;
731
+ boxShadow: string;
732
+ boxShadowActive: string;
733
+ boxShadowFocus: string;
734
+ boxShadowHover: string;
735
+ boxShadowDisabled: string;
736
+ color: string;
737
+ colorDisabled: string;
738
+ colorActive: string;
739
+ textColor: string;
740
+ textColorDisabled: string;
741
+ dotColorActive: string;
742
+ dotColorDisabled: string;
743
+ buttonBorderColor: string;
744
+ buttonBorderColorActive: string;
745
+ buttonBorderColorHover: string;
746
+ buttonColor: string;
747
+ buttonColorActive: string;
748
+ buttonTextColor: string;
749
+ buttonTextColorActive: string;
750
+ buttonTextColorHover: string;
751
+ opacityDisabled: string;
752
+ buttonBoxShadowFocus: string;
753
+ buttonBoxShadowHover: string;
754
+ buttonBoxShadow: string;
755
+ buttonBorderRadius: string;
756
+ radioSizeSmall: string;
757
+ radioSizeMedium: string;
758
+ radioSizeLarge: string;
759
+ labelPadding: string;
760
+ }, any>>>;
761
+ }, {
762
+ selfElRef: import("vue").Ref<HTMLDivElement | null>;
763
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
764
+ mergedClsPrefix: import("vue").ComputedRef<string>;
765
+ mergedValue: import("vue").ComputedRef<string | number | boolean | null>;
766
+ handleFocusout: (e: FocusEvent) => void;
767
+ handleFocusin: (e: FocusEvent) => void;
768
+ cssVars: import("vue").ComputedRef<{
769
+ '--n-font-size': string;
770
+ '--n-bezier': string;
771
+ '--n-button-border-color': string;
772
+ '--n-button-border-color-active': string;
773
+ '--n-button-border-radius': string;
774
+ '--n-button-box-shadow': string;
775
+ '--n-button-box-shadow-focus': string;
776
+ '--n-button-box-shadow-hover': string;
777
+ '--n-button-color-active': string;
778
+ '--n-button-text-color': string;
779
+ '--n-button-text-color-hover': string;
780
+ '--n-button-text-color-active': string;
781
+ '--n-height': string;
782
+ '--n-opacity-disabled': string;
783
+ }> | undefined;
784
+ themeClass: import("vue").Ref<string> | undefined;
785
+ onRender: (() => void) | undefined;
786
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
787
+ readonly name: StringConstructor;
788
+ readonly value: PropType<string | number | boolean | null>;
789
+ readonly defaultValue: {
790
+ readonly type: PropType<string | number | boolean | null>;
791
+ readonly default: null;
792
+ };
793
+ readonly size: PropType<"small" | "medium" | "large">;
794
+ readonly disabled: {
795
+ readonly type: PropType<boolean | undefined>;
796
+ readonly default: undefined;
797
+ };
798
+ readonly 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/radio/src/interface").OnUpdateValue>>;
799
+ readonly onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/radio/src/interface").OnUpdateValue>>;
800
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Radio", {
801
+ labelLineHeight: string;
802
+ buttonHeightSmall: string;
803
+ buttonHeightMedium: string;
804
+ buttonHeightLarge: string;
805
+ fontSizeSmall: string;
806
+ fontSizeMedium: string;
807
+ fontSizeLarge: string;
808
+ boxShadow: string;
809
+ boxShadowActive: string;
810
+ boxShadowFocus: string;
811
+ boxShadowHover: string;
812
+ boxShadowDisabled: string;
813
+ color: string;
814
+ colorDisabled: string;
815
+ colorActive: string;
816
+ textColor: string;
817
+ textColorDisabled: string;
818
+ dotColorActive: string;
819
+ dotColorDisabled: string;
820
+ buttonBorderColor: string;
821
+ buttonBorderColorActive: string;
822
+ buttonBorderColorHover: string;
823
+ buttonColor: string;
824
+ buttonColorActive: string;
825
+ buttonTextColor: string;
826
+ buttonTextColorActive: string;
827
+ buttonTextColorHover: string;
828
+ opacityDisabled: string;
829
+ buttonBoxShadowFocus: string;
830
+ buttonBoxShadowHover: string;
831
+ buttonBoxShadow: string;
832
+ buttonBorderRadius: string;
833
+ radioSizeSmall: string;
834
+ radioSizeMedium: string;
835
+ radioSizeLarge: string;
836
+ labelPadding: string;
837
+ }, any>>;
838
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Radio", {
839
+ labelLineHeight: string;
840
+ buttonHeightSmall: string;
841
+ buttonHeightMedium: string;
842
+ buttonHeightLarge: string;
843
+ fontSizeSmall: string;
844
+ fontSizeMedium: string;
845
+ fontSizeLarge: string;
846
+ boxShadow: string;
847
+ boxShadowActive: string;
848
+ boxShadowFocus: string;
849
+ boxShadowHover: string;
850
+ boxShadowDisabled: string;
851
+ color: string;
852
+ colorDisabled: string;
853
+ colorActive: string;
854
+ textColor: string;
855
+ textColorDisabled: string;
856
+ dotColorActive: string;
857
+ dotColorDisabled: string;
858
+ buttonBorderColor: string;
859
+ buttonBorderColorActive: string;
860
+ buttonBorderColorHover: string;
861
+ buttonColor: string;
862
+ buttonColorActive: string;
863
+ buttonTextColor: string;
864
+ buttonTextColorActive: string;
865
+ buttonTextColorHover: string;
866
+ opacityDisabled: string;
867
+ buttonBoxShadowFocus: string;
868
+ buttonBoxShadowHover: string;
869
+ buttonBoxShadow: string;
870
+ buttonBorderRadius: string;
871
+ radioSizeSmall: string;
872
+ radioSizeMedium: string;
873
+ radioSizeLarge: string;
874
+ labelPadding: string;
875
+ }, any>>>;
876
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Radio", {
877
+ labelLineHeight: string;
878
+ buttonHeightSmall: string;
879
+ buttonHeightMedium: string;
880
+ buttonHeightLarge: string;
881
+ fontSizeSmall: string;
882
+ fontSizeMedium: string;
883
+ fontSizeLarge: string;
884
+ boxShadow: string;
885
+ boxShadowActive: string;
886
+ boxShadowFocus: string;
887
+ boxShadowHover: string;
888
+ boxShadowDisabled: string;
889
+ color: string;
890
+ colorDisabled: string;
891
+ colorActive: string;
892
+ textColor: string;
893
+ textColorDisabled: string;
894
+ dotColorActive: string;
895
+ dotColorDisabled: string;
896
+ buttonBorderColor: string;
897
+ buttonBorderColorActive: string;
898
+ buttonBorderColorHover: string;
899
+ buttonColor: string;
900
+ buttonColorActive: string;
901
+ buttonTextColor: string;
902
+ buttonTextColorActive: string;
903
+ buttonTextColorHover: string;
904
+ opacityDisabled: string;
905
+ buttonBoxShadowFocus: string;
906
+ buttonBoxShadowHover: string;
907
+ buttonBoxShadow: string;
908
+ buttonBorderRadius: string;
909
+ radioSizeSmall: string;
910
+ radioSizeMedium: string;
911
+ radioSizeLarge: string;
912
+ labelPadding: string;
913
+ }, any>>>;
914
+ }>>, {
915
+ readonly disabled: boolean | undefined;
916
+ readonly defaultValue: string | number | boolean | null;
917
+ }>;
918
+ NRadio: any;
919
+ CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
920
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "cancelSaveModal"[], "cancelSaveModal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
921
+ visible: {
922
+ type: BooleanConstructor;
923
+ default: boolean;
924
+ };
925
+ tableListId: {
926
+ type: StringConstructor;
927
+ default: string;
928
+ };
929
+ programOptions: {
930
+ type: PropType<IExportSchemeType[]>;
931
+ default: () => never[];
932
+ };
933
+ curProgram: {
934
+ type: PropType<IExportSchemeType>;
935
+ default: () => {};
936
+ };
937
+ }>> & {
938
+ onCancelSaveModal?: ((...args: any[]) => any) | undefined;
939
+ }, {
940
+ visible: boolean;
941
+ tableListId: string;
942
+ curProgram: IExportSchemeType;
943
+ programOptions: IExportSchemeType[];
944
+ }>;
945
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "cancelModal"[], "cancelModal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
946
+ visible: {
947
+ type: BooleanConstructor;
948
+ default: boolean;
949
+ };
950
+ tableListId: {
951
+ type: StringConstructor;
952
+ default: string;
953
+ };
954
+ fieldOriginList: {
955
+ type: PropType<any[]>;
956
+ default: () => never[];
957
+ };
958
+ exportApiConfig: {
959
+ type: ObjectConstructor;
960
+ };
961
+ }>> & {
962
+ onCancelModal?: ((...args: any[]) => any) | undefined;
963
+ }, {
964
+ visible: boolean;
965
+ tableListId: string;
966
+ fieldOriginList: any[];
967
+ }>;
968
+ export default _default;