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