cnhis-design-vue 3.2.4-beta.24 → 3.2.4-beta.26

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. package/es/components/big-table/src/components/edit-form/edit-select.d.ts +1 -1
  2. package/es/components/big-table/src/hooks/useEdit.d.ts +1 -1
  3. package/es/components/biunique-chat/index.d.ts +4 -1
  4. package/es/components/biunique-chat/src/Index.vue.d.ts +4 -1
  5. package/es/components/biunique-chat/src/components/ChatFile.vue.d.ts +4 -0
  6. package/es/components/biunique-chat/src/components/ChatFile.vue2.js +1 -1
  7. package/es/components/biunique-chat/src/components/ChatFooter.vue2.js +1 -1
  8. package/es/components/biunique-chat/src/components/ChatHeader.vue.d.ts +3 -0
  9. package/es/components/biunique-chat/src/components/ChatMain.vue.d.ts +2 -2
  10. package/es/components/biunique-chat/src/components/ChatMain.vue2.js +1 -1
  11. package/es/components/biunique-chat/src/utils/index.d.ts +2 -0
  12. package/es/components/biunique-chat/src/utils/index.js +1 -1
  13. package/es/components/biunique-chat/style/index.css +1 -1
  14. package/es/components/button-print/index.d.ts +3829 -1370
  15. package/es/components/button-print/src/ButtonPrint.vue.d.ts +3831 -1370
  16. package/es/components/button-print/src/ButtonPrint.vue2.js +1 -1
  17. package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +2065 -0
  18. package/es/components/button-print/src/components/NewPrintComponent.vue.js +1 -0
  19. package/es/components/button-print/src/components/NewPrintComponent.vue2.js +1 -0
  20. package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +1996 -0
  21. package/es/components/button-print/src/components/OldPrintComponent.vue.js +1 -0
  22. package/es/components/button-print/src/components/OldPrintComponent.vue2.js +1 -0
  23. package/es/components/button-print/src/constants/index.d.ts +2 -0
  24. package/es/components/button-print/src/constants/index.js +1 -0
  25. package/es/components/button-print/style/index.css +1 -1
  26. package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
  27. package/es/components/classification/src/index.vue.d.ts +0 -3
  28. package/es/components/field-set/src/FieldColor.vue.d.ts +6 -6
  29. package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
  30. package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
  31. package/es/components/field-set/src/components/Row.vue.d.ts +1 -1
  32. package/es/components/field-set/src/components/edit-dialog.vue.d.ts +5 -5
  33. package/es/components/field-set/src/components/edit-filter.vue.d.ts +2 -2
  34. package/es/components/iho-table/src/plugins/defaultConfigPlugin.js +1 -1
  35. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/levelSearchCascadePlugin/levelSearchCascade.vue.d.ts +1 -1
  36. package/es/components/index.css +1 -1
  37. package/es/components/search-cascader/index.d.ts +1 -1
  38. package/es/components/search-cascader/src/SearchCascader.vue.d.ts +1 -1
  39. package/es/env.d.ts +25 -25
  40. package/es/shared/package.json.js +1 -1
  41. package/package.json +2 -2
