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

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