cnhis-design-vue 3.1.30-beta.7 → 3.1.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/es/components/button-print/index.d.ts +1268 -0
  2. package/es/components/button-print/index.js +1 -0
  3. package/es/components/button-print/src/ButtonPrint.vue.d.ts +1269 -3
  4. package/es/components/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +86 -44
  5. package/es/components/button-print/src/components/IdentityVerification.js +42 -11
  6. package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +1253 -0
  7. package/es/components/button-print/src/components/edit.js +142 -0
  8. package/es/components/button-print/src/components/edit.vue.d.ts +1237 -0
  9. package/es/components/button-print/src/utils/browserPrint.d.ts +1 -0
  10. package/es/components/button-print/src/utils/browserPrint.js +40 -0
  11. package/es/components/button-print/src/utils/index.d.ts +1 -0
  12. package/es/components/button-print/src/utils/index.js +1 -0
  13. package/es/components/button-print/style/index.css +1 -1
  14. package/es/components/iho-table/index.d.ts +6 -2
  15. package/es/components/iho-table/index.js +1 -0
  16. package/es/components/iho-table/src/IhoTable.js +8 -4
  17. package/es/components/iho-table/src/IhoTable.vue.d.ts +6 -2
  18. package/es/components/iho-table/src/components/IhoTableColumn.js +3 -3
  19. package/es/components/iho-table/src/constants/index.d.ts +1 -1
  20. package/es/components/iho-table/src/constants/index.js +1 -0
  21. package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.d.ts +3 -1
  22. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +1 -1
  23. package/es/components/iho-table/src/hooks/useTableContext.d.ts +1 -1
  24. package/es/components/iho-table/src/plugins/filterPlugin/filter.d.ts +23 -0
  25. package/es/components/iho-table/src/plugins/filterPlugin/filter.js +99 -0
  26. package/es/components/iho-table/src/plugins/filterPlugin/index.d.ts +1 -0
  27. package/es/components/iho-table/src/plugins/filterPlugin/index.js +80 -0
  28. package/es/components/iho-table/src/plugins/filterPlugin/types.d.ts +14 -0
  29. package/es/components/iho-table/src/plugins/filterPlugin/types.js +8 -0
  30. package/es/components/iho-table/src/plugins/index.js +14 -12
  31. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +4 -3
  32. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +1 -1
  33. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.js +14 -3
  34. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.js +12 -7
  35. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/numberRendererPlugin.js +5 -1
  36. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +14 -3
  37. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.d.ts +1 -1
  38. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +15 -3
  39. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin.js +12 -7
  40. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +8 -2
  41. package/es/components/iho-table/src/types/index.d.ts +28 -10
  42. package/es/components/iho-table/src/utils/index.d.ts +4 -1
  43. package/es/components/iho-table/src/utils/index.js +7 -1
  44. package/es/components/iho-table/style/index.css +1 -1
  45. package/es/components/index.css +1 -1
  46. package/es/components/index.js +1 -0
  47. package/es/shared/types/index.d.ts +2 -2
  48. package/package.json +2 -2
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  import { FormRules } from 'naive-ui';
2
3
  declare const _default: import("vue").DefineComponent<{
3
4
  verifyUser: {
@@ -14,6 +15,11 @@ declare const _default: import("vue").DefineComponent<{
14
15
  type: BooleanConstructor;
15
16
  required: true;
16
17
  };
18
+ printType: {
19
+ type: (NumberConstructor | StringConstructor)[];
20
+ required: true;
21
+ default: number;
22
+ };
17
23
  }, {
18
24
  $message: import("naive-ui").MessageApi;
19
25
  DEFAULT_FORM: {
@@ -24,8 +30,14 @@ declare const _default: import("vue").DefineComponent<{
24
30
  verifyUser: Function;
25
31
  identityVerificationTitle: string;
26
32
  modelValue: boolean;
33
+ printType: number | string;
27
34
  };
28
35
  emit: (event: "close" | "success" | "update:modelValue", ...args: any[]) => void;
36
+ editFormRef: import("vue").Ref<{
37
+ submit: Function;
38
+ } | null>;
39
+ showEditForm: import("vue").Ref<boolean>;
40
+ token: import("vue").Ref<string>;
29
41
  form: {
30
42
  account: string;
31
43
  password: string;
@@ -42,6 +54,7 @@ declare const _default: import("vue").DefineComponent<{
42
54
  loading: import("vue").Ref<boolean>;
43
55
  submit: () => Promise<false | undefined>;
44
56
  handleClickSubmit: () => void;
57
+ submitEditFile: () => Promise<false | undefined>;
45
58
  NButton: any;
46
59
  NModal: any;
47
60
  NForm: any;
@@ -341,6 +354,1240 @@ declare const _default: import("vue").DefineComponent<{
341
354
  readonly ignorePathChange: boolean;
342
355
  }>;
343
356
  NInput: any;
357
+ EditForm: import("vue").DefineComponent<{
358
+ saveIReportFormat: {
359
+ type: FunctionConstructor;
360
+ required: true;
361
+ default: () => Promise<void>;
362
+ };
363
+ }, {
364
+ $message: import("naive-ui").MessageApi;
365
+ props: {
366
+ saveIReportFormat: Function;
367
+ };
368
+ fileList: import("vue").Ref<{
369
+ key: string;
370
+ value: {
371
+ id: string;
372
+ name: string;
373
+ batchId?: string | null | undefined;
374
+ percentage?: number | null | undefined;
375
+ status: "error" | "pending" | "uploading" | "finished" | "removed";
376
+ url?: string | null | undefined;
377
+ file?: {
378
+ readonly lastModified: number;
379
+ readonly name: string;
380
+ readonly webkitRelativePath: string;
381
+ readonly size: number;
382
+ readonly type: string;
383
+ arrayBuffer: {
384
+ (): Promise<ArrayBuffer>;
385
+ (): Promise<ArrayBuffer>;
386
+ };
387
+ slice: {
388
+ (start?: number | undefined, end?: number | undefined, contentType?: string | undefined): Blob;
389
+ (start?: number | undefined, end?: number | undefined, contentType?: string | undefined): Blob;
390
+ };
391
+ stream: {
392
+ (): ReadableStream<Uint8Array>;
393
+ (): NodeJS.ReadableStream;
394
+ };
395
+ text: {
396
+ (): Promise<string>;
397
+ (): Promise<string>;
398
+ };
399
+ } | null | undefined;
400
+ thumbnailUrl?: string | null | undefined;
401
+ type?: string | null | undefined;
402
+ fullPath?: string | null | undefined;
403
+ }[];
404
+ }[]>;
405
+ submit: (token: string) => Promise<unknown>;
406
+ onChange: (data: {
407
+ file: import("naive-ui").UploadFileInfo;
408
+ fileList: import("naive-ui").UploadFileInfo[];
409
+ }, index: number) => void;
410
+ onBeforeUpload: (data: {
411
+ file: import("naive-ui").UploadFileInfo;
412
+ fileList: import("naive-ui").UploadFileInfo[];
413
+ }) => Promise<boolean>;
414
+ validateFormat: (file: import("naive-ui").UploadFileInfo, format: string) => boolean;
415
+ NForm: any;
416
+ NFormItem: import("vue").DefineComponent<{
417
+ readonly label: StringConstructor;
418
+ readonly labelWidth: import("vue").PropType<string | number>;
419
+ readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
420
+ readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
421
+ readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
422
+ readonly path: StringConstructor;
423
+ readonly first: BooleanConstructor;
424
+ readonly rulePath: StringConstructor;
425
+ readonly required: BooleanConstructor;
426
+ readonly showRequireMark: {
427
+ readonly type: import("vue").PropType<boolean | undefined>;
428
+ readonly default: undefined;
429
+ };
430
+ readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
431
+ readonly showFeedback: {
432
+ readonly type: import("vue").PropType<boolean | undefined>;
433
+ readonly default: undefined;
434
+ };
435
+ readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
436
+ readonly size: import("vue").PropType<"small" | "medium" | "large">;
437
+ readonly ignorePathChange: BooleanConstructor;
438
+ readonly validationStatus: import("vue").PropType<"error" | "success" | "warning">;
439
+ readonly feedback: StringConstructor;
440
+ readonly showLabel: {
441
+ readonly type: import("vue").PropType<boolean | undefined>;
442
+ readonly default: undefined;
443
+ };
444
+ readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
445
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
446
+ blankHeightSmall: string;
447
+ blankHeightMedium: string;
448
+ blankHeightLarge: string;
449
+ lineHeight: string;
450
+ labelTextColor: string;
451
+ asteriskColor: string;
452
+ feedbackTextColorError: string;
453
+ feedbackTextColorWarning: string;
454
+ feedbackTextColor: string;
455
+ feedbackPadding: string;
456
+ feedbackHeightSmall: string;
457
+ feedbackHeightMedium: string;
458
+ feedbackHeightLarge: string;
459
+ feedbackFontSizeSmall: string;
460
+ feedbackFontSizeMedium: string;
461
+ feedbackFontSizeLarge: string;
462
+ labelFontSizeLeftSmall: string;
463
+ labelFontSizeLeftMedium: string;
464
+ labelFontSizeLeftLarge: string;
465
+ labelFontSizeTopSmall: string;
466
+ labelFontSizeTopMedium: string;
467
+ labelFontSizeTopLarge: string;
468
+ labelHeightSmall: string;
469
+ labelHeightMedium: string;
470
+ labelHeightLarge: string;
471
+ labelPaddingVertical: string;
472
+ labelPaddingHorizontal: string;
473
+ labelTextAlignVertical: string;
474
+ labelTextAlignHorizontal: string;
475
+ }, any>>;
476
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
477
+ blankHeightSmall: string;
478
+ blankHeightMedium: string;
479
+ blankHeightLarge: string;
480
+ lineHeight: string;
481
+ labelTextColor: string;
482
+ asteriskColor: string;
483
+ feedbackTextColorError: string;
484
+ feedbackTextColorWarning: string;
485
+ feedbackTextColor: string;
486
+ feedbackPadding: string;
487
+ feedbackHeightSmall: string;
488
+ feedbackHeightMedium: string;
489
+ feedbackHeightLarge: string;
490
+ feedbackFontSizeSmall: string;
491
+ feedbackFontSizeMedium: string;
492
+ feedbackFontSizeLarge: string;
493
+ labelFontSizeLeftSmall: string;
494
+ labelFontSizeLeftMedium: string;
495
+ labelFontSizeLeftLarge: string;
496
+ labelFontSizeTopSmall: string;
497
+ labelFontSizeTopMedium: string;
498
+ labelFontSizeTopLarge: string;
499
+ labelHeightSmall: string;
500
+ labelHeightMedium: string;
501
+ labelHeightLarge: string;
502
+ labelPaddingVertical: string;
503
+ labelPaddingHorizontal: string;
504
+ labelTextAlignVertical: string;
505
+ labelTextAlignHorizontal: string;
506
+ }, any>>>;
507
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<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
+ }, {
539
+ cssVars: import("vue").ComputedRef<{
540
+ '--n-bezier': string;
541
+ '--n-line-height': string;
542
+ '--n-blank-height': string;
543
+ '--n-label-font-size': string;
544
+ '--n-label-text-align': string;
545
+ '--n-label-height': string;
546
+ '--n-label-padding': string;
547
+ '--n-asterisk-color': string;
548
+ '--n-label-text-color': string;
549
+ '--n-feedback-padding': string;
550
+ '--n-feedback-font-size': string;
551
+ '--n-feedback-height': string;
552
+ '--n-feedback-text-color': string;
553
+ '--n-feedback-text-color-warning': string;
554
+ '--n-feedback-text-color-error': string;
555
+ }> | undefined;
556
+ themeClass: import("vue").Ref<string>;
557
+ onRender: () => void;
558
+ validate: import("naive-ui/es/form/src/interface").FormItemValidate;
559
+ restoreValidation: () => void;
560
+ path?: string | undefined;
561
+ internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
562
+ mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").Size>;
563
+ validationErrored: import("vue").Ref<boolean>;
564
+ mergedLabelStyle: import("vue").ComputedRef<(import("vue").StyleValue | undefined)[]>;
565
+ mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelPlacement>;
566
+ mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelAlign | undefined>;
567
+ mergedShowRequireMark: import("vue").ComputedRef<boolean | undefined>;
568
+ mergedRequireMarkPlacement: import("vue").ComputedRef<"left" | "right" | "right-hanging">;
569
+ mergedValidationStatus: import("vue").ComputedRef<"error" | "success" | "warning" | undefined>;
570
+ mergedShowFeedback: import("vue").ComputedRef<boolean>;
571
+ mergedShowLabel: import("vue").ComputedRef<boolean>;
572
+ isAutoLabelWidth: import("vue").ComputedRef<boolean>;
573
+ labelElementRef: import("vue").Ref<HTMLLabelElement | null>;
574
+ mergedClsPrefix: import("vue").ComputedRef<string>;
575
+ mergedRequired: import("vue").ComputedRef<boolean>;
576
+ feedbackId: import("vue").Ref<string>;
577
+ renderExplains: import("vue").Ref<{
578
+ key: string;
579
+ render: () => import("vue").VNodeChild;
580
+ }[]>;
581
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
582
+ readonly label: StringConstructor;
583
+ readonly labelWidth: import("vue").PropType<string | number>;
584
+ readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
585
+ readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
586
+ readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
587
+ readonly path: StringConstructor;
588
+ readonly first: BooleanConstructor;
589
+ readonly rulePath: StringConstructor;
590
+ readonly required: BooleanConstructor;
591
+ readonly showRequireMark: {
592
+ readonly type: import("vue").PropType<boolean | undefined>;
593
+ readonly default: undefined;
594
+ };
595
+ readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
596
+ readonly showFeedback: {
597
+ readonly type: import("vue").PropType<boolean | undefined>;
598
+ readonly default: undefined;
599
+ };
600
+ readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
601
+ readonly size: import("vue").PropType<"small" | "medium" | "large">;
602
+ readonly ignorePathChange: BooleanConstructor;
603
+ readonly validationStatus: import("vue").PropType<"error" | "success" | "warning">;
604
+ readonly feedback: StringConstructor;
605
+ readonly showLabel: {
606
+ readonly type: import("vue").PropType<boolean | undefined>;
607
+ readonly default: undefined;
608
+ };
609
+ readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
610
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
611
+ blankHeightSmall: string;
612
+ blankHeightMedium: string;
613
+ blankHeightLarge: string;
614
+ lineHeight: string;
615
+ labelTextColor: string;
616
+ asteriskColor: string;
617
+ feedbackTextColorError: string;
618
+ feedbackTextColorWarning: string;
619
+ feedbackTextColor: string;
620
+ feedbackPadding: string;
621
+ feedbackHeightSmall: string;
622
+ feedbackHeightMedium: string;
623
+ feedbackHeightLarge: string;
624
+ feedbackFontSizeSmall: string;
625
+ feedbackFontSizeMedium: string;
626
+ feedbackFontSizeLarge: string;
627
+ labelFontSizeLeftSmall: string;
628
+ labelFontSizeLeftMedium: string;
629
+ labelFontSizeLeftLarge: string;
630
+ labelFontSizeTopSmall: string;
631
+ labelFontSizeTopMedium: string;
632
+ labelFontSizeTopLarge: string;
633
+ labelHeightSmall: string;
634
+ labelHeightMedium: string;
635
+ labelHeightLarge: string;
636
+ labelPaddingVertical: string;
637
+ labelPaddingHorizontal: string;
638
+ labelTextAlignVertical: string;
639
+ labelTextAlignHorizontal: string;
640
+ }, any>>;
641
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
642
+ blankHeightSmall: string;
643
+ blankHeightMedium: string;
644
+ blankHeightLarge: string;
645
+ lineHeight: string;
646
+ labelTextColor: string;
647
+ asteriskColor: string;
648
+ feedbackTextColorError: string;
649
+ feedbackTextColorWarning: string;
650
+ feedbackTextColor: string;
651
+ feedbackPadding: string;
652
+ feedbackHeightSmall: string;
653
+ feedbackHeightMedium: string;
654
+ feedbackHeightLarge: string;
655
+ feedbackFontSizeSmall: string;
656
+ feedbackFontSizeMedium: string;
657
+ feedbackFontSizeLarge: string;
658
+ labelFontSizeLeftSmall: string;
659
+ labelFontSizeLeftMedium: string;
660
+ labelFontSizeLeftLarge: string;
661
+ labelFontSizeTopSmall: string;
662
+ labelFontSizeTopMedium: string;
663
+ labelFontSizeTopLarge: string;
664
+ labelHeightSmall: string;
665
+ labelHeightMedium: string;
666
+ labelHeightLarge: string;
667
+ labelPaddingVertical: string;
668
+ labelPaddingHorizontal: string;
669
+ labelTextAlignVertical: string;
670
+ labelTextAlignHorizontal: string;
671
+ }, any>>>;
672
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
673
+ blankHeightSmall: string;
674
+ blankHeightMedium: string;
675
+ blankHeightLarge: string;
676
+ lineHeight: string;
677
+ labelTextColor: string;
678
+ asteriskColor: string;
679
+ feedbackTextColorError: string;
680
+ feedbackTextColorWarning: string;
681
+ feedbackTextColor: string;
682
+ feedbackPadding: string;
683
+ feedbackHeightSmall: string;
684
+ feedbackHeightMedium: string;
685
+ feedbackHeightLarge: string;
686
+ feedbackFontSizeSmall: string;
687
+ feedbackFontSizeMedium: string;
688
+ feedbackFontSizeLarge: string;
689
+ labelFontSizeLeftSmall: string;
690
+ labelFontSizeLeftMedium: string;
691
+ labelFontSizeLeftLarge: string;
692
+ labelFontSizeTopSmall: string;
693
+ labelFontSizeTopMedium: string;
694
+ labelFontSizeTopLarge: string;
695
+ labelHeightSmall: string;
696
+ labelHeightMedium: string;
697
+ labelHeightLarge: string;
698
+ labelPaddingVertical: string;
699
+ labelPaddingHorizontal: string;
700
+ labelTextAlignVertical: string;
701
+ labelTextAlignHorizontal: string;
702
+ }, any>>>;
703
+ }>>, {
704
+ readonly required: boolean;
705
+ readonly first: boolean;
706
+ readonly showRequireMark: boolean | undefined;
707
+ readonly showFeedback: boolean | undefined;
708
+ readonly showLabel: boolean | undefined;
709
+ readonly ignorePathChange: boolean;
710
+ }>;
711
+ NUpload: any;
712
+ 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<{}>>, {}>;
713
+ NP: import("vue").DefineComponent<{
714
+ depth: import("vue").PropType<2 | 1 | "1" | "2" | "3" | 3>;
715
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
716
+ aTextColor: string;
717
+ blockquoteTextColor: string;
718
+ blockquotePrefixColor: string;
719
+ blockquoteLineHeight: string;
720
+ blockquoteFontSize: string;
721
+ codeBorderRadius: string;
722
+ liTextColor: string;
723
+ liLineHeight: string;
724
+ liFontSize: string;
725
+ hrColor: string;
726
+ headerFontWeight: string;
727
+ headerTextColor: string;
728
+ pTextColor: string;
729
+ pTextColor1Depth: string;
730
+ pTextColor2Depth: string;
731
+ pTextColor3Depth: string;
732
+ pLineHeight: string;
733
+ pFontSize: string;
734
+ headerBarColor: string;
735
+ headerBarColorPrimary: string;
736
+ headerBarColorInfo: string;
737
+ headerBarColorError: string;
738
+ headerBarColorWarning: string;
739
+ headerBarColorSuccess: string;
740
+ textColor: string;
741
+ textColor1Depth: string;
742
+ textColor2Depth: string;
743
+ textColor3Depth: string;
744
+ textColorPrimary: string;
745
+ textColorInfo: string;
746
+ textColorSuccess: string;
747
+ textColorWarning: string;
748
+ textColorError: string;
749
+ codeTextColor: string;
750
+ codeColor: string;
751
+ codeBorder: string;
752
+ headerFontSize1: string;
753
+ headerFontSize2: string;
754
+ headerFontSize3: string;
755
+ headerFontSize4: string;
756
+ headerFontSize5: string;
757
+ headerFontSize6: string;
758
+ headerMargin1: string;
759
+ headerMargin2: string;
760
+ headerMargin3: string;
761
+ headerMargin4: string;
762
+ headerMargin5: string;
763
+ headerMargin6: string;
764
+ headerPrefixWidth1: string;
765
+ headerPrefixWidth2: string;
766
+ headerPrefixWidth3: string;
767
+ headerPrefixWidth4: string;
768
+ headerPrefixWidth5: string;
769
+ headerPrefixWidth6: string;
770
+ headerBarWidth1: string;
771
+ headerBarWidth2: string;
772
+ headerBarWidth3: string;
773
+ headerBarWidth4: string;
774
+ headerBarWidth5: string;
775
+ headerBarWidth6: string;
776
+ pMargin: string;
777
+ liMargin: string;
778
+ olPadding: string;
779
+ ulPadding: string;
780
+ }, any>>;
781
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
782
+ aTextColor: string;
783
+ blockquoteTextColor: string;
784
+ blockquotePrefixColor: string;
785
+ blockquoteLineHeight: string;
786
+ blockquoteFontSize: string;
787
+ codeBorderRadius: string;
788
+ liTextColor: string;
789
+ liLineHeight: string;
790
+ liFontSize: string;
791
+ hrColor: string;
792
+ headerFontWeight: string;
793
+ headerTextColor: string;
794
+ pTextColor: string;
795
+ pTextColor1Depth: string;
796
+ pTextColor2Depth: string;
797
+ pTextColor3Depth: string;
798
+ pLineHeight: string;
799
+ pFontSize: string;
800
+ headerBarColor: string;
801
+ headerBarColorPrimary: string;
802
+ headerBarColorInfo: string;
803
+ headerBarColorError: string;
804
+ headerBarColorWarning: string;
805
+ headerBarColorSuccess: string;
806
+ textColor: string;
807
+ textColor1Depth: string;
808
+ textColor2Depth: string;
809
+ textColor3Depth: string;
810
+ textColorPrimary: string;
811
+ textColorInfo: string;
812
+ textColorSuccess: string;
813
+ textColorWarning: string;
814
+ textColorError: string;
815
+ codeTextColor: string;
816
+ codeColor: string;
817
+ codeBorder: string;
818
+ headerFontSize1: string;
819
+ headerFontSize2: string;
820
+ headerFontSize3: string;
821
+ headerFontSize4: string;
822
+ headerFontSize5: string;
823
+ headerFontSize6: string;
824
+ headerMargin1: string;
825
+ headerMargin2: string;
826
+ headerMargin3: string;
827
+ headerMargin4: string;
828
+ headerMargin5: string;
829
+ headerMargin6: string;
830
+ headerPrefixWidth1: string;
831
+ headerPrefixWidth2: string;
832
+ headerPrefixWidth3: string;
833
+ headerPrefixWidth4: string;
834
+ headerPrefixWidth5: string;
835
+ headerPrefixWidth6: string;
836
+ headerBarWidth1: string;
837
+ headerBarWidth2: string;
838
+ headerBarWidth3: string;
839
+ headerBarWidth4: string;
840
+ headerBarWidth5: string;
841
+ headerBarWidth6: string;
842
+ pMargin: string;
843
+ liMargin: string;
844
+ olPadding: string;
845
+ ulPadding: string;
846
+ }, any>>>;
847
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
848
+ aTextColor: string;
849
+ blockquoteTextColor: string;
850
+ blockquotePrefixColor: string;
851
+ blockquoteLineHeight: string;
852
+ blockquoteFontSize: string;
853
+ codeBorderRadius: string;
854
+ liTextColor: string;
855
+ liLineHeight: string;
856
+ liFontSize: string;
857
+ hrColor: string;
858
+ headerFontWeight: string;
859
+ headerTextColor: string;
860
+ pTextColor: string;
861
+ pTextColor1Depth: string;
862
+ pTextColor2Depth: string;
863
+ pTextColor3Depth: string;
864
+ pLineHeight: string;
865
+ pFontSize: string;
866
+ headerBarColor: string;
867
+ headerBarColorPrimary: string;
868
+ headerBarColorInfo: string;
869
+ headerBarColorError: string;
870
+ headerBarColorWarning: string;
871
+ headerBarColorSuccess: string;
872
+ textColor: string;
873
+ textColor1Depth: string;
874
+ textColor2Depth: string;
875
+ textColor3Depth: string;
876
+ textColorPrimary: string;
877
+ textColorInfo: string;
878
+ textColorSuccess: string;
879
+ textColorWarning: string;
880
+ textColorError: string;
881
+ codeTextColor: string;
882
+ codeColor: string;
883
+ codeBorder: string;
884
+ headerFontSize1: string;
885
+ headerFontSize2: string;
886
+ headerFontSize3: string;
887
+ headerFontSize4: string;
888
+ headerFontSize5: string;
889
+ headerFontSize6: string;
890
+ headerMargin1: string;
891
+ headerMargin2: string;
892
+ headerMargin3: string;
893
+ headerMargin4: string;
894
+ headerMargin5: string;
895
+ headerMargin6: string;
896
+ headerPrefixWidth1: string;
897
+ headerPrefixWidth2: string;
898
+ headerPrefixWidth3: string;
899
+ headerPrefixWidth4: string;
900
+ headerPrefixWidth5: string;
901
+ headerPrefixWidth6: string;
902
+ headerBarWidth1: string;
903
+ headerBarWidth2: string;
904
+ headerBarWidth3: string;
905
+ headerBarWidth4: string;
906
+ headerBarWidth5: string;
907
+ headerBarWidth6: string;
908
+ pMargin: string;
909
+ liMargin: string;
910
+ olPadding: string;
911
+ ulPadding: string;
912
+ }, any>>>;
913
+ }, {
914
+ mergedClsPrefix: import("vue").ComputedRef<string>;
915
+ cssVars: import("vue").ComputedRef<{
916
+ '--n-bezier': string;
917
+ '--n-font-size': string;
918
+ '--n-line-height': string;
919
+ '--n-margin': string;
920
+ '--n-text-color': string;
921
+ }> | undefined;
922
+ themeClass: import("vue").Ref<string> | undefined;
923
+ onRender: (() => void) | undefined;
924
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
925
+ depth: import("vue").PropType<2 | 1 | "1" | "2" | "3" | 3>;
926
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
927
+ aTextColor: string;
928
+ blockquoteTextColor: string;
929
+ blockquotePrefixColor: string;
930
+ blockquoteLineHeight: string;
931
+ blockquoteFontSize: string;
932
+ codeBorderRadius: string;
933
+ liTextColor: string;
934
+ liLineHeight: string;
935
+ liFontSize: string;
936
+ hrColor: string;
937
+ headerFontWeight: string;
938
+ headerTextColor: string;
939
+ pTextColor: string;
940
+ pTextColor1Depth: string;
941
+ pTextColor2Depth: string;
942
+ pTextColor3Depth: string;
943
+ pLineHeight: string;
944
+ pFontSize: string;
945
+ headerBarColor: string;
946
+ headerBarColorPrimary: string;
947
+ headerBarColorInfo: string;
948
+ headerBarColorError: string;
949
+ headerBarColorWarning: string;
950
+ headerBarColorSuccess: string;
951
+ textColor: string;
952
+ textColor1Depth: string;
953
+ textColor2Depth: string;
954
+ textColor3Depth: string;
955
+ textColorPrimary: string;
956
+ textColorInfo: string;
957
+ textColorSuccess: string;
958
+ textColorWarning: string;
959
+ textColorError: string;
960
+ codeTextColor: string;
961
+ codeColor: string;
962
+ codeBorder: string;
963
+ headerFontSize1: string;
964
+ headerFontSize2: string;
965
+ headerFontSize3: string;
966
+ headerFontSize4: string;
967
+ headerFontSize5: string;
968
+ headerFontSize6: string;
969
+ headerMargin1: string;
970
+ headerMargin2: string;
971
+ headerMargin3: string;
972
+ headerMargin4: string;
973
+ headerMargin5: string;
974
+ headerMargin6: string;
975
+ headerPrefixWidth1: string;
976
+ headerPrefixWidth2: string;
977
+ headerPrefixWidth3: string;
978
+ headerPrefixWidth4: string;
979
+ headerPrefixWidth5: string;
980
+ headerPrefixWidth6: string;
981
+ headerBarWidth1: string;
982
+ headerBarWidth2: string;
983
+ headerBarWidth3: string;
984
+ headerBarWidth4: string;
985
+ headerBarWidth5: string;
986
+ headerBarWidth6: string;
987
+ pMargin: string;
988
+ liMargin: string;
989
+ olPadding: string;
990
+ ulPadding: string;
991
+ }, any>>;
992
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
993
+ aTextColor: string;
994
+ blockquoteTextColor: string;
995
+ blockquotePrefixColor: string;
996
+ blockquoteLineHeight: string;
997
+ blockquoteFontSize: string;
998
+ codeBorderRadius: string;
999
+ liTextColor: string;
1000
+ liLineHeight: string;
1001
+ liFontSize: string;
1002
+ hrColor: string;
1003
+ headerFontWeight: string;
1004
+ headerTextColor: string;
1005
+ pTextColor: string;
1006
+ pTextColor1Depth: string;
1007
+ pTextColor2Depth: string;
1008
+ pTextColor3Depth: string;
1009
+ pLineHeight: string;
1010
+ pFontSize: string;
1011
+ headerBarColor: string;
1012
+ headerBarColorPrimary: string;
1013
+ headerBarColorInfo: string;
1014
+ headerBarColorError: string;
1015
+ headerBarColorWarning: string;
1016
+ headerBarColorSuccess: string;
1017
+ textColor: string;
1018
+ textColor1Depth: string;
1019
+ textColor2Depth: string;
1020
+ textColor3Depth: string;
1021
+ textColorPrimary: string;
1022
+ textColorInfo: string;
1023
+ textColorSuccess: string;
1024
+ textColorWarning: string;
1025
+ textColorError: string;
1026
+ codeTextColor: string;
1027
+ codeColor: string;
1028
+ codeBorder: string;
1029
+ headerFontSize1: string;
1030
+ headerFontSize2: string;
1031
+ headerFontSize3: string;
1032
+ headerFontSize4: string;
1033
+ headerFontSize5: string;
1034
+ headerFontSize6: string;
1035
+ headerMargin1: string;
1036
+ headerMargin2: string;
1037
+ headerMargin3: string;
1038
+ headerMargin4: string;
1039
+ headerMargin5: string;
1040
+ headerMargin6: string;
1041
+ headerPrefixWidth1: string;
1042
+ headerPrefixWidth2: string;
1043
+ headerPrefixWidth3: string;
1044
+ headerPrefixWidth4: string;
1045
+ headerPrefixWidth5: string;
1046
+ headerPrefixWidth6: string;
1047
+ headerBarWidth1: string;
1048
+ headerBarWidth2: string;
1049
+ headerBarWidth3: string;
1050
+ headerBarWidth4: string;
1051
+ headerBarWidth5: string;
1052
+ headerBarWidth6: string;
1053
+ pMargin: string;
1054
+ liMargin: string;
1055
+ olPadding: string;
1056
+ ulPadding: string;
1057
+ }, any>>>;
1058
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1059
+ aTextColor: string;
1060
+ blockquoteTextColor: string;
1061
+ blockquotePrefixColor: string;
1062
+ blockquoteLineHeight: string;
1063
+ blockquoteFontSize: string;
1064
+ codeBorderRadius: string;
1065
+ liTextColor: string;
1066
+ liLineHeight: string;
1067
+ liFontSize: string;
1068
+ hrColor: string;
1069
+ headerFontWeight: string;
1070
+ headerTextColor: string;
1071
+ pTextColor: string;
1072
+ pTextColor1Depth: string;
1073
+ pTextColor2Depth: string;
1074
+ pTextColor3Depth: string;
1075
+ pLineHeight: string;
1076
+ pFontSize: string;
1077
+ headerBarColor: string;
1078
+ headerBarColorPrimary: string;
1079
+ headerBarColorInfo: string;
1080
+ headerBarColorError: string;
1081
+ headerBarColorWarning: string;
1082
+ headerBarColorSuccess: string;
1083
+ textColor: string;
1084
+ textColor1Depth: string;
1085
+ textColor2Depth: string;
1086
+ textColor3Depth: string;
1087
+ textColorPrimary: string;
1088
+ textColorInfo: string;
1089
+ textColorSuccess: string;
1090
+ textColorWarning: string;
1091
+ textColorError: string;
1092
+ codeTextColor: string;
1093
+ codeColor: string;
1094
+ codeBorder: string;
1095
+ headerFontSize1: string;
1096
+ headerFontSize2: string;
1097
+ headerFontSize3: string;
1098
+ headerFontSize4: string;
1099
+ headerFontSize5: string;
1100
+ headerFontSize6: string;
1101
+ headerMargin1: string;
1102
+ headerMargin2: string;
1103
+ headerMargin3: string;
1104
+ headerMargin4: string;
1105
+ headerMargin5: string;
1106
+ headerMargin6: string;
1107
+ headerPrefixWidth1: string;
1108
+ headerPrefixWidth2: string;
1109
+ headerPrefixWidth3: string;
1110
+ headerPrefixWidth4: string;
1111
+ headerPrefixWidth5: string;
1112
+ headerPrefixWidth6: string;
1113
+ headerBarWidth1: string;
1114
+ headerBarWidth2: string;
1115
+ headerBarWidth3: string;
1116
+ headerBarWidth4: string;
1117
+ headerBarWidth5: string;
1118
+ headerBarWidth6: string;
1119
+ pMargin: string;
1120
+ liMargin: string;
1121
+ olPadding: string;
1122
+ ulPadding: string;
1123
+ }, any>>>;
1124
+ }>>, {}>;
1125
+ NIcon: any;
1126
+ NText: import("vue").DefineComponent<{
1127
+ readonly code: BooleanConstructor;
1128
+ readonly type: {
1129
+ readonly type: StringConstructor;
1130
+ readonly default: "default";
1131
+ };
1132
+ readonly delete: BooleanConstructor;
1133
+ readonly strong: BooleanConstructor;
1134
+ readonly italic: BooleanConstructor;
1135
+ readonly underline: BooleanConstructor;
1136
+ readonly depth: import("vue").PropType<2 | 1 | "1" | "2" | "3" | 3>;
1137
+ readonly tag: StringConstructor;
1138
+ readonly as: {
1139
+ readonly type: StringConstructor;
1140
+ readonly validator: () => boolean;
1141
+ readonly default: undefined;
1142
+ };
1143
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1144
+ aTextColor: string;
1145
+ blockquoteTextColor: string;
1146
+ blockquotePrefixColor: string;
1147
+ blockquoteLineHeight: string;
1148
+ blockquoteFontSize: string;
1149
+ codeBorderRadius: string;
1150
+ liTextColor: string;
1151
+ liLineHeight: string;
1152
+ liFontSize: string;
1153
+ hrColor: string;
1154
+ headerFontWeight: string;
1155
+ headerTextColor: string;
1156
+ pTextColor: string;
1157
+ pTextColor1Depth: string;
1158
+ pTextColor2Depth: string;
1159
+ pTextColor3Depth: string;
1160
+ pLineHeight: string;
1161
+ pFontSize: string;
1162
+ headerBarColor: string;
1163
+ headerBarColorPrimary: string;
1164
+ headerBarColorInfo: string;
1165
+ headerBarColorError: string;
1166
+ headerBarColorWarning: string;
1167
+ headerBarColorSuccess: string;
1168
+ textColor: string;
1169
+ textColor1Depth: string;
1170
+ textColor2Depth: string;
1171
+ textColor3Depth: string;
1172
+ textColorPrimary: string;
1173
+ textColorInfo: string;
1174
+ textColorSuccess: string;
1175
+ textColorWarning: string;
1176
+ textColorError: string;
1177
+ codeTextColor: string;
1178
+ codeColor: string;
1179
+ codeBorder: string;
1180
+ headerFontSize1: string;
1181
+ headerFontSize2: string;
1182
+ headerFontSize3: string;
1183
+ headerFontSize4: string;
1184
+ headerFontSize5: string;
1185
+ headerFontSize6: string;
1186
+ headerMargin1: string;
1187
+ headerMargin2: string;
1188
+ headerMargin3: string;
1189
+ headerMargin4: string;
1190
+ headerMargin5: string;
1191
+ headerMargin6: string;
1192
+ headerPrefixWidth1: string;
1193
+ headerPrefixWidth2: string;
1194
+ headerPrefixWidth3: string;
1195
+ headerPrefixWidth4: string;
1196
+ headerPrefixWidth5: string;
1197
+ headerPrefixWidth6: string;
1198
+ headerBarWidth1: string;
1199
+ headerBarWidth2: string;
1200
+ headerBarWidth3: string;
1201
+ headerBarWidth4: string;
1202
+ headerBarWidth5: string;
1203
+ headerBarWidth6: string;
1204
+ pMargin: string;
1205
+ liMargin: string;
1206
+ olPadding: string;
1207
+ ulPadding: string;
1208
+ }, any>>;
1209
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1210
+ aTextColor: string;
1211
+ blockquoteTextColor: string;
1212
+ blockquotePrefixColor: string;
1213
+ blockquoteLineHeight: string;
1214
+ blockquoteFontSize: string;
1215
+ codeBorderRadius: string;
1216
+ liTextColor: string;
1217
+ liLineHeight: string;
1218
+ liFontSize: string;
1219
+ hrColor: string;
1220
+ headerFontWeight: string;
1221
+ headerTextColor: string;
1222
+ pTextColor: string;
1223
+ pTextColor1Depth: string;
1224
+ pTextColor2Depth: string;
1225
+ pTextColor3Depth: string;
1226
+ pLineHeight: string;
1227
+ pFontSize: string;
1228
+ headerBarColor: string;
1229
+ headerBarColorPrimary: string;
1230
+ headerBarColorInfo: string;
1231
+ headerBarColorError: string;
1232
+ headerBarColorWarning: string;
1233
+ headerBarColorSuccess: string;
1234
+ textColor: string;
1235
+ textColor1Depth: string;
1236
+ textColor2Depth: string;
1237
+ textColor3Depth: string;
1238
+ textColorPrimary: string;
1239
+ textColorInfo: string;
1240
+ textColorSuccess: string;
1241
+ textColorWarning: string;
1242
+ textColorError: string;
1243
+ codeTextColor: string;
1244
+ codeColor: string;
1245
+ codeBorder: string;
1246
+ headerFontSize1: string;
1247
+ headerFontSize2: string;
1248
+ headerFontSize3: string;
1249
+ headerFontSize4: string;
1250
+ headerFontSize5: string;
1251
+ headerFontSize6: string;
1252
+ headerMargin1: string;
1253
+ headerMargin2: string;
1254
+ headerMargin3: string;
1255
+ headerMargin4: string;
1256
+ headerMargin5: string;
1257
+ headerMargin6: string;
1258
+ headerPrefixWidth1: string;
1259
+ headerPrefixWidth2: string;
1260
+ headerPrefixWidth3: string;
1261
+ headerPrefixWidth4: string;
1262
+ headerPrefixWidth5: string;
1263
+ headerPrefixWidth6: string;
1264
+ headerBarWidth1: string;
1265
+ headerBarWidth2: string;
1266
+ headerBarWidth3: string;
1267
+ headerBarWidth4: string;
1268
+ headerBarWidth5: string;
1269
+ headerBarWidth6: string;
1270
+ pMargin: string;
1271
+ liMargin: string;
1272
+ olPadding: string;
1273
+ ulPadding: string;
1274
+ }, any>>>;
1275
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1276
+ aTextColor: string;
1277
+ blockquoteTextColor: string;
1278
+ blockquotePrefixColor: string;
1279
+ blockquoteLineHeight: string;
1280
+ blockquoteFontSize: string;
1281
+ codeBorderRadius: string;
1282
+ liTextColor: string;
1283
+ liLineHeight: string;
1284
+ liFontSize: string;
1285
+ hrColor: string;
1286
+ headerFontWeight: string;
1287
+ headerTextColor: string;
1288
+ pTextColor: string;
1289
+ pTextColor1Depth: string;
1290
+ pTextColor2Depth: string;
1291
+ pTextColor3Depth: string;
1292
+ pLineHeight: string;
1293
+ pFontSize: string;
1294
+ headerBarColor: string;
1295
+ headerBarColorPrimary: string;
1296
+ headerBarColorInfo: string;
1297
+ headerBarColorError: string;
1298
+ headerBarColorWarning: string;
1299
+ headerBarColorSuccess: string;
1300
+ textColor: string;
1301
+ textColor1Depth: string;
1302
+ textColor2Depth: string;
1303
+ textColor3Depth: string;
1304
+ textColorPrimary: string;
1305
+ textColorInfo: string;
1306
+ textColorSuccess: string;
1307
+ textColorWarning: string;
1308
+ textColorError: string;
1309
+ codeTextColor: string;
1310
+ codeColor: string;
1311
+ codeBorder: string;
1312
+ headerFontSize1: string;
1313
+ headerFontSize2: string;
1314
+ headerFontSize3: string;
1315
+ headerFontSize4: string;
1316
+ headerFontSize5: string;
1317
+ headerFontSize6: string;
1318
+ headerMargin1: string;
1319
+ headerMargin2: string;
1320
+ headerMargin3: string;
1321
+ headerMargin4: string;
1322
+ headerMargin5: string;
1323
+ headerMargin6: string;
1324
+ headerPrefixWidth1: string;
1325
+ headerPrefixWidth2: string;
1326
+ headerPrefixWidth3: string;
1327
+ headerPrefixWidth4: string;
1328
+ headerPrefixWidth5: string;
1329
+ headerPrefixWidth6: string;
1330
+ headerBarWidth1: string;
1331
+ headerBarWidth2: string;
1332
+ headerBarWidth3: string;
1333
+ headerBarWidth4: string;
1334
+ headerBarWidth5: string;
1335
+ headerBarWidth6: string;
1336
+ pMargin: string;
1337
+ liMargin: string;
1338
+ olPadding: string;
1339
+ ulPadding: string;
1340
+ }, any>>>;
1341
+ }, {
1342
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1343
+ compitableTag: import("vue").ComputedRef<string | undefined>;
1344
+ cssVars: import("vue").ComputedRef<{
1345
+ '--n-bezier': string;
1346
+ '--n-text-color': string;
1347
+ '--n-font-weight-strong': string;
1348
+ '--n-font-famliy-mono': string;
1349
+ '--n-code-border-radius': string;
1350
+ '--n-code-text-color': string;
1351
+ '--n-code-color': string;
1352
+ '--n-code-border': string;
1353
+ }> | undefined;
1354
+ themeClass: import("vue").Ref<string> | undefined;
1355
+ onRender: (() => void) | undefined;
1356
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1357
+ readonly code: BooleanConstructor;
1358
+ readonly type: {
1359
+ readonly type: StringConstructor;
1360
+ readonly default: "default";
1361
+ };
1362
+ readonly delete: BooleanConstructor;
1363
+ readonly strong: BooleanConstructor;
1364
+ readonly italic: BooleanConstructor;
1365
+ readonly underline: BooleanConstructor;
1366
+ readonly depth: import("vue").PropType<2 | 1 | "1" | "2" | "3" | 3>;
1367
+ readonly tag: StringConstructor;
1368
+ readonly as: {
1369
+ readonly type: StringConstructor;
1370
+ readonly validator: () => boolean;
1371
+ readonly default: undefined;
1372
+ };
1373
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1374
+ aTextColor: string;
1375
+ blockquoteTextColor: string;
1376
+ blockquotePrefixColor: string;
1377
+ blockquoteLineHeight: string;
1378
+ blockquoteFontSize: string;
1379
+ codeBorderRadius: string;
1380
+ liTextColor: string;
1381
+ liLineHeight: string;
1382
+ liFontSize: string;
1383
+ hrColor: string;
1384
+ headerFontWeight: string;
1385
+ headerTextColor: string;
1386
+ pTextColor: string;
1387
+ pTextColor1Depth: string;
1388
+ pTextColor2Depth: string;
1389
+ pTextColor3Depth: string;
1390
+ pLineHeight: string;
1391
+ pFontSize: string;
1392
+ headerBarColor: string;
1393
+ headerBarColorPrimary: string;
1394
+ headerBarColorInfo: string;
1395
+ headerBarColorError: string;
1396
+ headerBarColorWarning: string;
1397
+ headerBarColorSuccess: string;
1398
+ textColor: string;
1399
+ textColor1Depth: string;
1400
+ textColor2Depth: string;
1401
+ textColor3Depth: string;
1402
+ textColorPrimary: string;
1403
+ textColorInfo: string;
1404
+ textColorSuccess: string;
1405
+ textColorWarning: string;
1406
+ textColorError: string;
1407
+ codeTextColor: string;
1408
+ codeColor: string;
1409
+ codeBorder: string;
1410
+ headerFontSize1: string;
1411
+ headerFontSize2: string;
1412
+ headerFontSize3: string;
1413
+ headerFontSize4: string;
1414
+ headerFontSize5: string;
1415
+ headerFontSize6: string;
1416
+ headerMargin1: string;
1417
+ headerMargin2: string;
1418
+ headerMargin3: string;
1419
+ headerMargin4: string;
1420
+ headerMargin5: string;
1421
+ headerMargin6: string;
1422
+ headerPrefixWidth1: string;
1423
+ headerPrefixWidth2: string;
1424
+ headerPrefixWidth3: string;
1425
+ headerPrefixWidth4: string;
1426
+ headerPrefixWidth5: string;
1427
+ headerPrefixWidth6: string;
1428
+ headerBarWidth1: string;
1429
+ headerBarWidth2: string;
1430
+ headerBarWidth3: string;
1431
+ headerBarWidth4: string;
1432
+ headerBarWidth5: string;
1433
+ headerBarWidth6: string;
1434
+ pMargin: string;
1435
+ liMargin: string;
1436
+ olPadding: string;
1437
+ ulPadding: string;
1438
+ }, any>>;
1439
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1440
+ aTextColor: string;
1441
+ blockquoteTextColor: string;
1442
+ blockquotePrefixColor: string;
1443
+ blockquoteLineHeight: string;
1444
+ blockquoteFontSize: string;
1445
+ codeBorderRadius: string;
1446
+ liTextColor: string;
1447
+ liLineHeight: string;
1448
+ liFontSize: string;
1449
+ hrColor: string;
1450
+ headerFontWeight: string;
1451
+ headerTextColor: string;
1452
+ pTextColor: string;
1453
+ pTextColor1Depth: string;
1454
+ pTextColor2Depth: string;
1455
+ pTextColor3Depth: string;
1456
+ pLineHeight: string;
1457
+ pFontSize: string;
1458
+ headerBarColor: string;
1459
+ headerBarColorPrimary: string;
1460
+ headerBarColorInfo: string;
1461
+ headerBarColorError: string;
1462
+ headerBarColorWarning: string;
1463
+ headerBarColorSuccess: string;
1464
+ textColor: string;
1465
+ textColor1Depth: string;
1466
+ textColor2Depth: string;
1467
+ textColor3Depth: string;
1468
+ textColorPrimary: string;
1469
+ textColorInfo: string;
1470
+ textColorSuccess: string;
1471
+ textColorWarning: string;
1472
+ textColorError: string;
1473
+ codeTextColor: string;
1474
+ codeColor: string;
1475
+ codeBorder: string;
1476
+ headerFontSize1: string;
1477
+ headerFontSize2: string;
1478
+ headerFontSize3: string;
1479
+ headerFontSize4: string;
1480
+ headerFontSize5: string;
1481
+ headerFontSize6: string;
1482
+ headerMargin1: string;
1483
+ headerMargin2: string;
1484
+ headerMargin3: string;
1485
+ headerMargin4: string;
1486
+ headerMargin5: string;
1487
+ headerMargin6: string;
1488
+ headerPrefixWidth1: string;
1489
+ headerPrefixWidth2: string;
1490
+ headerPrefixWidth3: string;
1491
+ headerPrefixWidth4: string;
1492
+ headerPrefixWidth5: string;
1493
+ headerPrefixWidth6: string;
1494
+ headerBarWidth1: string;
1495
+ headerBarWidth2: string;
1496
+ headerBarWidth3: string;
1497
+ headerBarWidth4: string;
1498
+ headerBarWidth5: string;
1499
+ headerBarWidth6: string;
1500
+ pMargin: string;
1501
+ liMargin: string;
1502
+ olPadding: string;
1503
+ ulPadding: string;
1504
+ }, any>>>;
1505
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1506
+ aTextColor: string;
1507
+ blockquoteTextColor: string;
1508
+ blockquotePrefixColor: string;
1509
+ blockquoteLineHeight: string;
1510
+ blockquoteFontSize: string;
1511
+ codeBorderRadius: string;
1512
+ liTextColor: string;
1513
+ liLineHeight: string;
1514
+ liFontSize: string;
1515
+ hrColor: string;
1516
+ headerFontWeight: string;
1517
+ headerTextColor: string;
1518
+ pTextColor: string;
1519
+ pTextColor1Depth: string;
1520
+ pTextColor2Depth: string;
1521
+ pTextColor3Depth: string;
1522
+ pLineHeight: string;
1523
+ pFontSize: string;
1524
+ headerBarColor: string;
1525
+ headerBarColorPrimary: string;
1526
+ headerBarColorInfo: string;
1527
+ headerBarColorError: string;
1528
+ headerBarColorWarning: string;
1529
+ headerBarColorSuccess: string;
1530
+ textColor: string;
1531
+ textColor1Depth: string;
1532
+ textColor2Depth: string;
1533
+ textColor3Depth: string;
1534
+ textColorPrimary: string;
1535
+ textColorInfo: string;
1536
+ textColorSuccess: string;
1537
+ textColorWarning: string;
1538
+ textColorError: string;
1539
+ codeTextColor: string;
1540
+ codeColor: string;
1541
+ codeBorder: string;
1542
+ headerFontSize1: string;
1543
+ headerFontSize2: string;
1544
+ headerFontSize3: string;
1545
+ headerFontSize4: string;
1546
+ headerFontSize5: string;
1547
+ headerFontSize6: string;
1548
+ headerMargin1: string;
1549
+ headerMargin2: string;
1550
+ headerMargin3: string;
1551
+ headerMargin4: string;
1552
+ headerMargin5: string;
1553
+ headerMargin6: string;
1554
+ headerPrefixWidth1: string;
1555
+ headerPrefixWidth2: string;
1556
+ headerPrefixWidth3: string;
1557
+ headerPrefixWidth4: string;
1558
+ headerPrefixWidth5: string;
1559
+ headerPrefixWidth6: string;
1560
+ headerBarWidth1: string;
1561
+ headerBarWidth2: string;
1562
+ headerBarWidth3: string;
1563
+ headerBarWidth4: string;
1564
+ headerBarWidth5: string;
1565
+ headerBarWidth6: string;
1566
+ pMargin: string;
1567
+ liMargin: string;
1568
+ olPadding: string;
1569
+ ulPadding: string;
1570
+ }, any>>>;
1571
+ }>>, {
1572
+ readonly type: string;
1573
+ readonly delete: boolean;
1574
+ readonly italic: boolean;
1575
+ readonly underline: boolean;
1576
+ readonly as: string;
1577
+ readonly code: boolean;
1578
+ readonly strong: boolean;
1579
+ }>;
1580
+ NSpace: any;
1581
+ 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<{}>>, {}>;
1582
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1583
+ saveIReportFormat: {
1584
+ type: FunctionConstructor;
1585
+ required: true;
1586
+ default: () => Promise<void>;
1587
+ };
1588
+ }>>, {
1589
+ saveIReportFormat: Function;
1590
+ }>;
344
1591
  }, 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<{
345
1592
  verifyUser: {
346
1593
  type: FunctionConstructor;
@@ -356,6 +1603,11 @@ declare const _default: import("vue").DefineComponent<{
356
1603
  type: BooleanConstructor;
357
1604
  required: true;
358
1605
  };
1606
+ printType: {
1607
+ type: (NumberConstructor | StringConstructor)[];
1608
+ required: true;
1609
+ default: number;
1610
+ };
359
1611
  }>> & {
360
1612
  onClose?: ((...args: any[]) => any) | undefined;
361
1613
  onSuccess?: ((...args: any[]) => any) | undefined;
@@ -363,5 +1615,6 @@ declare const _default: import("vue").DefineComponent<{
363
1615
  }, {
364
1616
  verifyUser: Function;
365
1617
  identityVerificationTitle: string;
1618
+ printType: string | number;
366
1619
  }>;
367
1620
  export default _default;