@@ -0,0 +1,2065 @@
1
+ /// <reference types="node" />
2
+ import { AnyObject } from '../../../../shared/types';
3
+ import { PropType } from 'vue';
4
+ import { Print } from '../utils';
5
+ declare const _default: import("vue").DefineComponent<{
6
+ printParams: {
7
+ type: PropType<AnyObject[]>;
8
+ };
9
+ params: {
10
+ default: () => never[];
11
+ type: PropType<AnyObject[]>;
12
+ };
13
+ btnText: {
14
+ default: string;
15
+ type: StringConstructor;
16
+ };
17
+ printText: {
18
+ default: string;
19
+ type: StringConstructor;
20
+ };
21
+ /**
22
+ * 打印预览按钮文本
23
+ */
24
+ previewText: {
25
+ default: string;
26
+ type: StringConstructor;
27
+ };
28
+ pdfLoadText: {
29
+ default: string;
30
+ type: StringConstructor;
31
+ };
32
+ formatEditText: {
33
+ default: string;
34
+ type: StringConstructor;
35
+ };
36
+ prevFn: {
37
+ default: () => Promise<void>;
38
+ type: FunctionConstructor;
39
+ };
40
+ queryPrintFormatByNumber: {
41
+ default: () => Promise<{}>;
42
+ type: FunctionConstructor;
43
+ };
44
+ queryTemplateParams: {
45
+ default: () => Promise<{}>;
46
+ type: FunctionConstructor;
47
+ };
48
+ strategy: {
49
+ default: string;
50
+ type: StringConstructor;
51
+ };
52
+ clickPrevFn: {
53
+ default: () => Promise<boolean>;
54
+ type: FunctionConstructor;
55
+ };
56
+ noDataMsg: {
57
+ default: string;
58
+ type: StringConstructor;
59
+ };
60
+ token: {
61
+ type: StringConstructor;
62
+ };
63
+ printdlgshow: {
64
+ default: string;
65
+ type: StringConstructor;
66
+ };
67
+ btnprint: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ directPrint: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ };
75
+ externalOptionConfig: {
76
+ type: PropType<Partial<{
77
+ options: AnyObject[];
78
+ onSelect: (key: string | number, option: AnyObject) => void;
79
+ }>>;
80
+ default: () => {};
81
+ };
82
+ signature: {
83
+ type: StringConstructor;
84
+ };
85
+ showLoading: {
86
+ type: BooleanConstructor;
87
+ default: boolean;
88
+ };
89
+ hideButtons: {
90
+ type: ArrayConstructor;
91
+ default: () => never[];
92
+ };
93
+ printCopies: {
94
+ type: NumberConstructor;
95
+ default: number;
96
+ };
97
+ newPrintSetting: {
98
+ type: ObjectConstructor;
99
+ default: () => {
100
+ isShowPrintAll: boolean;
101
+ isShowOutSetting: boolean;
102
+ customProps: {};
103
+ };
104
+ };
105
+ }, {
106
+ baseDownListSetting: {
107
+ label: string;
108
+ key: string;
109
+ }[];
110
+ $message: import("naive-ui").MessageApi;
111
+ printInstance: Print | null;
112
+ downloadPdfCode: string;
113
+ formatEditTextCode: string;
114
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
115
+ printParams: {
116
+ type: PropType<AnyObject[]>;
117
+ };
118
+ params: {
119
+ default: () => never[];
120
+ type: PropType<AnyObject[]>;
121
+ };
122
+ btnText: {
123
+ default: string;
124
+ type: StringConstructor;
125
+ };
126
+ printText: {
127
+ default: string;
128
+ type: StringConstructor;
129
+ };
130
+ /**
131
+ * 打印预览按钮文本
132
+ */
133
+ previewText: {
134
+ default: string;
135
+ type: StringConstructor;
136
+ };
137
+ pdfLoadText: {
138
+ default: string;
139
+ type: StringConstructor;
140
+ };
141
+ formatEditText: {
142
+ default: string;
143
+ type: StringConstructor;
144
+ };
145
+ prevFn: {
146
+ default: () => Promise<void>;
147
+ type: FunctionConstructor;
148
+ };
149
+ queryPrintFormatByNumber: {
150
+ default: () => Promise<{}>;
151
+ type: FunctionConstructor;
152
+ };
153
+ queryTemplateParams: {
154
+ default: () => Promise<{}>;
155
+ type: FunctionConstructor;
156
+ };
157
+ strategy: {
158
+ default: string;
159
+ type: StringConstructor;
160
+ };
161
+ clickPrevFn: {
162
+ default: () => Promise<boolean>;
163
+ type: FunctionConstructor;
164
+ };
165
+ noDataMsg: {
166
+ default: string;
167
+ type: StringConstructor;
168
+ };
169
+ token: {
170
+ type: StringConstructor;
171
+ };
172
+ printdlgshow: {
173
+ default: string;
174
+ type: StringConstructor;
175
+ };
176
+ btnprint: {
177
+ type: StringConstructor;
178
+ default: string;
179
+ };
180
+ directPrint: {
181
+ type: BooleanConstructor;
182
+ default: boolean;
183
+ };
184
+ externalOptionConfig: {
185
+ type: PropType<Partial<{
186
+ options: AnyObject[];
187
+ onSelect: (key: string | number, option: AnyObject) => void;
188
+ }>>;
189
+ default: () => {};
190
+ };
191
+ signature: {
192
+ type: StringConstructor;
193
+ };
194
+ showLoading: {
195
+ type: BooleanConstructor;
196
+ default: boolean;
197
+ };
198
+ hideButtons: {
199
+ type: ArrayConstructor;
200
+ default: () => never[];
201
+ };
202
+ printCopies: {
203
+ type: NumberConstructor;
204
+ default: number;
205
+ };
206
+ newPrintSetting: {
207
+ type: ObjectConstructor;
208
+ default: () => {
209
+ isShowPrintAll: boolean;
210
+ isShowOutSetting: boolean;
211
+ customProps: {};
212
+ };
213
+ };
214
+ }>> & {}>>;
215
+ emit: any;
216
+ defaultFormatInfo: AnyObject;
217
+ authorizationKey: import("vue").Ref<string>;
218
+ state: {
219
+ spinning: boolean;
220
+ visible: boolean;
221
+ formatList: never[];
222
+ templateParams: {};
223
+ printParams: never[];
224
+ currentFormatId: string;
225
+ identityVerification: {
226
+ visible: boolean;
227
+ };
228
+ isInited: boolean;
229
+ watchPrintParamsReformatFn: null;
230
+ spinTimer: null;
231
+ isClickOuterPrint: boolean;
232
+ };
233
+ options: import("vue").Ref<AnyObject[]>;
234
+ operations: import("vue").Ref<AnyObject[]>;
235
+ downlistOperation: {
236
+ oneMouseType: string;
237
+ oneClickType: string;
238
+ twoMouseType: string;
239
+ };
240
+ downlistPopover: {
241
+ oneShow: boolean;
242
+ isOperation: boolean;
243
+ isOutSetting: boolean;
244
+ };
245
+ innerPrintItems: import("vue").Ref<never[]>;
246
+ outterPrintItems: import("vue").Ref<never[]>;
247
+ currentFormatItem: import("vue").ComputedRef<{} | undefined>;
248
+ formatTitle: import("vue").ComputedRef<any>;
249
+ getTemplateIdByFormatId: import("vue").ComputedRef<any>;
250
+ isShowPrintAllBtn: import("vue").ComputedRef<any>;
251
+ isShowOutSettingBtn: import("vue").ComputedRef<any>;
252
+ printCustomProps: import("vue").ComputedRef<any>;
253
+ showSettingItems: import("vue").ComputedRef<AnyObject[]>;
254
+ isSelectedAll: import("vue").WritableComputedRef<boolean>;
255
+ initShowDownList: () => Promise<void>;
256
+ printAllButtonClick: (origin: string) => Promise<void>;
257
+ renderLabel: (option: AnyObject) => JSX.Element;
258
+ handleTypeChange: (name: string, key: string) => void;
259
+ handleTypeClick: (name: string, key: string) => void;
260
+ savePrintOutSetting: () => void;
261
+ handleTwoShow: (name: string) => void;
262
+ handleClickOutHide: (shwoType: string) => void;
263
+ callLocalServicesSuccessCb: (res: any, type: any) => void;
264
+ callLocalServicesErrorCb: (res: unknown) => void;
265
+ callLocalServicesCancelCb: (res: unknown) => void;
266
+ prevFnError: (type: string) => void;
267
+ getPrintParams: () => string;
268
+ getOnceParams: (curPrintParamList: any[] | undefined, templateCode: string) => string;
269
+ handleClickPrintAll: () => void;
270
+ toggleExpandLoading: (isLoading: boolean, formatId?: string) => void;
271
+ getCurrentLoading: () => boolean;
272
+ handleOneTypePrint: (templateCode: string, templateId: string, formatId: string, isOuterClick: boolean) => void;
273
+ handleClickPrint: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string, needContinuePrint?: boolean) => Promise<void>;
274
+ handleClickPreview: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => Promise<void>;
275
+ handleClickPdf: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => Promise<void>;
276
+ handleClickEdit: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => void;
277
+ handleResetPrinter: () => void;
278
+ handleSelect: (type: string, { templateCode, templateId, key }: AnyObject, isOuterClick: boolean) => Promise<void>;
279
+ handleClickOutside: () => void;
280
+ instantiatePrintSDK: () => false | undefined;
281
+ getDefaultFormatId: (list: any[], key: string | number) => Promise<any>;
282
+ setOptions: () => void;
283
+ formatFormatList: (list: any[]) => any;
284
+ requestError: () => boolean;
285
+ formatDefaultVal: (i: any, tableVal?: any) => any;
286
+ formatSomeTypeParams: (templateParams: any[], params?: any[]) => any;
287
+ formatPrintParams: (paramObj: any, fieldList: any[], keyName: string) => any;
288
+ formatItemParam: ({ customizeDataset, param }: {
289
+ customizeDataset?: never[] | undefined;
290
+ param?: never[] | undefined;
291
+ }, paramObj?: any) => any;
292
+ findTemplateAndInsertData: (mergeData: any, paramItem: any, templateParams: any) => any;
293
+ mergeTemplateList: (list: any[]) => any;
294
+ initCRM: (formatListResult: any) => Promise<void>;
295
+ init: () => Promise<boolean>;
296
+ handleClickBtn: (visible?: boolean) => Promise<false | undefined>;
297
+ reformatPrintParams: () => void;
298
+ verifiySuccess: (token: string) => void;
299
+ directPrint: () => Promise<void>;
300
+ NDropdown: any;
301
+ NButton: any;
302
+ NIcon: any;
303
+ NPopover: any;
304
+ NButtonGroup: any;
305
+ NDivider: any;
306
+ NCheckbox: any;
307
+ PrintOutline: 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<{}>>, {}>;
308
+ ChevronDownSharp: 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<{}>>, {}>;
309
+ ArrowForwardOutline: 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<{}>>, {}>;
310
+ SettingsOutline: 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<{}>>, {}>;
311
+ IdentityVerification: import("vue").DefineComponent<{
312
+ verifyUser: {
313
+ type: FunctionConstructor;
314
+ required: false;
315
+ default: () => Promise<void>;
316
+ };
317
+ identityVerificationTitle: {
318
+ type: StringConstructor;
319
+ required: false;
320
+ default: string;
321
+ };
322
+ modelValue: {
323
+ type: BooleanConstructor;
324
+ required: true;
325
+ };
326
+ formatId: {
327
+ type: StringConstructor;
328
+ required: false;
329
+ };
330
+ templateId: {
331
+ type: StringConstructor;
332
+ required: false;
333
+ };
334
+ }, {
335
+ $message: import("naive-ui").MessageApi;
336
+ DEFAULT_FORM: {
337
+ account: string;
338
+ password: string;
339
+ };
340
+ props: {
341
+ verifyUser: Function;
342
+ identityVerificationTitle: string;
343
+ modelValue: boolean;
344
+ formatId?: string | undefined;
345
+ templateId?: string | undefined;
346
+ };
347
+ emit: (event: "close" | "success" | "update:modelValue", ...args: any[]) => void;
348
+ editFormRef: import("vue").Ref<{
349
+ submit: Function;
350
+ } | null>;
351
+ showEditForm: import("vue").Ref<boolean>;
352
+ token: import("vue").Ref<string>;
353
+ form: {
354
+ account: string;
355
+ password: string;
356
+ };
357
+ rules: import("naive-ui").FormRules;
358
+ style: {
359
+ width: string;
360
+ };
361
+ formRef: import("vue").Ref<{
362
+ validate: import("naive-ui/es/form/src/interface").FormValidate;
363
+ restoreValidation: () => void;
364
+ } | null>;
365
+ handleClickClose: () => void;
366
+ loading: import("vue").Ref<boolean>;
367
+ submit: () => Promise<false | undefined>;
368
+ handleClickSubmit: () => void;
369
+ submitEditFile: () => Promise<false | undefined>;
370
+ NButton: any;
371
+ NModal: any;
372
+ NForm: any;
373
+ NFormItem: import("vue").DefineComponent<{
374
+ readonly label: StringConstructor;
375
+ readonly labelWidth: PropType<string | number>;
376
+ readonly labelStyle: PropType<string | import("vue").CSSProperties>;
377
+ readonly labelAlign: PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
378
+ readonly labelPlacement: PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
379
+ readonly path: StringConstructor;
380
+ readonly first: BooleanConstructor;
381
+ readonly rulePath: StringConstructor;
382
+ readonly required: BooleanConstructor;
383
+ readonly showRequireMark: {
384
+ readonly type: PropType<boolean | undefined>;
385
+ readonly default: undefined;
386
+ };
387
+ readonly requireMarkPlacement: PropType<"left" | "right" | "right-hanging">;
388
+ readonly showFeedback: {
389
+ readonly type: PropType<boolean | undefined>;
390
+ readonly default: undefined;
391
+ };
392
+ readonly rule: PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
393
+ readonly size: PropType<"small" | "medium" | "large">;
394
+ readonly ignorePathChange: BooleanConstructor;
395
+ readonly validationStatus: PropType<"success" | "error" | "warning">;
396
+ readonly feedback: StringConstructor;
397
+ readonly showLabel: {
398
+ readonly type: PropType<boolean | undefined>;
399
+ readonly default: undefined;
400
+ };
401
+ readonly labelProps: PropType<import("vue").LabelHTMLAttributes>;
402
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Form", {
403
+ blankHeightSmall: string;
404
+ blankHeightMedium: string;
405
+ blankHeightLarge: string;
406
+ lineHeight: string;
407
+ labelTextColor: string;
408
+ asteriskColor: string;
409
+ feedbackTextColorError: string;
410
+ feedbackTextColorWarning: string;
411
+ feedbackTextColor: string;
412
+ feedbackPadding: string;
413
+ feedbackHeightSmall: string;
414
+ feedbackHeightMedium: string;
415
+ feedbackHeightLarge: string;
416
+ feedbackFontSizeSmall: string;
417
+ feedbackFontSizeMedium: string;
418
+ feedbackFontSizeLarge: string;
419
+ labelFontSizeLeftSmall: string;
420
+ labelFontSizeLeftMedium: string;
421
+ labelFontSizeLeftLarge: string;
422
+ labelFontSizeTopSmall: string;
423
+ labelFontSizeTopMedium: string;
424
+ labelFontSizeTopLarge: string;
425
+ labelHeightSmall: string;
426
+ labelHeightMedium: string;
427
+ labelHeightLarge: string;
428
+ labelPaddingVertical: string;
429
+ labelPaddingHorizontal: string;
430
+ labelTextAlignVertical: string;
431
+ labelTextAlignHorizontal: string;
432
+ }, any>>;
433
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
434
+ blankHeightSmall: string;
435
+ blankHeightMedium: string;
436
+ blankHeightLarge: string;
437
+ lineHeight: string;
438
+ labelTextColor: string;
439
+ asteriskColor: string;
440
+ feedbackTextColorError: string;
441
+ feedbackTextColorWarning: string;
442
+ feedbackTextColor: string;
443
+ feedbackPadding: string;
444
+ feedbackHeightSmall: string;
445
+ feedbackHeightMedium: string;
446
+ feedbackHeightLarge: string;
447
+ feedbackFontSizeSmall: string;
448
+ feedbackFontSizeMedium: string;
449
+ feedbackFontSizeLarge: string;
450
+ labelFontSizeLeftSmall: string;
451
+ labelFontSizeLeftMedium: string;
452
+ labelFontSizeLeftLarge: string;
453
+ labelFontSizeTopSmall: string;
454
+ labelFontSizeTopMedium: string;
455
+ labelFontSizeTopLarge: string;
456
+ labelHeightSmall: string;
457
+ labelHeightMedium: string;
458
+ labelHeightLarge: string;
459
+ labelPaddingVertical: string;
460
+ labelPaddingHorizontal: string;
461
+ labelTextAlignVertical: string;
462
+ labelTextAlignHorizontal: string;
463
+ }, any>>>;
464
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
465
+ blankHeightSmall: string;
466
+ blankHeightMedium: string;
467
+ blankHeightLarge: string;
468
+ lineHeight: string;
469
+ labelTextColor: string;
470
+ asteriskColor: string;
471
+ feedbackTextColorError: string;
472
+ feedbackTextColorWarning: string;
473
+ feedbackTextColor: string;
474
+ feedbackPadding: string;
475
+ feedbackHeightSmall: string;
476
+ feedbackHeightMedium: string;
477
+ feedbackHeightLarge: string;
478
+ feedbackFontSizeSmall: string;
479
+ feedbackFontSizeMedium: string;
480
+ feedbackFontSizeLarge: string;
481
+ labelFontSizeLeftSmall: string;
482
+ labelFontSizeLeftMedium: string;
483
+ labelFontSizeLeftLarge: string;
484
+ labelFontSizeTopSmall: string;
485
+ labelFontSizeTopMedium: string;
486
+ labelFontSizeTopLarge: string;
487
+ labelHeightSmall: string;
488
+ labelHeightMedium: string;
489
+ labelHeightLarge: string;
490
+ labelPaddingVertical: string;
491
+ labelPaddingHorizontal: string;
492
+ labelTextAlignVertical: string;
493
+ labelTextAlignHorizontal: string;
494
+ }, any>>>;
495
+ }, {
496
+ cssVars: import("vue").ComputedRef<{
497
+ '--n-bezier': string;
498
+ '--n-line-height': string;
499
+ '--n-blank-height': string;
500
+ '--n-label-font-size': string;
501
+ '--n-label-text-align': string;
502
+ '--n-label-height': string;
503
+ '--n-label-padding': string;
504
+ '--n-asterisk-color': string;
505
+ '--n-label-text-color': string;
506
+ '--n-feedback-padding': string;
507
+ '--n-feedback-font-size': string;
508
+ '--n-feedback-height': string;
509
+ '--n-feedback-text-color': string;
510
+ '--n-feedback-text-color-warning': string;
511
+ '--n-feedback-text-color-error': string;
512
+ }> | undefined;
513
+ themeClass: import("vue").Ref<string>;
514
+ onRender: () => void;
515
+ validate: import("naive-ui/es/form/src/interface").FormItemValidate;
516
+ restoreValidation: () => void;
517
+ path?: string | undefined;
518
+ internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
519
+ mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").Size>;
520
+ validationErrored: import("vue").Ref<boolean>;
521
+ mergedLabelStyle: import("vue").ComputedRef<(import("vue").StyleValue | undefined)[]>;
522
+ mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelPlacement>;
523
+ mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelAlign | undefined>;
524
+ mergedShowRequireMark: import("vue").ComputedRef<boolean | undefined>;
525
+ mergedRequireMarkPlacement: import("vue").ComputedRef<"left" | "right" | "right-hanging">;
526
+ mergedValidationStatus: import("vue").ComputedRef<"success" | "error" | "warning" | undefined>;
527
+ mergedShowFeedback: import("vue").ComputedRef<boolean>;
528
+ mergedShowLabel: import("vue").ComputedRef<boolean>;
529
+ isAutoLabelWidth: import("vue").ComputedRef<boolean>;
530
+ labelElementRef: import("vue").Ref<HTMLLabelElement | null>;
531
+ mergedClsPrefix: import("vue").ComputedRef<string>;
532
+ mergedRequired: import("vue").ComputedRef<boolean>;
533
+ feedbackId: import("vue").Ref<string>;
534
+ renderExplains: import("vue").Ref<{
535
+ key: string;
536
+ render: () => import("vue").VNodeChild;
537
+ }[]>;
538
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
539
+ readonly label: StringConstructor;
540
+ readonly labelWidth: PropType<string | number>;
541
+ readonly labelStyle: PropType<string | import("vue").CSSProperties>;
542
+ readonly labelAlign: PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
543
+ readonly labelPlacement: PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
544
+ readonly path: StringConstructor;
545
+ readonly first: BooleanConstructor;
546
+ readonly rulePath: StringConstructor;
547
+ readonly required: BooleanConstructor;
548
+ readonly showRequireMark: {
549
+ readonly type: PropType<boolean | undefined>;
550
+ readonly default: undefined;
551
+ };
552
+ readonly requireMarkPlacement: PropType<"left" | "right" | "right-hanging">;
553
+ readonly showFeedback: {
554
+ readonly type: PropType<boolean | undefined>;
555
+ readonly default: undefined;
556
+ };
557
+ readonly rule: PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
558
+ readonly size: PropType<"small" | "medium" | "large">;
559
+ readonly ignorePathChange: BooleanConstructor;
560
+ readonly validationStatus: PropType<"success" | "error" | "warning">;
561
+ readonly feedback: StringConstructor;
562
+ readonly showLabel: {
563
+ readonly type: PropType<boolean | undefined>;
564
+ readonly default: undefined;
565
+ };
566
+ readonly labelProps: PropType<import("vue").LabelHTMLAttributes>;
567
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Form", {
568
+ blankHeightSmall: string;
569
+ blankHeightMedium: string;
570
+ blankHeightLarge: string;
571
+ lineHeight: string;
572
+ labelTextColor: string;
573
+ asteriskColor: string;
574
+ feedbackTextColorError: string;
575
+ feedbackTextColorWarning: string;
576
+ feedbackTextColor: string;
577
+ feedbackPadding: string;
578
+ feedbackHeightSmall: string;
579
+ feedbackHeightMedium: string;
580
+ feedbackHeightLarge: string;
581
+ feedbackFontSizeSmall: string;
582
+ feedbackFontSizeMedium: string;
583
+ feedbackFontSizeLarge: string;
584
+ labelFontSizeLeftSmall: string;
585
+ labelFontSizeLeftMedium: string;
586
+ labelFontSizeLeftLarge: string;
587
+ labelFontSizeTopSmall: string;
588
+ labelFontSizeTopMedium: string;
589
+ labelFontSizeTopLarge: string;
590
+ labelHeightSmall: string;
591
+ labelHeightMedium: string;
592
+ labelHeightLarge: string;
593
+ labelPaddingVertical: string;
594
+ labelPaddingHorizontal: string;
595
+ labelTextAlignVertical: string;
596
+ labelTextAlignHorizontal: string;
597
+ }, any>>;
598
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
599
+ blankHeightSmall: string;
600
+ blankHeightMedium: string;
601
+ blankHeightLarge: string;
602
+ lineHeight: string;
603
+ labelTextColor: string;
604
+ asteriskColor: string;
605
+ feedbackTextColorError: string;
606
+ feedbackTextColorWarning: string;
607
+ feedbackTextColor: string;
608
+ feedbackPadding: string;
609
+ feedbackHeightSmall: string;
610
+ feedbackHeightMedium: string;
611
+ feedbackHeightLarge: string;
612
+ feedbackFontSizeSmall: string;
613
+ feedbackFontSizeMedium: string;
614
+ feedbackFontSizeLarge: string;
615
+ labelFontSizeLeftSmall: string;
616
+ labelFontSizeLeftMedium: string;
617
+ labelFontSizeLeftLarge: string;
618
+ labelFontSizeTopSmall: string;
619
+ labelFontSizeTopMedium: string;
620
+ labelFontSizeTopLarge: string;
621
+ labelHeightSmall: string;
622
+ labelHeightMedium: string;
623
+ labelHeightLarge: string;
624
+ labelPaddingVertical: string;
625
+ labelPaddingHorizontal: string;
626
+ labelTextAlignVertical: string;
627
+ labelTextAlignHorizontal: string;
628
+ }, any>>>;
629
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
630
+ blankHeightSmall: string;
631
+ blankHeightMedium: string;
632
+ blankHeightLarge: string;
633
+ lineHeight: string;
634
+ labelTextColor: string;
635
+ asteriskColor: string;
636
+ feedbackTextColorError: string;
637
+ feedbackTextColorWarning: string;
638
+ feedbackTextColor: string;
639
+ feedbackPadding: string;
640
+ feedbackHeightSmall: string;
641
+ feedbackHeightMedium: string;
642
+ feedbackHeightLarge: string;
643
+ feedbackFontSizeSmall: string;
644
+ feedbackFontSizeMedium: string;
645
+ feedbackFontSizeLarge: string;
646
+ labelFontSizeLeftSmall: string;
647
+ labelFontSizeLeftMedium: string;
648
+ labelFontSizeLeftLarge: string;
649
+ labelFontSizeTopSmall: string;
650
+ labelFontSizeTopMedium: string;
651
+ labelFontSizeTopLarge: string;
652
+ labelHeightSmall: string;
653
+ labelHeightMedium: string;
654
+ labelHeightLarge: string;
655
+ labelPaddingVertical: string;
656
+ labelPaddingHorizontal: string;
657
+ labelTextAlignVertical: string;
658
+ labelTextAlignHorizontal: string;
659
+ }, any>>>;
660
+ }>>, {
661
+ readonly required: boolean;
662
+ readonly first: boolean;
663
+ readonly showRequireMark: boolean | undefined;
664
+ readonly showFeedback: boolean | undefined;
665
+ readonly showLabel: boolean | undefined;
666
+ readonly ignorePathChange: boolean;
667
+ }>;
668
+ NInput: any;
669
+ EditFormat: import("vue").DefineComponent<{
670
+ formatId: {
671
+ type: StringConstructor;
672
+ required: false;
673
+ };
674
+ token: {
675
+ type: StringConstructor;
676
+ required: true;
677
+ };
678
+ }, {
679
+ PROTOCOL: string;
680
+ HOST: string;
681
+ BASEURL: string;
682
+ SAVEIREPORT: string;
683
+ QUERYFILELIST: string;
684
+ DELETEFILE: string;
685
+ instance: import("axios").AxiosInstance;
686
+ $message: import("naive-ui").MessageApi;
687
+ props: {
688
+ formatId?: string | undefined;
689
+ token: string;
690
+ };
691
+ fileList: import("vue").Ref<{
692
+ id: string;
693
+ name: string;
694
+ batchId?: string | null | undefined;
695
+ percentage?: number | null | undefined;
696
+ status: "error" | "pending" | "uploading" | "finished" | "removed";
697
+ url?: string | null | undefined;
698
+ file?: {
699
+ readonly lastModified: number;
700
+ readonly name: string;
701
+ readonly webkitRelativePath: string;
702
+ readonly size: number;
703
+ readonly type: string;
704
+ arrayBuffer: {
705
+ (): Promise<ArrayBuffer>;
706
+ (): Promise<ArrayBuffer>;
707
+ };
708
+ slice: {
709
+ (start?: number | undefined, end?: number | undefined, contentType?: string | undefined): Blob;
710
+ (start?: number | undefined, end?: number | undefined, contentType?: string | undefined): Blob;
711
+ };
712
+ stream: {
713
+ (): ReadableStream<Uint8Array>;
714
+ (): NodeJS.ReadableStream;
715
+ };
716
+ text: {
717
+ (): Promise<string>;
718
+ (): Promise<string>;
719
+ };
720
+ } | null | undefined;
721
+ thumbnailUrl?: string | null | undefined;
722
+ type?: string | null | undefined;
723
+ fullPath?: string | null | undefined;
724
+ }[]>;
725
+ queryFileList: () => void;
726
+ onRemove: (options: {
727
+ file: import("naive-ui").UploadFileInfo;
728
+ fileList: import("naive-ui").UploadFileInfo[];
729
+ }) => Promise<unknown>;
730
+ submit: (datas: AnyObject) => Promise<unknown>;
731
+ validateFormat: () => boolean;
732
+ NForm: any;
733
+ NFormItem: import("vue").DefineComponent<{
734
+ readonly label: StringConstructor;
735
+ readonly labelWidth: PropType<string | number>;
736
+ readonly labelStyle: PropType<string | import("vue").CSSProperties>;
737
+ readonly labelAlign: PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
738
+ readonly labelPlacement: PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
739
+ readonly path: StringConstructor;
740
+ readonly first: BooleanConstructor;
741
+ readonly rulePath: StringConstructor;
742
+ readonly required: BooleanConstructor;
743
+ readonly showRequireMark: {
744
+ readonly type: PropType<boolean | undefined>;
745
+ readonly default: undefined;
746
+ };
747
+ readonly requireMarkPlacement: PropType<"left" | "right" | "right-hanging">;
748
+ readonly showFeedback: {
749
+ readonly type: PropType<boolean | undefined>;
750
+ readonly default: undefined;
751
+ };
752
+ readonly rule: PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
753
+ readonly size: PropType<"small" | "medium" | "large">;
754
+ readonly ignorePathChange: BooleanConstructor;
755
+ readonly validationStatus: PropType<"success" | "error" | "warning">;
756
+ readonly feedback: StringConstructor;
757
+ readonly showLabel: {
758
+ readonly type: PropType<boolean | undefined>;
759
+ readonly default: undefined;
760
+ };
761
+ readonly labelProps: PropType<import("vue").LabelHTMLAttributes>;
762
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Form", {
763
+ blankHeightSmall: string;
764
+ blankHeightMedium: string;
765
+ blankHeightLarge: string;
766
+ lineHeight: string;
767
+ labelTextColor: string;
768
+ asteriskColor: string;
769
+ feedbackTextColorError: string;
770
+ feedbackTextColorWarning: string;
771
+ feedbackTextColor: string;
772
+ feedbackPadding: string;
773
+ feedbackHeightSmall: string;
774
+ feedbackHeightMedium: string;
775
+ feedbackHeightLarge: string;
776
+ feedbackFontSizeSmall: string;
777
+ feedbackFontSizeMedium: string;
778
+ feedbackFontSizeLarge: string;
779
+ labelFontSizeLeftSmall: string;
780
+ labelFontSizeLeftMedium: string;
781
+ labelFontSizeLeftLarge: string;
782
+ labelFontSizeTopSmall: string;
783
+ labelFontSizeTopMedium: string;
784
+ labelFontSizeTopLarge: string;
785
+ labelHeightSmall: string;
786
+ labelHeightMedium: string;
787
+ labelHeightLarge: string;
788
+ labelPaddingVertical: string;
789
+ labelPaddingHorizontal: string;
790
+ labelTextAlignVertical: string;
791
+ labelTextAlignHorizontal: string;
792
+ }, any>>;
793
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
794
+ blankHeightSmall: string;
795
+ blankHeightMedium: string;
796
+ blankHeightLarge: string;
797
+ lineHeight: string;
798
+ labelTextColor: string;
799
+ asteriskColor: string;
800
+ feedbackTextColorError: string;
801
+ feedbackTextColorWarning: string;
802
+ feedbackTextColor: string;
803
+ feedbackPadding: string;
804
+ feedbackHeightSmall: string;
805
+ feedbackHeightMedium: string;
806
+ feedbackHeightLarge: string;
807
+ feedbackFontSizeSmall: string;
808
+ feedbackFontSizeMedium: string;
809
+ feedbackFontSizeLarge: string;
810
+ labelFontSizeLeftSmall: string;
811
+ labelFontSizeLeftMedium: string;
812
+ labelFontSizeLeftLarge: string;
813
+ labelFontSizeTopSmall: string;
814
+ labelFontSizeTopMedium: string;
815
+ labelFontSizeTopLarge: string;
816
+ labelHeightSmall: string;
817
+ labelHeightMedium: string;
818
+ labelHeightLarge: string;
819
+ labelPaddingVertical: string;
820
+ labelPaddingHorizontal: string;
821
+ labelTextAlignVertical: string;
822
+ labelTextAlignHorizontal: string;
823
+ }, any>>>;
824
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
825
+ blankHeightSmall: string;
826
+ blankHeightMedium: string;
827
+ blankHeightLarge: string;
828
+ lineHeight: string;
829
+ labelTextColor: string;
830
+ asteriskColor: string;
831
+ feedbackTextColorError: string;
832
+ feedbackTextColorWarning: string;
833
+ feedbackTextColor: string;
834
+ feedbackPadding: string;
835
+ feedbackHeightSmall: string;
836
+ feedbackHeightMedium: string;
837
+ feedbackHeightLarge: string;
838
+ feedbackFontSizeSmall: string;
839
+ feedbackFontSizeMedium: string;
840
+ feedbackFontSizeLarge: string;
841
+ labelFontSizeLeftSmall: string;
842
+ labelFontSizeLeftMedium: string;
843
+ labelFontSizeLeftLarge: string;
844
+ labelFontSizeTopSmall: string;
845
+ labelFontSizeTopMedium: string;
846
+ labelFontSizeTopLarge: string;
847
+ labelHeightSmall: string;
848
+ labelHeightMedium: string;
849
+ labelHeightLarge: string;
850
+ labelPaddingVertical: string;
851
+ labelPaddingHorizontal: string;
852
+ labelTextAlignVertical: string;
853
+ labelTextAlignHorizontal: string;
854
+ }, any>>>;
855
+ }, {
856
+ cssVars: import("vue").ComputedRef<{
857
+ '--n-bezier': string;
858
+ '--n-line-height': string;
859
+ '--n-blank-height': string;
860
+ '--n-label-font-size': string;
861
+ '--n-label-text-align': string;
862
+ '--n-label-height': string;
863
+ '--n-label-padding': string;
864
+ '--n-asterisk-color': string;
865
+ '--n-label-text-color': string;
866
+ '--n-feedback-padding': string;
867
+ '--n-feedback-font-size': string;
868
+ '--n-feedback-height': string;
869
+ '--n-feedback-text-color': string;
870
+ '--n-feedback-text-color-warning': string;
871
+ '--n-feedback-text-color-error': string;
872
+ }> | undefined;
873
+ themeClass: import("vue").Ref<string>;
874
+ onRender: () => void;
875
+ validate: import("naive-ui/es/form/src/interface").FormItemValidate;
876
+ restoreValidation: () => void;
877
+ path?: string | undefined;
878
+ internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
879
+ mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").Size>;
880
+ validationErrored: import("vue").Ref<boolean>;
881
+ mergedLabelStyle: import("vue").ComputedRef<(import("vue").StyleValue | undefined)[]>;
882
+ mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelPlacement>;
883
+ mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelAlign | undefined>;
884
+ mergedShowRequireMark: import("vue").ComputedRef<boolean | undefined>;
885
+ mergedRequireMarkPlacement: import("vue").ComputedRef<"left" | "right" | "right-hanging">;
886
+ mergedValidationStatus: import("vue").ComputedRef<"success" | "error" | "warning" | undefined>;
887
+ mergedShowFeedback: import("vue").ComputedRef<boolean>;
888
+ mergedShowLabel: import("vue").ComputedRef<boolean>;
889
+ isAutoLabelWidth: import("vue").ComputedRef<boolean>;
890
+ labelElementRef: import("vue").Ref<HTMLLabelElement | null>;
891
+ mergedClsPrefix: import("vue").ComputedRef<string>;
892
+ mergedRequired: import("vue").ComputedRef<boolean>;
893
+ feedbackId: import("vue").Ref<string>;
894
+ renderExplains: import("vue").Ref<{
895
+ key: string;
896
+ render: () => import("vue").VNodeChild;
897
+ }[]>;
898
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
899
+ readonly label: StringConstructor;
900
+ readonly labelWidth: PropType<string | number>;
901
+ readonly labelStyle: PropType<string | import("vue").CSSProperties>;
902
+ readonly labelAlign: PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
903
+ readonly labelPlacement: PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
904
+ readonly path: StringConstructor;
905
+ readonly first: BooleanConstructor;
906
+ readonly rulePath: StringConstructor;
907
+ readonly required: BooleanConstructor;
908
+ readonly showRequireMark: {
909
+ readonly type: PropType<boolean | undefined>;
910
+ readonly default: undefined;
911
+ };
912
+ readonly requireMarkPlacement: PropType<"left" | "right" | "right-hanging">;
913
+ readonly showFeedback: {
914
+ readonly type: PropType<boolean | undefined>;
915
+ readonly default: undefined;
916
+ };
917
+ readonly rule: PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
918
+ readonly size: PropType<"small" | "medium" | "large">;
919
+ readonly ignorePathChange: BooleanConstructor;
920
+ readonly validationStatus: PropType<"success" | "error" | "warning">;
921
+ readonly feedback: StringConstructor;
922
+ readonly showLabel: {
923
+ readonly type: PropType<boolean | undefined>;
924
+ readonly default: undefined;
925
+ };
926
+ readonly labelProps: PropType<import("vue").LabelHTMLAttributes>;
927
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Form", {
928
+ blankHeightSmall: string;
929
+ blankHeightMedium: string;
930
+ blankHeightLarge: string;
931
+ lineHeight: string;
932
+ labelTextColor: string;
933
+ asteriskColor: string;
934
+ feedbackTextColorError: string;
935
+ feedbackTextColorWarning: string;
936
+ feedbackTextColor: string;
937
+ feedbackPadding: string;
938
+ feedbackHeightSmall: string;
939
+ feedbackHeightMedium: string;
940
+ feedbackHeightLarge: string;
941
+ feedbackFontSizeSmall: string;
942
+ feedbackFontSizeMedium: string;
943
+ feedbackFontSizeLarge: string;
944
+ labelFontSizeLeftSmall: string;
945
+ labelFontSizeLeftMedium: string;
946
+ labelFontSizeLeftLarge: string;
947
+ labelFontSizeTopSmall: string;
948
+ labelFontSizeTopMedium: string;
949
+ labelFontSizeTopLarge: string;
950
+ labelHeightSmall: string;
951
+ labelHeightMedium: string;
952
+ labelHeightLarge: string;
953
+ labelPaddingVertical: string;
954
+ labelPaddingHorizontal: string;
955
+ labelTextAlignVertical: string;
956
+ labelTextAlignHorizontal: string;
957
+ }, any>>;
958
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
959
+ blankHeightSmall: string;
960
+ blankHeightMedium: string;
961
+ blankHeightLarge: string;
962
+ lineHeight: string;
963
+ labelTextColor: string;
964
+ asteriskColor: string;
965
+ feedbackTextColorError: string;
966
+ feedbackTextColorWarning: string;
967
+ feedbackTextColor: string;
968
+ feedbackPadding: string;
969
+ feedbackHeightSmall: string;
970
+ feedbackHeightMedium: string;
971
+ feedbackHeightLarge: string;
972
+ feedbackFontSizeSmall: string;
973
+ feedbackFontSizeMedium: string;
974
+ feedbackFontSizeLarge: string;
975
+ labelFontSizeLeftSmall: string;
976
+ labelFontSizeLeftMedium: string;
977
+ labelFontSizeLeftLarge: string;
978
+ labelFontSizeTopSmall: string;
979
+ labelFontSizeTopMedium: string;
980
+ labelFontSizeTopLarge: string;
981
+ labelHeightSmall: string;
982
+ labelHeightMedium: string;
983
+ labelHeightLarge: string;
984
+ labelPaddingVertical: string;
985
+ labelPaddingHorizontal: string;
986
+ labelTextAlignVertical: string;
987
+ labelTextAlignHorizontal: string;
988
+ }, any>>>;
989
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
990
+ blankHeightSmall: string;
991
+ blankHeightMedium: string;
992
+ blankHeightLarge: string;
993
+ lineHeight: string;
994
+ labelTextColor: string;
995
+ asteriskColor: string;
996
+ feedbackTextColorError: string;
997
+ feedbackTextColorWarning: string;
998
+ feedbackTextColor: string;
999
+ feedbackPadding: string;
1000
+ feedbackHeightSmall: string;
1001
+ feedbackHeightMedium: string;
1002
+ feedbackHeightLarge: string;
1003
+ feedbackFontSizeSmall: string;
1004
+ feedbackFontSizeMedium: string;
1005
+ feedbackFontSizeLarge: string;
1006
+ labelFontSizeLeftSmall: string;
1007
+ labelFontSizeLeftMedium: string;
1008
+ labelFontSizeLeftLarge: string;
1009
+ labelFontSizeTopSmall: string;
1010
+ labelFontSizeTopMedium: string;
1011
+ labelFontSizeTopLarge: string;
1012
+ labelHeightSmall: string;
1013
+ labelHeightMedium: string;
1014
+ labelHeightLarge: string;
1015
+ labelPaddingVertical: string;
1016
+ labelPaddingHorizontal: string;
1017
+ labelTextAlignVertical: string;
1018
+ labelTextAlignHorizontal: string;
1019
+ }, any>>>;
1020
+ }>>, {
1021
+ readonly required: boolean;
1022
+ readonly first: boolean;
1023
+ readonly showRequireMark: boolean | undefined;
1024
+ readonly showFeedback: boolean | undefined;
1025
+ readonly showLabel: boolean | undefined;
1026
+ readonly ignorePathChange: boolean;
1027
+ }>;
1028
+ NUpload: any;
1029
+ NUploadDragger: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1030
+ NP: import("vue").DefineComponent<{
1031
+ depth: PropType<2 | 1 | "1" | "2" | "3" | 3>;
1032
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1033
+ aTextColor: string;
1034
+ blockquoteTextColor: string;
1035
+ blockquotePrefixColor: string;
1036
+ blockquoteLineHeight: string;
1037
+ blockquoteFontSize: string;
1038
+ codeBorderRadius: string;
1039
+ liTextColor: string;
1040
+ liLineHeight: string;
1041
+ liFontSize: string;
1042
+ hrColor: string;
1043
+ headerFontWeight: string;
1044
+ headerTextColor: string;
1045
+ pTextColor: string;
1046
+ pTextColor1Depth: string;
1047
+ pTextColor2Depth: string;
1048
+ pTextColor3Depth: string;
1049
+ pLineHeight: string;
1050
+ pFontSize: string;
1051
+ headerBarColor: string;
1052
+ headerBarColorPrimary: string;
1053
+ headerBarColorInfo: string;
1054
+ headerBarColorError: string;
1055
+ headerBarColorWarning: string;
1056
+ headerBarColorSuccess: string;
1057
+ textColor: string;
1058
+ textColor1Depth: string;
1059
+ textColor2Depth: string;
1060
+ textColor3Depth: string;
1061
+ textColorPrimary: string;
1062
+ textColorInfo: string;
1063
+ textColorSuccess: string;
1064
+ textColorWarning: string;
1065
+ textColorError: string;
1066
+ codeTextColor: string;
1067
+ codeColor: string;
1068
+ codeBorder: string;
1069
+ headerFontSize1: string;
1070
+ headerFontSize2: string;
1071
+ headerFontSize3: string;
1072
+ headerFontSize4: string;
1073
+ headerFontSize5: string;
1074
+ headerFontSize6: string;
1075
+ headerMargin1: string;
1076
+ headerMargin2: string;
1077
+ headerMargin3: string;
1078
+ headerMargin4: string;
1079
+ headerMargin5: string;
1080
+ headerMargin6: string;
1081
+ headerPrefixWidth1: string;
1082
+ headerPrefixWidth2: string;
1083
+ headerPrefixWidth3: string;
1084
+ headerPrefixWidth4: string;
1085
+ headerPrefixWidth5: string;
1086
+ headerPrefixWidth6: string;
1087
+ headerBarWidth1: string;
1088
+ headerBarWidth2: string;
1089
+ headerBarWidth3: string;
1090
+ headerBarWidth4: string;
1091
+ headerBarWidth5: string;
1092
+ headerBarWidth6: string;
1093
+ pMargin: string;
1094
+ liMargin: string;
1095
+ olPadding: string;
1096
+ ulPadding: string;
1097
+ }, any>>;
1098
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1099
+ aTextColor: string;
1100
+ blockquoteTextColor: string;
1101
+ blockquotePrefixColor: string;
1102
+ blockquoteLineHeight: string;
1103
+ blockquoteFontSize: string;
1104
+ codeBorderRadius: string;
1105
+ liTextColor: string;
1106
+ liLineHeight: string;
1107
+ liFontSize: string;
1108
+ hrColor: string;
1109
+ headerFontWeight: string;
1110
+ headerTextColor: string;
1111
+ pTextColor: string;
1112
+ pTextColor1Depth: string;
1113
+ pTextColor2Depth: string;
1114
+ pTextColor3Depth: string;
1115
+ pLineHeight: string;
1116
+ pFontSize: string;
1117
+ headerBarColor: string;
1118
+ headerBarColorPrimary: string;
1119
+ headerBarColorInfo: string;
1120
+ headerBarColorError: string;
1121
+ headerBarColorWarning: string;
1122
+ headerBarColorSuccess: string;
1123
+ textColor: string;
1124
+ textColor1Depth: string;
1125
+ textColor2Depth: string;
1126
+ textColor3Depth: string;
1127
+ textColorPrimary: string;
1128
+ textColorInfo: string;
1129
+ textColorSuccess: string;
1130
+ textColorWarning: string;
1131
+ textColorError: string;
1132
+ codeTextColor: string;
1133
+ codeColor: string;
1134
+ codeBorder: string;
1135
+ headerFontSize1: string;
1136
+ headerFontSize2: string;
1137
+ headerFontSize3: string;
1138
+ headerFontSize4: string;
1139
+ headerFontSize5: string;
1140
+ headerFontSize6: string;
1141
+ headerMargin1: string;
1142
+ headerMargin2: string;
1143
+ headerMargin3: string;
1144
+ headerMargin4: string;
1145
+ headerMargin5: string;
1146
+ headerMargin6: string;
1147
+ headerPrefixWidth1: string;
1148
+ headerPrefixWidth2: string;
1149
+ headerPrefixWidth3: string;
1150
+ headerPrefixWidth4: string;
1151
+ headerPrefixWidth5: string;
1152
+ headerPrefixWidth6: string;
1153
+ headerBarWidth1: string;
1154
+ headerBarWidth2: string;
1155
+ headerBarWidth3: string;
1156
+ headerBarWidth4: string;
1157
+ headerBarWidth5: string;
1158
+ headerBarWidth6: string;
1159
+ pMargin: string;
1160
+ liMargin: string;
1161
+ olPadding: string;
1162
+ ulPadding: string;
1163
+ }, any>>>;
1164
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1165
+ aTextColor: string;
1166
+ blockquoteTextColor: string;
1167
+ blockquotePrefixColor: string;
1168
+ blockquoteLineHeight: string;
1169
+ blockquoteFontSize: string;
1170
+ codeBorderRadius: string;
1171
+ liTextColor: string;
1172
+ liLineHeight: string;
1173
+ liFontSize: string;
1174
+ hrColor: string;
1175
+ headerFontWeight: string;
1176
+ headerTextColor: string;
1177
+ pTextColor: string;
1178
+ pTextColor1Depth: string;
1179
+ pTextColor2Depth: string;
1180
+ pTextColor3Depth: string;
1181
+ pLineHeight: string;
1182
+ pFontSize: string;
1183
+ headerBarColor: string;
1184
+ headerBarColorPrimary: string;
1185
+ headerBarColorInfo: string;
1186
+ headerBarColorError: string;
1187
+ headerBarColorWarning: string;
1188
+ headerBarColorSuccess: string;
1189
+ textColor: string;
1190
+ textColor1Depth: string;
1191
+ textColor2Depth: string;
1192
+ textColor3Depth: string;
1193
+ textColorPrimary: string;
1194
+ textColorInfo: string;
1195
+ textColorSuccess: string;
1196
+ textColorWarning: string;
1197
+ textColorError: string;
1198
+ codeTextColor: string;
1199
+ codeColor: string;
1200
+ codeBorder: string;
1201
+ headerFontSize1: string;
1202
+ headerFontSize2: string;
1203
+ headerFontSize3: string;
1204
+ headerFontSize4: string;
1205
+ headerFontSize5: string;
1206
+ headerFontSize6: string;
1207
+ headerMargin1: string;
1208
+ headerMargin2: string;
1209
+ headerMargin3: string;
1210
+ headerMargin4: string;
1211
+ headerMargin5: string;
1212
+ headerMargin6: string;
1213
+ headerPrefixWidth1: string;
1214
+ headerPrefixWidth2: string;
1215
+ headerPrefixWidth3: string;
1216
+ headerPrefixWidth4: string;
1217
+ headerPrefixWidth5: string;
1218
+ headerPrefixWidth6: string;
1219
+ headerBarWidth1: string;
1220
+ headerBarWidth2: string;
1221
+ headerBarWidth3: string;
1222
+ headerBarWidth4: string;
1223
+ headerBarWidth5: string;
1224
+ headerBarWidth6: string;
1225
+ pMargin: string;
1226
+ liMargin: string;
1227
+ olPadding: string;
1228
+ ulPadding: string;
1229
+ }, any>>>;
1230
+ }, {
1231
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1232
+ cssVars: import("vue").ComputedRef<{
1233
+ '--n-bezier': string;
1234
+ '--n-font-size': string;
1235
+ '--n-line-height': string;
1236
+ '--n-margin': string;
1237
+ '--n-text-color': string;
1238
+ }> | undefined;
1239
+ themeClass: import("vue").Ref<string> | undefined;
1240
+ onRender: (() => void) | undefined;
1241
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1242
+ depth: PropType<2 | 1 | "1" | "2" | "3" | 3>;
1243
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1244
+ aTextColor: string;
1245
+ blockquoteTextColor: string;
1246
+ blockquotePrefixColor: string;
1247
+ blockquoteLineHeight: string;
1248
+ blockquoteFontSize: string;
1249
+ codeBorderRadius: string;
1250
+ liTextColor: string;
1251
+ liLineHeight: string;
1252
+ liFontSize: string;
1253
+ hrColor: string;
1254
+ headerFontWeight: string;
1255
+ headerTextColor: string;
1256
+ pTextColor: string;
1257
+ pTextColor1Depth: string;
1258
+ pTextColor2Depth: string;
1259
+ pTextColor3Depth: string;
1260
+ pLineHeight: string;
1261
+ pFontSize: string;
1262
+ headerBarColor: string;
1263
+ headerBarColorPrimary: string;
1264
+ headerBarColorInfo: string;
1265
+ headerBarColorError: string;
1266
+ headerBarColorWarning: string;
1267
+ headerBarColorSuccess: string;
1268
+ textColor: string;
1269
+ textColor1Depth: string;
1270
+ textColor2Depth: string;
1271
+ textColor3Depth: string;
1272
+ textColorPrimary: string;
1273
+ textColorInfo: string;
1274
+ textColorSuccess: string;
1275
+ textColorWarning: string;
1276
+ textColorError: string;
1277
+ codeTextColor: string;
1278
+ codeColor: string;
1279
+ codeBorder: string;
1280
+ headerFontSize1: string;
1281
+ headerFontSize2: string;
1282
+ headerFontSize3: string;
1283
+ headerFontSize4: string;
1284
+ headerFontSize5: string;
1285
+ headerFontSize6: string;
1286
+ headerMargin1: string;
1287
+ headerMargin2: string;
1288
+ headerMargin3: string;
1289
+ headerMargin4: string;
1290
+ headerMargin5: string;
1291
+ headerMargin6: string;
1292
+ headerPrefixWidth1: string;
1293
+ headerPrefixWidth2: string;
1294
+ headerPrefixWidth3: string;
1295
+ headerPrefixWidth4: string;
1296
+ headerPrefixWidth5: string;
1297
+ headerPrefixWidth6: string;
1298
+ headerBarWidth1: string;
1299
+ headerBarWidth2: string;
1300
+ headerBarWidth3: string;
1301
+ headerBarWidth4: string;
1302
+ headerBarWidth5: string;
1303
+ headerBarWidth6: string;
1304
+ pMargin: string;
1305
+ liMargin: string;
1306
+ olPadding: string;
1307
+ ulPadding: string;
1308
+ }, any>>;
1309
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1310
+ aTextColor: string;
1311
+ blockquoteTextColor: string;
1312
+ blockquotePrefixColor: string;
1313
+ blockquoteLineHeight: string;
1314
+ blockquoteFontSize: string;
1315
+ codeBorderRadius: string;
1316
+ liTextColor: string;
1317
+ liLineHeight: string;
1318
+ liFontSize: string;
1319
+ hrColor: string;
1320
+ headerFontWeight: string;
1321
+ headerTextColor: string;
1322
+ pTextColor: string;
1323
+ pTextColor1Depth: string;
1324
+ pTextColor2Depth: string;
1325
+ pTextColor3Depth: string;
1326
+ pLineHeight: string;
1327
+ pFontSize: string;
1328
+ headerBarColor: string;
1329
+ headerBarColorPrimary: string;
1330
+ headerBarColorInfo: string;
1331
+ headerBarColorError: string;
1332
+ headerBarColorWarning: string;
1333
+ headerBarColorSuccess: string;
1334
+ textColor: string;
1335
+ textColor1Depth: string;
1336
+ textColor2Depth: string;
1337
+ textColor3Depth: string;
1338
+ textColorPrimary: string;
1339
+ textColorInfo: string;
1340
+ textColorSuccess: string;
1341
+ textColorWarning: string;
1342
+ textColorError: string;
1343
+ codeTextColor: string;
1344
+ codeColor: string;
1345
+ codeBorder: string;
1346
+ headerFontSize1: string;
1347
+ headerFontSize2: string;
1348
+ headerFontSize3: string;
1349
+ headerFontSize4: string;
1350
+ headerFontSize5: string;
1351
+ headerFontSize6: string;
1352
+ headerMargin1: string;
1353
+ headerMargin2: string;
1354
+ headerMargin3: string;
1355
+ headerMargin4: string;
1356
+ headerMargin5: string;
1357
+ headerMargin6: string;
1358
+ headerPrefixWidth1: string;
1359
+ headerPrefixWidth2: string;
1360
+ headerPrefixWidth3: string;
1361
+ headerPrefixWidth4: string;
1362
+ headerPrefixWidth5: string;
1363
+ headerPrefixWidth6: string;
1364
+ headerBarWidth1: string;
1365
+ headerBarWidth2: string;
1366
+ headerBarWidth3: string;
1367
+ headerBarWidth4: string;
1368
+ headerBarWidth5: string;
1369
+ headerBarWidth6: string;
1370
+ pMargin: string;
1371
+ liMargin: string;
1372
+ olPadding: string;
1373
+ ulPadding: string;
1374
+ }, any>>>;
1375
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1376
+ aTextColor: string;
1377
+ blockquoteTextColor: string;
1378
+ blockquotePrefixColor: string;
1379
+ blockquoteLineHeight: string;
1380
+ blockquoteFontSize: string;
1381
+ codeBorderRadius: string;
1382
+ liTextColor: string;
1383
+ liLineHeight: string;
1384
+ liFontSize: string;
1385
+ hrColor: string;
1386
+ headerFontWeight: string;
1387
+ headerTextColor: string;
1388
+ pTextColor: string;
1389
+ pTextColor1Depth: string;
1390
+ pTextColor2Depth: string;
1391
+ pTextColor3Depth: string;
1392
+ pLineHeight: string;
1393
+ pFontSize: string;
1394
+ headerBarColor: string;
1395
+ headerBarColorPrimary: string;
1396
+ headerBarColorInfo: string;
1397
+ headerBarColorError: string;
1398
+ headerBarColorWarning: string;
1399
+ headerBarColorSuccess: string;
1400
+ textColor: string;
1401
+ textColor1Depth: string;
1402
+ textColor2Depth: string;
1403
+ textColor3Depth: string;
1404
+ textColorPrimary: string;
1405
+ textColorInfo: string;
1406
+ textColorSuccess: string;
1407
+ textColorWarning: string;
1408
+ textColorError: string;
1409
+ codeTextColor: string;
1410
+ codeColor: string;
1411
+ codeBorder: string;
1412
+ headerFontSize1: string;
1413
+ headerFontSize2: string;
1414
+ headerFontSize3: string;
1415
+ headerFontSize4: string;
1416
+ headerFontSize5: string;
1417
+ headerFontSize6: string;
1418
+ headerMargin1: string;
1419
+ headerMargin2: string;
1420
+ headerMargin3: string;
1421
+ headerMargin4: string;
1422
+ headerMargin5: string;
1423
+ headerMargin6: string;
1424
+ headerPrefixWidth1: string;
1425
+ headerPrefixWidth2: string;
1426
+ headerPrefixWidth3: string;
1427
+ headerPrefixWidth4: string;
1428
+ headerPrefixWidth5: string;
1429
+ headerPrefixWidth6: string;
1430
+ headerBarWidth1: string;
1431
+ headerBarWidth2: string;
1432
+ headerBarWidth3: string;
1433
+ headerBarWidth4: string;
1434
+ headerBarWidth5: string;
1435
+ headerBarWidth6: string;
1436
+ pMargin: string;
1437
+ liMargin: string;
1438
+ olPadding: string;
1439
+ ulPadding: string;
1440
+ }, any>>>;
1441
+ }>>, {}>;
1442
+ NIcon: any;
1443
+ NText: import("vue").DefineComponent<{
1444
+ readonly code: BooleanConstructor;
1445
+ readonly type: {
1446
+ readonly type: StringConstructor;
1447
+ readonly default: "default";
1448
+ };
1449
+ readonly delete: BooleanConstructor;
1450
+ readonly strong: BooleanConstructor;
1451
+ readonly italic: BooleanConstructor;
1452
+ readonly underline: BooleanConstructor;
1453
+ readonly depth: PropType<2 | 1 | "1" | "2" | "3" | 3>;
1454
+ readonly tag: StringConstructor;
1455
+ readonly as: {
1456
+ readonly type: StringConstructor;
1457
+ readonly validator: () => boolean;
1458
+ readonly default: undefined;
1459
+ };
1460
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1461
+ aTextColor: string;
1462
+ blockquoteTextColor: string;
1463
+ blockquotePrefixColor: string;
1464
+ blockquoteLineHeight: string;
1465
+ blockquoteFontSize: string;
1466
+ codeBorderRadius: string;
1467
+ liTextColor: string;
1468
+ liLineHeight: string;
1469
+ liFontSize: string;
1470
+ hrColor: string;
1471
+ headerFontWeight: string;
1472
+ headerTextColor: string;
1473
+ pTextColor: string;
1474
+ pTextColor1Depth: string;
1475
+ pTextColor2Depth: string;
1476
+ pTextColor3Depth: string;
1477
+ pLineHeight: string;
1478
+ pFontSize: string;
1479
+ headerBarColor: string;
1480
+ headerBarColorPrimary: string;
1481
+ headerBarColorInfo: string;
1482
+ headerBarColorError: string;
1483
+ headerBarColorWarning: string;
1484
+ headerBarColorSuccess: string;
1485
+ textColor: string;
1486
+ textColor1Depth: string;
1487
+ textColor2Depth: string;
1488
+ textColor3Depth: string;
1489
+ textColorPrimary: string;
1490
+ textColorInfo: string;
1491
+ textColorSuccess: string;
1492
+ textColorWarning: string;
1493
+ textColorError: string;
1494
+ codeTextColor: string;
1495
+ codeColor: string;
1496
+ codeBorder: string;
1497
+ headerFontSize1: string;
1498
+ headerFontSize2: string;
1499
+ headerFontSize3: string;
1500
+ headerFontSize4: string;
1501
+ headerFontSize5: string;
1502
+ headerFontSize6: string;
1503
+ headerMargin1: string;
1504
+ headerMargin2: string;
1505
+ headerMargin3: string;
1506
+ headerMargin4: string;
1507
+ headerMargin5: string;
1508
+ headerMargin6: string;
1509
+ headerPrefixWidth1: string;
1510
+ headerPrefixWidth2: string;
1511
+ headerPrefixWidth3: string;
1512
+ headerPrefixWidth4: string;
1513
+ headerPrefixWidth5: string;
1514
+ headerPrefixWidth6: string;
1515
+ headerBarWidth1: string;
1516
+ headerBarWidth2: string;
1517
+ headerBarWidth3: string;
1518
+ headerBarWidth4: string;
1519
+ headerBarWidth5: string;
1520
+ headerBarWidth6: string;
1521
+ pMargin: string;
1522
+ liMargin: string;
1523
+ olPadding: string;
1524
+ ulPadding: string;
1525
+ }, any>>;
1526
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1527
+ aTextColor: string;
1528
+ blockquoteTextColor: string;
1529
+ blockquotePrefixColor: string;
1530
+ blockquoteLineHeight: string;
1531
+ blockquoteFontSize: string;
1532
+ codeBorderRadius: string;
1533
+ liTextColor: string;
1534
+ liLineHeight: string;
1535
+ liFontSize: string;
1536
+ hrColor: string;
1537
+ headerFontWeight: string;
1538
+ headerTextColor: string;
1539
+ pTextColor: string;
1540
+ pTextColor1Depth: string;
1541
+ pTextColor2Depth: string;
1542
+ pTextColor3Depth: string;
1543
+ pLineHeight: string;
1544
+ pFontSize: string;
1545
+ headerBarColor: string;
1546
+ headerBarColorPrimary: string;
1547
+ headerBarColorInfo: string;
1548
+ headerBarColorError: string;
1549
+ headerBarColorWarning: string;
1550
+ headerBarColorSuccess: string;
1551
+ textColor: string;
1552
+ textColor1Depth: string;
1553
+ textColor2Depth: string;
1554
+ textColor3Depth: string;
1555
+ textColorPrimary: string;
1556
+ textColorInfo: string;
1557
+ textColorSuccess: string;
1558
+ textColorWarning: string;
1559
+ textColorError: string;
1560
+ codeTextColor: string;
1561
+ codeColor: string;
1562
+ codeBorder: string;
1563
+ headerFontSize1: string;
1564
+ headerFontSize2: string;
1565
+ headerFontSize3: string;
1566
+ headerFontSize4: string;
1567
+ headerFontSize5: string;
1568
+ headerFontSize6: string;
1569
+ headerMargin1: string;
1570
+ headerMargin2: string;
1571
+ headerMargin3: string;
1572
+ headerMargin4: string;
1573
+ headerMargin5: string;
1574
+ headerMargin6: string;
1575
+ headerPrefixWidth1: string;
1576
+ headerPrefixWidth2: string;
1577
+ headerPrefixWidth3: string;
1578
+ headerPrefixWidth4: string;
1579
+ headerPrefixWidth5: string;
1580
+ headerPrefixWidth6: string;
1581
+ headerBarWidth1: string;
1582
+ headerBarWidth2: string;
1583
+ headerBarWidth3: string;
1584
+ headerBarWidth4: string;
1585
+ headerBarWidth5: string;
1586
+ headerBarWidth6: string;
1587
+ pMargin: string;
1588
+ liMargin: string;
1589
+ olPadding: string;
1590
+ ulPadding: string;
1591
+ }, any>>>;
1592
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1593
+ aTextColor: string;
1594
+ blockquoteTextColor: string;
1595
+ blockquotePrefixColor: string;
1596
+ blockquoteLineHeight: string;
1597
+ blockquoteFontSize: string;
1598
+ codeBorderRadius: string;
1599
+ liTextColor: string;
1600
+ liLineHeight: string;
1601
+ liFontSize: string;
1602
+ hrColor: string;
1603
+ headerFontWeight: string;
1604
+ headerTextColor: string;
1605
+ pTextColor: string;
1606
+ pTextColor1Depth: string;
1607
+ pTextColor2Depth: string;
1608
+ pTextColor3Depth: string;
1609
+ pLineHeight: string;
1610
+ pFontSize: string;
1611
+ headerBarColor: string;
1612
+ headerBarColorPrimary: string;
1613
+ headerBarColorInfo: string;
1614
+ headerBarColorError: string;
1615
+ headerBarColorWarning: string;
1616
+ headerBarColorSuccess: string;
1617
+ textColor: string;
1618
+ textColor1Depth: string;
1619
+ textColor2Depth: string;
1620
+ textColor3Depth: string;
1621
+ textColorPrimary: string;
1622
+ textColorInfo: string;
1623
+ textColorSuccess: string;
1624
+ textColorWarning: string;
1625
+ textColorError: string;
1626
+ codeTextColor: string;
1627
+ codeColor: string;
1628
+ codeBorder: string;
1629
+ headerFontSize1: string;
1630
+ headerFontSize2: string;
1631
+ headerFontSize3: string;
1632
+ headerFontSize4: string;
1633
+ headerFontSize5: string;
1634
+ headerFontSize6: string;
1635
+ headerMargin1: string;
1636
+ headerMargin2: string;
1637
+ headerMargin3: string;
1638
+ headerMargin4: string;
1639
+ headerMargin5: string;
1640
+ headerMargin6: string;
1641
+ headerPrefixWidth1: string;
1642
+ headerPrefixWidth2: string;
1643
+ headerPrefixWidth3: string;
1644
+ headerPrefixWidth4: string;
1645
+ headerPrefixWidth5: string;
1646
+ headerPrefixWidth6: string;
1647
+ headerBarWidth1: string;
1648
+ headerBarWidth2: string;
1649
+ headerBarWidth3: string;
1650
+ headerBarWidth4: string;
1651
+ headerBarWidth5: string;
1652
+ headerBarWidth6: string;
1653
+ pMargin: string;
1654
+ liMargin: string;
1655
+ olPadding: string;
1656
+ ulPadding: string;
1657
+ }, any>>>;
1658
+ }, {
1659
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1660
+ compitableTag: import("vue").ComputedRef<string | undefined>;
1661
+ cssVars: import("vue").ComputedRef<{
1662
+ '--n-bezier': string;
1663
+ '--n-text-color': string;
1664
+ '--n-font-weight-strong': string;
1665
+ '--n-font-famliy-mono': string;
1666
+ '--n-code-border-radius': string;
1667
+ '--n-code-text-color': string;
1668
+ '--n-code-color': string;
1669
+ '--n-code-border': string;
1670
+ }> | undefined;
1671
+ themeClass: import("vue").Ref<string> | undefined;
1672
+ onRender: (() => void) | undefined;
1673
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1674
+ readonly code: BooleanConstructor;
1675
+ readonly type: {
1676
+ readonly type: StringConstructor;
1677
+ readonly default: "default";
1678
+ };
1679
+ readonly delete: BooleanConstructor;
1680
+ readonly strong: BooleanConstructor;
1681
+ readonly italic: BooleanConstructor;
1682
+ readonly underline: BooleanConstructor;
1683
+ readonly depth: PropType<2 | 1 | "1" | "2" | "3" | 3>;
1684
+ readonly tag: StringConstructor;
1685
+ readonly as: {
1686
+ readonly type: StringConstructor;
1687
+ readonly validator: () => boolean;
1688
+ readonly default: undefined;
1689
+ };
1690
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1691
+ aTextColor: string;
1692
+ blockquoteTextColor: string;
1693
+ blockquotePrefixColor: string;
1694
+ blockquoteLineHeight: string;
1695
+ blockquoteFontSize: string;
1696
+ codeBorderRadius: string;
1697
+ liTextColor: string;
1698
+ liLineHeight: string;
1699
+ liFontSize: string;
1700
+ hrColor: string;
1701
+ headerFontWeight: string;
1702
+ headerTextColor: string;
1703
+ pTextColor: string;
1704
+ pTextColor1Depth: string;
1705
+ pTextColor2Depth: string;
1706
+ pTextColor3Depth: string;
1707
+ pLineHeight: string;
1708
+ pFontSize: string;
1709
+ headerBarColor: string;
1710
+ headerBarColorPrimary: string;
1711
+ headerBarColorInfo: string;
1712
+ headerBarColorError: string;
1713
+ headerBarColorWarning: string;
1714
+ headerBarColorSuccess: string;
1715
+ textColor: string;
1716
+ textColor1Depth: string;
1717
+ textColor2Depth: string;
1718
+ textColor3Depth: string;
1719
+ textColorPrimary: string;
1720
+ textColorInfo: string;
1721
+ textColorSuccess: string;
1722
+ textColorWarning: string;
1723
+ textColorError: string;
1724
+ codeTextColor: string;
1725
+ codeColor: string;
1726
+ codeBorder: string;
1727
+ headerFontSize1: string;
1728
+ headerFontSize2: string;
1729
+ headerFontSize3: string;
1730
+ headerFontSize4: string;
1731
+ headerFontSize5: string;
1732
+ headerFontSize6: string;
1733
+ headerMargin1: string;
1734
+ headerMargin2: string;
1735
+ headerMargin3: string;
1736
+ headerMargin4: string;
1737
+ headerMargin5: string;
1738
+ headerMargin6: string;
1739
+ headerPrefixWidth1: string;
1740
+ headerPrefixWidth2: string;
1741
+ headerPrefixWidth3: string;
1742
+ headerPrefixWidth4: string;
1743
+ headerPrefixWidth5: string;
1744
+ headerPrefixWidth6: string;
1745
+ headerBarWidth1: string;
1746
+ headerBarWidth2: string;
1747
+ headerBarWidth3: string;
1748
+ headerBarWidth4: string;
1749
+ headerBarWidth5: string;
1750
+ headerBarWidth6: string;
1751
+ pMargin: string;
1752
+ liMargin: string;
1753
+ olPadding: string;
1754
+ ulPadding: string;
1755
+ }, any>>;
1756
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1757
+ aTextColor: string;
1758
+ blockquoteTextColor: string;
1759
+ blockquotePrefixColor: string;
1760
+ blockquoteLineHeight: string;
1761
+ blockquoteFontSize: string;
1762
+ codeBorderRadius: string;
1763
+ liTextColor: string;
1764
+ liLineHeight: string;
1765
+ liFontSize: string;
1766
+ hrColor: string;
1767
+ headerFontWeight: string;
1768
+ headerTextColor: string;
1769
+ pTextColor: string;
1770
+ pTextColor1Depth: string;
1771
+ pTextColor2Depth: string;
1772
+ pTextColor3Depth: string;
1773
+ pLineHeight: string;
1774
+ pFontSize: string;
1775
+ headerBarColor: string;
1776
+ headerBarColorPrimary: string;
1777
+ headerBarColorInfo: string;
1778
+ headerBarColorError: string;
1779
+ headerBarColorWarning: string;
1780
+ headerBarColorSuccess: string;
1781
+ textColor: string;
1782
+ textColor1Depth: string;
1783
+ textColor2Depth: string;
1784
+ textColor3Depth: string;
1785
+ textColorPrimary: string;
1786
+ textColorInfo: string;
1787
+ textColorSuccess: string;
1788
+ textColorWarning: string;
1789
+ textColorError: string;
1790
+ codeTextColor: string;
1791
+ codeColor: string;
1792
+ codeBorder: string;
1793
+ headerFontSize1: string;
1794
+ headerFontSize2: string;
1795
+ headerFontSize3: string;
1796
+ headerFontSize4: string;
1797
+ headerFontSize5: string;
1798
+ headerFontSize6: string;
1799
+ headerMargin1: string;
1800
+ headerMargin2: string;
1801
+ headerMargin3: string;
1802
+ headerMargin4: string;
1803
+ headerMargin5: string;
1804
+ headerMargin6: string;
1805
+ headerPrefixWidth1: string;
1806
+ headerPrefixWidth2: string;
1807
+ headerPrefixWidth3: string;
1808
+ headerPrefixWidth4: string;
1809
+ headerPrefixWidth5: string;
1810
+ headerPrefixWidth6: string;
1811
+ headerBarWidth1: string;
1812
+ headerBarWidth2: string;
1813
+ headerBarWidth3: string;
1814
+ headerBarWidth4: string;
1815
+ headerBarWidth5: string;
1816
+ headerBarWidth6: string;
1817
+ pMargin: string;
1818
+ liMargin: string;
1819
+ olPadding: string;
1820
+ ulPadding: string;
1821
+ }, any>>>;
1822
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1823
+ aTextColor: string;
1824
+ blockquoteTextColor: string;
1825
+ blockquotePrefixColor: string;
1826
+ blockquoteLineHeight: string;
1827
+ blockquoteFontSize: string;
1828
+ codeBorderRadius: string;
1829
+ liTextColor: string;
1830
+ liLineHeight: string;
1831
+ liFontSize: string;
1832
+ hrColor: string;
1833
+ headerFontWeight: string;
1834
+ headerTextColor: string;
1835
+ pTextColor: string;
1836
+ pTextColor1Depth: string;
1837
+ pTextColor2Depth: string;
1838
+ pTextColor3Depth: string;
1839
+ pLineHeight: string;
1840
+ pFontSize: string;
1841
+ headerBarColor: string;
1842
+ headerBarColorPrimary: string;
1843
+ headerBarColorInfo: string;
1844
+ headerBarColorError: string;
1845
+ headerBarColorWarning: string;
1846
+ headerBarColorSuccess: string;
1847
+ textColor: string;
1848
+ textColor1Depth: string;
1849
+ textColor2Depth: string;
1850
+ textColor3Depth: string;
1851
+ textColorPrimary: string;
1852
+ textColorInfo: string;
1853
+ textColorSuccess: string;
1854
+ textColorWarning: string;
1855
+ textColorError: string;
1856
+ codeTextColor: string;
1857
+ codeColor: string;
1858
+ codeBorder: string;
1859
+ headerFontSize1: string;
1860
+ headerFontSize2: string;
1861
+ headerFontSize3: string;
1862
+ headerFontSize4: string;
1863
+ headerFontSize5: string;
1864
+ headerFontSize6: string;
1865
+ headerMargin1: string;
1866
+ headerMargin2: string;
1867
+ headerMargin3: string;
1868
+ headerMargin4: string;
1869
+ headerMargin5: string;
1870
+ headerMargin6: string;
1871
+ headerPrefixWidth1: string;
1872
+ headerPrefixWidth2: string;
1873
+ headerPrefixWidth3: string;
1874
+ headerPrefixWidth4: string;
1875
+ headerPrefixWidth5: string;
1876
+ headerPrefixWidth6: string;
1877
+ headerBarWidth1: string;
1878
+ headerBarWidth2: string;
1879
+ headerBarWidth3: string;
1880
+ headerBarWidth4: string;
1881
+ headerBarWidth5: string;
1882
+ headerBarWidth6: string;
1883
+ pMargin: string;
1884
+ liMargin: string;
1885
+ olPadding: string;
1886
+ ulPadding: string;
1887
+ }, any>>>;
1888
+ }>>, {
1889
+ readonly type: string;
1890
+ readonly delete: boolean;
1891
+ readonly italic: boolean;
1892
+ readonly underline: boolean;
1893
+ readonly as: string;
1894
+ readonly code: boolean;
1895
+ readonly strong: boolean;
1896
+ }>;
1897
+ NSpace: any;
1898
+ Archive: 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<{}>>, {}>;
1899
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1900
+ formatId: {
1901
+ type: StringConstructor;
1902
+ required: false;
1903
+ };
1904
+ token: {
1905
+ type: StringConstructor;
1906
+ required: true;
1907
+ };
1908
+ }>>, {}>;
1909
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "update:modelValue")[], "close" | "success" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1910
+ verifyUser: {
1911
+ type: FunctionConstructor;
1912
+ required: false;
1913
+ default: () => Promise<void>;
1914
+ };
1915
+ identityVerificationTitle: {
1916
+ type: StringConstructor;
1917
+ required: false;
1918
+ default: string;
1919
+ };
1920
+ modelValue: {
1921
+ type: BooleanConstructor;
1922
+ required: true;
1923
+ };
1924
+ formatId: {
1925
+ type: StringConstructor;
1926
+ required: false;
1927
+ };
1928
+ templateId: {
1929
+ type: StringConstructor;
1930
+ required: false;
1931
+ };
1932
+ }>> & {
1933
+ onSuccess?: ((...args: any[]) => any) | undefined;
1934
+ onClose?: ((...args: any[]) => any) | undefined;
1935
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1936
+ }, {
1937
+ verifyUser: Function;
1938
+ identityVerificationTitle: string;
1939
+ }>;
1940
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1941
+ printParams: {
1942
+ type: PropType<AnyObject[]>;
1943
+ };
1944
+ params: {
1945
+ default: () => never[];
1946
+ type: PropType<AnyObject[]>;
1947
+ };
1948
+ btnText: {
1949
+ default: string;
1950
+ type: StringConstructor;
1951
+ };
1952
+ printText: {
1953
+ default: string;
1954
+ type: StringConstructor;
1955
+ };
1956
+ /**
1957
+ * 打印预览按钮文本
1958
+ */
1959
+ previewText: {
1960
+ default: string;
1961
+ type: StringConstructor;
1962
+ };
1963
+ pdfLoadText: {
1964
+ default: string;
1965
+ type: StringConstructor;
1966
+ };
1967
+ formatEditText: {
1968
+ default: string;
1969
+ type: StringConstructor;
1970
+ };
1971
+ prevFn: {
1972
+ default: () => Promise<void>;
1973
+ type: FunctionConstructor;
1974
+ };
1975
+ queryPrintFormatByNumber: {
1976
+ default: () => Promise<{}>;
1977
+ type: FunctionConstructor;
1978
+ };
1979
+ queryTemplateParams: {
1980
+ default: () => Promise<{}>;
1981
+ type: FunctionConstructor;
1982
+ };
1983
+ strategy: {
1984
+ default: string;
1985
+ type: StringConstructor;
1986
+ };
1987
+ clickPrevFn: {
1988
+ default: () => Promise<boolean>;
1989
+ type: FunctionConstructor;
1990
+ };
1991
+ noDataMsg: {
1992
+ default: string;
1993
+ type: StringConstructor;
1994
+ };
1995
+ token: {
1996
+ type: StringConstructor;
1997
+ };
1998
+ printdlgshow: {
1999
+ default: string;
2000
+ type: StringConstructor;
2001
+ };
2002
+ btnprint: {
2003
+ type: StringConstructor;
2004
+ default: string;
2005
+ };
2006
+ directPrint: {
2007
+ type: BooleanConstructor;
2008
+ default: boolean;
2009
+ };
2010
+ externalOptionConfig: {
2011
+ type: PropType<Partial<{
2012
+ options: AnyObject[];
2013
+ onSelect: (key: string | number, option: AnyObject) => void;
2014
+ }>>;
2015
+ default: () => {};
2016
+ };
2017
+ signature: {
2018
+ type: StringConstructor;
2019
+ };
2020
+ showLoading: {
2021
+ type: BooleanConstructor;
2022
+ default: boolean;
2023
+ };
2024
+ hideButtons: {
2025
+ type: ArrayConstructor;
2026
+ default: () => never[];
2027
+ };
2028
+ printCopies: {
2029
+ type: NumberConstructor;
2030
+ default: number;
2031
+ };
2032
+ newPrintSetting: {
2033
+ type: ObjectConstructor;
2034
+ default: () => {
2035
+ isShowPrintAll: boolean;
2036
+ isShowOutSetting: boolean;
2037
+ customProps: {};
2038
+ };
2039
+ };
2040
+ }>>, {
2041
+ params: AnyObject[];
2042
+ btnText: string;
2043
+ printText: string;
2044
+ previewText: string;
2045
+ pdfLoadText: string;
2046
+ formatEditText: string;
2047
+ prevFn: Function;
2048
+ queryPrintFormatByNumber: Function;
2049
+ queryTemplateParams: Function;
2050
+ strategy: string;
2051
+ clickPrevFn: Function;
2052
+ noDataMsg: string;
2053
+ printdlgshow: string;
2054
+ btnprint: string;
2055
+ directPrint: boolean;
2056
+ externalOptionConfig: Partial<{
2057
+ options: AnyObject[];
2058
+ onSelect: (key: string | number, option: AnyObject) => void;
2059
+ }>;
2060
+ showLoading: boolean;
2061
+ hideButtons: unknown[];
2062
+ printCopies: number;
2063
+ newPrintSetting: Record<string, any>;
2064
+ }>;
2065
+ export default _default;