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
  declare const _default: import("vue").DefineComponent<{
2
3
  printParams: {
3
4
  type: ArrayConstructor;
@@ -60,6 +61,10 @@ declare const _default: import("vue").DefineComponent<{
60
61
  default: string;
61
62
  type: StringConstructor;
62
63
  };
64
+ queryPrintFile: {
65
+ type: FunctionConstructor;
66
+ default: () => Promise<{}>;
67
+ };
63
68
  }, {
64
69
  $message: import("naive-ui").MessageApi;
65
70
  printInstance: any;
@@ -125,6 +130,10 @@ declare const _default: import("vue").DefineComponent<{
125
130
  default: string;
126
131
  type: StringConstructor;
127
132
  };
133
+ queryPrintFile: {
134
+ type: FunctionConstructor;
135
+ default: () => Promise<{}>;
136
+ };
128
137
  }>> & {
129
138
  onError?: ((...args: any[]) => any) | undefined;
130
139
  onSuccess?: ((...args: any[]) => any) | undefined;
@@ -144,6 +153,7 @@ declare const _default: import("vue").DefineComponent<{
144
153
  isInited: boolean;
145
154
  watchPrintParamsReformatFn: null;
146
155
  spinTimer: null;
156
+ fileObject: null;
147
157
  };
148
158
  options: {
149
159
  label: string;
@@ -158,6 +168,7 @@ declare const _default: import("vue").DefineComponent<{
158
168
  prevFnError: () => void;
159
169
  getPrintParams: (index?: number) => string;
160
170
  getOnceParams: () => string;
171
+ browserPrint: (mode: any) => Promise<void>;
161
172
  handleClickPrint: () => void;
162
173
  handleClickPreview: () => Promise<void>;
163
174
  handleClickPdf: () => Promise<void>;
@@ -199,20 +210,29 @@ declare const _default: import("vue").DefineComponent<{
199
210
  type: BooleanConstructor;
200
211
  required: true;
201
212
  };
213
+ printType: {
214
+ type: (NumberConstructor | StringConstructor)[];
215
+ required: true;
216
+ default: number;
217
+ };
202
218
  }, {
203
219
  $message: import("naive-ui").MessageApi;
204
220
  DEFAULT_FORM: {
205
- account: string; /**
206
- * 打印预览按钮文本
207
- */
221
+ account: string;
208
222
  password: string;
209
223
  };
210
224
  props: {
211
225
  verifyUser: Function;
212
226
  identityVerificationTitle: string;
213
227
  modelValue: boolean;
228
+ printType: string | number;
214
229
  };
215
230
  emit: (event: "close" | "success" | "update:modelValue", ...args: any[]) => void;
231
+ editFormRef: import("vue").Ref<{
232
+ submit: Function;
233
+ } | null>;
234
+ showEditForm: import("vue").Ref<boolean>;
235
+ token: import("vue").Ref<string>;
216
236
  form: {
217
237
  account: string;
218
238
  password: string;
@@ -229,6 +249,7 @@ declare const _default: import("vue").DefineComponent<{
229
249
  loading: import("vue").Ref<boolean>;
230
250
  submit: () => Promise<false | undefined>;
231
251
  handleClickSubmit: () => void;
252
+ submitEditFile: () => Promise<false | undefined>;
232
253
  NButton: any;
233
254
  NModal: any;
234
255
  NForm: any;
@@ -528,6 +549,1240 @@ declare const _default: import("vue").DefineComponent<{
528
549
  readonly ignorePathChange: boolean;
529
550
  }>;
530
551
  NInput: any;
552
+ EditForm: import("vue").DefineComponent<{
553
+ saveIReportFormat: {
554
+ type: FunctionConstructor;
555
+ required: true;
556
+ default: () => Promise<void>;
557
+ };
558
+ }, {
559
+ $message: import("naive-ui").MessageApi;
560
+ props: {
561
+ saveIReportFormat: Function;
562
+ };
563
+ fileList: import("vue").Ref<{
564
+ key: string;
565
+ value: {
566
+ id: string;
567
+ name: string;
568
+ batchId?: string | null | undefined;
569
+ percentage?: number | null | undefined;
570
+ status: "error" | "pending" | "uploading" | "finished" | "removed";
571
+ url?: string | null | undefined;
572
+ file?: {
573
+ readonly lastModified: number;
574
+ readonly name: string;
575
+ readonly webkitRelativePath: string;
576
+ readonly size: number;
577
+ readonly type: string;
578
+ arrayBuffer: {
579
+ (): Promise<ArrayBuffer>;
580
+ (): Promise<ArrayBuffer>;
581
+ };
582
+ slice: {
583
+ (start?: number | undefined, end?: number | undefined, contentType?: string | undefined): Blob;
584
+ (start?: number | undefined, end?: number | undefined, contentType?: string | undefined): Blob;
585
+ };
586
+ stream: {
587
+ (): ReadableStream<Uint8Array>;
588
+ (): NodeJS.ReadableStream;
589
+ };
590
+ text: {
591
+ (): Promise<string>;
592
+ (): Promise<string>;
593
+ };
594
+ } | null | undefined;
595
+ thumbnailUrl?: string | null | undefined;
596
+ type?: string | null | undefined;
597
+ fullPath?: string | null | undefined;
598
+ }[];
599
+ }[]>;
600
+ submit: (token: string) => Promise<unknown>;
601
+ onChange: (data: {
602
+ file: import("naive-ui").UploadFileInfo;
603
+ fileList: import("naive-ui").UploadFileInfo[];
604
+ }, index: number) => void;
605
+ onBeforeUpload: (data: {
606
+ file: import("naive-ui").UploadFileInfo;
607
+ fileList: import("naive-ui").UploadFileInfo[];
608
+ }) => Promise<boolean>;
609
+ validateFormat: (file: import("naive-ui").UploadFileInfo, format: string) => boolean;
610
+ NForm: any;
611
+ NFormItem: import("vue").DefineComponent<{
612
+ readonly label: StringConstructor;
613
+ readonly labelWidth: import("vue").PropType<string | number>;
614
+ readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
615
+ readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
616
+ readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
617
+ readonly path: StringConstructor;
618
+ readonly first: BooleanConstructor;
619
+ readonly rulePath: StringConstructor;
620
+ readonly required: BooleanConstructor;
621
+ readonly showRequireMark: {
622
+ readonly type: import("vue").PropType<boolean | undefined>;
623
+ readonly default: undefined;
624
+ };
625
+ readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
626
+ readonly showFeedback: {
627
+ readonly type: import("vue").PropType<boolean | undefined>;
628
+ readonly default: undefined;
629
+ };
630
+ readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
631
+ readonly size: import("vue").PropType<"small" | "medium" | "large">;
632
+ readonly ignorePathChange: BooleanConstructor;
633
+ readonly validationStatus: import("vue").PropType<"error" | "success" | "warning">;
634
+ readonly feedback: StringConstructor;
635
+ readonly showLabel: {
636
+ readonly type: import("vue").PropType<boolean | undefined>;
637
+ readonly default: undefined;
638
+ };
639
+ readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
640
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
641
+ blankHeightSmall: string;
642
+ blankHeightMedium: string;
643
+ blankHeightLarge: string;
644
+ lineHeight: string;
645
+ labelTextColor: string;
646
+ asteriskColor: string;
647
+ feedbackTextColorError: string;
648
+ feedbackTextColorWarning: string;
649
+ feedbackTextColor: string;
650
+ feedbackPadding: string;
651
+ feedbackHeightSmall: string;
652
+ feedbackHeightMedium: string;
653
+ feedbackHeightLarge: string;
654
+ feedbackFontSizeSmall: string;
655
+ feedbackFontSizeMedium: string;
656
+ feedbackFontSizeLarge: string;
657
+ labelFontSizeLeftSmall: string;
658
+ labelFontSizeLeftMedium: string;
659
+ labelFontSizeLeftLarge: string;
660
+ labelFontSizeTopSmall: string;
661
+ labelFontSizeTopMedium: string;
662
+ labelFontSizeTopLarge: string;
663
+ labelHeightSmall: string;
664
+ labelHeightMedium: string;
665
+ labelHeightLarge: string;
666
+ labelPaddingVertical: string;
667
+ labelPaddingHorizontal: string;
668
+ labelTextAlignVertical: string;
669
+ labelTextAlignHorizontal: string;
670
+ }, any>>;
671
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
672
+ blankHeightSmall: string;
673
+ blankHeightMedium: string;
674
+ blankHeightLarge: string;
675
+ lineHeight: string;
676
+ labelTextColor: string;
677
+ asteriskColor: string;
678
+ feedbackTextColorError: string;
679
+ feedbackTextColorWarning: string;
680
+ feedbackTextColor: string;
681
+ feedbackPadding: string;
682
+ feedbackHeightSmall: string;
683
+ feedbackHeightMedium: string;
684
+ feedbackHeightLarge: string;
685
+ feedbackFontSizeSmall: string;
686
+ feedbackFontSizeMedium: string;
687
+ feedbackFontSizeLarge: string;
688
+ labelFontSizeLeftSmall: string;
689
+ labelFontSizeLeftMedium: string;
690
+ labelFontSizeLeftLarge: string;
691
+ labelFontSizeTopSmall: string;
692
+ labelFontSizeTopMedium: string;
693
+ labelFontSizeTopLarge: string;
694
+ labelHeightSmall: string;
695
+ labelHeightMedium: string;
696
+ labelHeightLarge: string;
697
+ labelPaddingVertical: string;
698
+ labelPaddingHorizontal: string;
699
+ labelTextAlignVertical: string;
700
+ labelTextAlignHorizontal: string;
701
+ }, any>>>;
702
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
703
+ blankHeightSmall: string;
704
+ blankHeightMedium: string;
705
+ blankHeightLarge: string;
706
+ lineHeight: string;
707
+ labelTextColor: string;
708
+ asteriskColor: string;
709
+ feedbackTextColorError: string;
710
+ feedbackTextColorWarning: string;
711
+ feedbackTextColor: string;
712
+ feedbackPadding: string;
713
+ feedbackHeightSmall: string;
714
+ feedbackHeightMedium: string;
715
+ feedbackHeightLarge: string;
716
+ feedbackFontSizeSmall: string;
717
+ feedbackFontSizeMedium: string;
718
+ feedbackFontSizeLarge: string;
719
+ labelFontSizeLeftSmall: string;
720
+ labelFontSizeLeftMedium: string;
721
+ labelFontSizeLeftLarge: string;
722
+ labelFontSizeTopSmall: string;
723
+ labelFontSizeTopMedium: string;
724
+ labelFontSizeTopLarge: string;
725
+ labelHeightSmall: string;
726
+ labelHeightMedium: string;
727
+ labelHeightLarge: string;
728
+ labelPaddingVertical: string;
729
+ labelPaddingHorizontal: string;
730
+ labelTextAlignVertical: string;
731
+ labelTextAlignHorizontal: string;
732
+ }, any>>>;
733
+ }, {
734
+ cssVars: import("vue").ComputedRef<{
735
+ '--n-bezier': string;
736
+ '--n-line-height': string;
737
+ '--n-blank-height': string;
738
+ '--n-label-font-size': string;
739
+ '--n-label-text-align': string;
740
+ '--n-label-height': string;
741
+ '--n-label-padding': string;
742
+ '--n-asterisk-color': string;
743
+ '--n-label-text-color': string;
744
+ '--n-feedback-padding': string;
745
+ '--n-feedback-font-size': string;
746
+ '--n-feedback-height': string;
747
+ '--n-feedback-text-color': string;
748
+ '--n-feedback-text-color-warning': string;
749
+ '--n-feedback-text-color-error': string;
750
+ }> | undefined;
751
+ themeClass: import("vue").Ref<string>;
752
+ onRender: () => void;
753
+ validate: import("naive-ui/es/form/src/interface").FormItemValidate;
754
+ restoreValidation: () => void;
755
+ path?: string | undefined;
756
+ internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
757
+ mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").Size>;
758
+ validationErrored: import("vue").Ref<boolean>;
759
+ mergedLabelStyle: import("vue").ComputedRef<(import("vue").StyleValue | undefined)[]>;
760
+ mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelPlacement>;
761
+ mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelAlign | undefined>;
762
+ mergedShowRequireMark: import("vue").ComputedRef<boolean | undefined>;
763
+ mergedRequireMarkPlacement: import("vue").ComputedRef<"left" | "right" | "right-hanging">;
764
+ mergedValidationStatus: import("vue").ComputedRef<"error" | "success" | "warning" | undefined>;
765
+ mergedShowFeedback: import("vue").ComputedRef<boolean>;
766
+ mergedShowLabel: import("vue").ComputedRef<boolean>;
767
+ isAutoLabelWidth: import("vue").ComputedRef<boolean>;
768
+ labelElementRef: import("vue").Ref<HTMLLabelElement | null>;
769
+ mergedClsPrefix: import("vue").ComputedRef<string>;
770
+ mergedRequired: import("vue").ComputedRef<boolean>;
771
+ feedbackId: import("vue").Ref<string>;
772
+ renderExplains: import("vue").Ref<{
773
+ key: string;
774
+ render: () => import("vue").VNodeChild;
775
+ }[]>;
776
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
777
+ readonly label: StringConstructor;
778
+ readonly labelWidth: import("vue").PropType<string | number>;
779
+ readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
780
+ readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
781
+ readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
782
+ readonly path: StringConstructor;
783
+ readonly first: BooleanConstructor;
784
+ readonly rulePath: StringConstructor;
785
+ readonly required: BooleanConstructor;
786
+ readonly showRequireMark: {
787
+ readonly type: import("vue").PropType<boolean | undefined>;
788
+ readonly default: undefined;
789
+ };
790
+ readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
791
+ readonly showFeedback: {
792
+ readonly type: import("vue").PropType<boolean | undefined>;
793
+ readonly default: undefined;
794
+ };
795
+ readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
796
+ readonly size: import("vue").PropType<"small" | "medium" | "large">;
797
+ readonly ignorePathChange: BooleanConstructor;
798
+ readonly validationStatus: import("vue").PropType<"error" | "success" | "warning">;
799
+ readonly feedback: StringConstructor;
800
+ readonly showLabel: {
801
+ readonly type: import("vue").PropType<boolean | undefined>;
802
+ readonly default: undefined;
803
+ };
804
+ readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
805
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
806
+ blankHeightSmall: string;
807
+ blankHeightMedium: string;
808
+ blankHeightLarge: string;
809
+ lineHeight: string;
810
+ labelTextColor: string;
811
+ asteriskColor: string;
812
+ feedbackTextColorError: string;
813
+ feedbackTextColorWarning: string;
814
+ feedbackTextColor: string;
815
+ feedbackPadding: string;
816
+ feedbackHeightSmall: string;
817
+ feedbackHeightMedium: string;
818
+ feedbackHeightLarge: string;
819
+ feedbackFontSizeSmall: string;
820
+ feedbackFontSizeMedium: string;
821
+ feedbackFontSizeLarge: string;
822
+ labelFontSizeLeftSmall: string;
823
+ labelFontSizeLeftMedium: string;
824
+ labelFontSizeLeftLarge: string;
825
+ labelFontSizeTopSmall: string;
826
+ labelFontSizeTopMedium: string;
827
+ labelFontSizeTopLarge: string;
828
+ labelHeightSmall: string;
829
+ labelHeightMedium: string;
830
+ labelHeightLarge: string;
831
+ labelPaddingVertical: string;
832
+ labelPaddingHorizontal: string;
833
+ labelTextAlignVertical: string;
834
+ labelTextAlignHorizontal: string;
835
+ }, any>>;
836
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
837
+ blankHeightSmall: string;
838
+ blankHeightMedium: string;
839
+ blankHeightLarge: string;
840
+ lineHeight: string;
841
+ labelTextColor: string;
842
+ asteriskColor: string;
843
+ feedbackTextColorError: string;
844
+ feedbackTextColorWarning: string;
845
+ feedbackTextColor: string;
846
+ feedbackPadding: string;
847
+ feedbackHeightSmall: string;
848
+ feedbackHeightMedium: string;
849
+ feedbackHeightLarge: string;
850
+ feedbackFontSizeSmall: string;
851
+ feedbackFontSizeMedium: string;
852
+ feedbackFontSizeLarge: string;
853
+ labelFontSizeLeftSmall: string;
854
+ labelFontSizeLeftMedium: string;
855
+ labelFontSizeLeftLarge: string;
856
+ labelFontSizeTopSmall: string;
857
+ labelFontSizeTopMedium: string;
858
+ labelFontSizeTopLarge: string;
859
+ labelHeightSmall: string;
860
+ labelHeightMedium: string;
861
+ labelHeightLarge: string;
862
+ labelPaddingVertical: string;
863
+ labelPaddingHorizontal: string;
864
+ labelTextAlignVertical: string;
865
+ labelTextAlignHorizontal: string;
866
+ }, any>>>;
867
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
868
+ blankHeightSmall: string;
869
+ blankHeightMedium: string;
870
+ blankHeightLarge: string;
871
+ lineHeight: string;
872
+ labelTextColor: string;
873
+ asteriskColor: string;
874
+ feedbackTextColorError: string;
875
+ feedbackTextColorWarning: string;
876
+ feedbackTextColor: string;
877
+ feedbackPadding: string;
878
+ feedbackHeightSmall: string;
879
+ feedbackHeightMedium: string;
880
+ feedbackHeightLarge: string;
881
+ feedbackFontSizeSmall: string;
882
+ feedbackFontSizeMedium: string;
883
+ feedbackFontSizeLarge: string;
884
+ labelFontSizeLeftSmall: string;
885
+ labelFontSizeLeftMedium: string;
886
+ labelFontSizeLeftLarge: string;
887
+ labelFontSizeTopSmall: string;
888
+ labelFontSizeTopMedium: string;
889
+ labelFontSizeTopLarge: string;
890
+ labelHeightSmall: string;
891
+ labelHeightMedium: string;
892
+ labelHeightLarge: string;
893
+ labelPaddingVertical: string;
894
+ labelPaddingHorizontal: string;
895
+ labelTextAlignVertical: string;
896
+ labelTextAlignHorizontal: string;
897
+ }, any>>>;
898
+ }>>, {
899
+ readonly required: boolean;
900
+ readonly first: boolean;
901
+ readonly showRequireMark: boolean | undefined;
902
+ readonly showFeedback: boolean | undefined;
903
+ readonly showLabel: boolean | undefined;
904
+ readonly ignorePathChange: boolean;
905
+ }>;
906
+ NUpload: any;
907
+ 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<{}>>, {}>;
908
+ NP: import("vue").DefineComponent<{
909
+ depth: import("vue").PropType<2 | 1 | "1" | "2" | "3" | 3>;
910
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
911
+ aTextColor: string;
912
+ blockquoteTextColor: string;
913
+ blockquotePrefixColor: string;
914
+ blockquoteLineHeight: string;
915
+ blockquoteFontSize: string;
916
+ codeBorderRadius: string;
917
+ liTextColor: string;
918
+ liLineHeight: string;
919
+ liFontSize: string;
920
+ hrColor: string;
921
+ headerFontWeight: string;
922
+ headerTextColor: string;
923
+ pTextColor: string;
924
+ pTextColor1Depth: string;
925
+ pTextColor2Depth: string;
926
+ pTextColor3Depth: string;
927
+ pLineHeight: string;
928
+ pFontSize: string;
929
+ headerBarColor: string;
930
+ headerBarColorPrimary: string;
931
+ headerBarColorInfo: string;
932
+ headerBarColorError: string;
933
+ headerBarColorWarning: string;
934
+ headerBarColorSuccess: string;
935
+ textColor: string;
936
+ textColor1Depth: string;
937
+ textColor2Depth: string;
938
+ textColor3Depth: string;
939
+ textColorPrimary: string;
940
+ textColorInfo: string;
941
+ textColorSuccess: string;
942
+ textColorWarning: string;
943
+ textColorError: string;
944
+ codeTextColor: string;
945
+ codeColor: string;
946
+ codeBorder: string;
947
+ headerFontSize1: string;
948
+ headerFontSize2: string;
949
+ headerFontSize3: string;
950
+ headerFontSize4: string;
951
+ headerFontSize5: string;
952
+ headerFontSize6: string;
953
+ headerMargin1: string;
954
+ headerMargin2: string;
955
+ headerMargin3: string;
956
+ headerMargin4: string;
957
+ headerMargin5: string;
958
+ headerMargin6: string;
959
+ headerPrefixWidth1: string;
960
+ headerPrefixWidth2: string;
961
+ headerPrefixWidth3: string;
962
+ headerPrefixWidth4: string;
963
+ headerPrefixWidth5: string;
964
+ headerPrefixWidth6: string;
965
+ headerBarWidth1: string;
966
+ headerBarWidth2: string;
967
+ headerBarWidth3: string;
968
+ headerBarWidth4: string;
969
+ headerBarWidth5: string;
970
+ headerBarWidth6: string;
971
+ pMargin: string;
972
+ liMargin: string;
973
+ olPadding: string;
974
+ ulPadding: string;
975
+ }, any>>;
976
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
977
+ aTextColor: string;
978
+ blockquoteTextColor: string;
979
+ blockquotePrefixColor: string;
980
+ blockquoteLineHeight: string;
981
+ blockquoteFontSize: string;
982
+ codeBorderRadius: string;
983
+ liTextColor: string;
984
+ liLineHeight: string;
985
+ liFontSize: string;
986
+ hrColor: string;
987
+ headerFontWeight: string;
988
+ headerTextColor: string;
989
+ pTextColor: string;
990
+ pTextColor1Depth: string;
991
+ pTextColor2Depth: string;
992
+ pTextColor3Depth: string;
993
+ pLineHeight: string;
994
+ pFontSize: string;
995
+ headerBarColor: string;
996
+ headerBarColorPrimary: string;
997
+ headerBarColorInfo: string;
998
+ headerBarColorError: string;
999
+ headerBarColorWarning: string;
1000
+ headerBarColorSuccess: string;
1001
+ textColor: string;
1002
+ textColor1Depth: string;
1003
+ textColor2Depth: string;
1004
+ textColor3Depth: string;
1005
+ textColorPrimary: string;
1006
+ textColorInfo: string;
1007
+ textColorSuccess: string;
1008
+ textColorWarning: string;
1009
+ textColorError: string;
1010
+ codeTextColor: string;
1011
+ codeColor: string;
1012
+ codeBorder: string;
1013
+ headerFontSize1: string;
1014
+ headerFontSize2: string;
1015
+ headerFontSize3: string;
1016
+ headerFontSize4: string;
1017
+ headerFontSize5: string;
1018
+ headerFontSize6: string;
1019
+ headerMargin1: string;
1020
+ headerMargin2: string;
1021
+ headerMargin3: string;
1022
+ headerMargin4: string;
1023
+ headerMargin5: string;
1024
+ headerMargin6: string;
1025
+ headerPrefixWidth1: string;
1026
+ headerPrefixWidth2: string;
1027
+ headerPrefixWidth3: string;
1028
+ headerPrefixWidth4: string;
1029
+ headerPrefixWidth5: string;
1030
+ headerPrefixWidth6: string;
1031
+ headerBarWidth1: string;
1032
+ headerBarWidth2: string;
1033
+ headerBarWidth3: string;
1034
+ headerBarWidth4: string;
1035
+ headerBarWidth5: string;
1036
+ headerBarWidth6: string;
1037
+ pMargin: string;
1038
+ liMargin: string;
1039
+ olPadding: string;
1040
+ ulPadding: string;
1041
+ }, any>>>;
1042
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1043
+ aTextColor: string;
1044
+ blockquoteTextColor: string;
1045
+ blockquotePrefixColor: string;
1046
+ blockquoteLineHeight: string;
1047
+ blockquoteFontSize: string;
1048
+ codeBorderRadius: string;
1049
+ liTextColor: string;
1050
+ liLineHeight: string;
1051
+ liFontSize: string;
1052
+ hrColor: string;
1053
+ headerFontWeight: string;
1054
+ headerTextColor: string;
1055
+ pTextColor: string;
1056
+ pTextColor1Depth: string;
1057
+ pTextColor2Depth: string;
1058
+ pTextColor3Depth: string;
1059
+ pLineHeight: string;
1060
+ pFontSize: string;
1061
+ headerBarColor: string;
1062
+ headerBarColorPrimary: string;
1063
+ headerBarColorInfo: string;
1064
+ headerBarColorError: string;
1065
+ headerBarColorWarning: string;
1066
+ headerBarColorSuccess: string;
1067
+ textColor: string;
1068
+ textColor1Depth: string;
1069
+ textColor2Depth: string;
1070
+ textColor3Depth: string;
1071
+ textColorPrimary: string;
1072
+ textColorInfo: string;
1073
+ textColorSuccess: string;
1074
+ textColorWarning: string;
1075
+ textColorError: string;
1076
+ codeTextColor: string;
1077
+ codeColor: string;
1078
+ codeBorder: string;
1079
+ headerFontSize1: string;
1080
+ headerFontSize2: string;
1081
+ headerFontSize3: string;
1082
+ headerFontSize4: string;
1083
+ headerFontSize5: string;
1084
+ headerFontSize6: string;
1085
+ headerMargin1: string;
1086
+ headerMargin2: string;
1087
+ headerMargin3: string;
1088
+ headerMargin4: string;
1089
+ headerMargin5: string;
1090
+ headerMargin6: string;
1091
+ headerPrefixWidth1: string;
1092
+ headerPrefixWidth2: string;
1093
+ headerPrefixWidth3: string;
1094
+ headerPrefixWidth4: string;
1095
+ headerPrefixWidth5: string;
1096
+ headerPrefixWidth6: string;
1097
+ headerBarWidth1: string;
1098
+ headerBarWidth2: string;
1099
+ headerBarWidth3: string;
1100
+ headerBarWidth4: string;
1101
+ headerBarWidth5: string;
1102
+ headerBarWidth6: string;
1103
+ pMargin: string;
1104
+ liMargin: string;
1105
+ olPadding: string;
1106
+ ulPadding: string;
1107
+ }, any>>>;
1108
+ }, {
1109
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1110
+ cssVars: import("vue").ComputedRef<{
1111
+ '--n-bezier': string;
1112
+ '--n-font-size': string;
1113
+ '--n-line-height': string;
1114
+ '--n-margin': string;
1115
+ '--n-text-color': string;
1116
+ }> | undefined;
1117
+ themeClass: import("vue").Ref<string> | undefined;
1118
+ onRender: (() => void) | undefined;
1119
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1120
+ depth: import("vue").PropType<2 | 1 | "1" | "2" | "3" | 3>;
1121
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1122
+ aTextColor: string;
1123
+ blockquoteTextColor: string;
1124
+ blockquotePrefixColor: string;
1125
+ blockquoteLineHeight: string;
1126
+ blockquoteFontSize: string;
1127
+ codeBorderRadius: string;
1128
+ liTextColor: string;
1129
+ liLineHeight: string;
1130
+ liFontSize: string;
1131
+ hrColor: string;
1132
+ headerFontWeight: string;
1133
+ headerTextColor: string;
1134
+ pTextColor: string;
1135
+ pTextColor1Depth: string;
1136
+ pTextColor2Depth: string;
1137
+ pTextColor3Depth: string;
1138
+ pLineHeight: string;
1139
+ pFontSize: string;
1140
+ headerBarColor: string;
1141
+ headerBarColorPrimary: string;
1142
+ headerBarColorInfo: string;
1143
+ headerBarColorError: string;
1144
+ headerBarColorWarning: string;
1145
+ headerBarColorSuccess: string;
1146
+ textColor: string;
1147
+ textColor1Depth: string;
1148
+ textColor2Depth: string;
1149
+ textColor3Depth: string;
1150
+ textColorPrimary: string;
1151
+ textColorInfo: string;
1152
+ textColorSuccess: string;
1153
+ textColorWarning: string;
1154
+ textColorError: string;
1155
+ codeTextColor: string;
1156
+ codeColor: string;
1157
+ codeBorder: string;
1158
+ headerFontSize1: string;
1159
+ headerFontSize2: string;
1160
+ headerFontSize3: string;
1161
+ headerFontSize4: string;
1162
+ headerFontSize5: string;
1163
+ headerFontSize6: string;
1164
+ headerMargin1: string;
1165
+ headerMargin2: string;
1166
+ headerMargin3: string;
1167
+ headerMargin4: string;
1168
+ headerMargin5: string;
1169
+ headerMargin6: string;
1170
+ headerPrefixWidth1: string;
1171
+ headerPrefixWidth2: string;
1172
+ headerPrefixWidth3: string;
1173
+ headerPrefixWidth4: string;
1174
+ headerPrefixWidth5: string;
1175
+ headerPrefixWidth6: string;
1176
+ headerBarWidth1: string;
1177
+ headerBarWidth2: string;
1178
+ headerBarWidth3: string;
1179
+ headerBarWidth4: string;
1180
+ headerBarWidth5: string;
1181
+ headerBarWidth6: string;
1182
+ pMargin: string;
1183
+ liMargin: string;
1184
+ olPadding: string;
1185
+ ulPadding: string;
1186
+ }, any>>;
1187
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1188
+ aTextColor: string;
1189
+ blockquoteTextColor: string;
1190
+ blockquotePrefixColor: string;
1191
+ blockquoteLineHeight: string;
1192
+ blockquoteFontSize: string;
1193
+ codeBorderRadius: string;
1194
+ liTextColor: string;
1195
+ liLineHeight: string;
1196
+ liFontSize: string;
1197
+ hrColor: string;
1198
+ headerFontWeight: string;
1199
+ headerTextColor: string;
1200
+ pTextColor: string;
1201
+ pTextColor1Depth: string;
1202
+ pTextColor2Depth: string;
1203
+ pTextColor3Depth: string;
1204
+ pLineHeight: string;
1205
+ pFontSize: string;
1206
+ headerBarColor: string;
1207
+ headerBarColorPrimary: string;
1208
+ headerBarColorInfo: string;
1209
+ headerBarColorError: string;
1210
+ headerBarColorWarning: string;
1211
+ headerBarColorSuccess: string;
1212
+ textColor: string;
1213
+ textColor1Depth: string;
1214
+ textColor2Depth: string;
1215
+ textColor3Depth: string;
1216
+ textColorPrimary: string;
1217
+ textColorInfo: string;
1218
+ textColorSuccess: string;
1219
+ textColorWarning: string;
1220
+ textColorError: string;
1221
+ codeTextColor: string;
1222
+ codeColor: string;
1223
+ codeBorder: string;
1224
+ headerFontSize1: string;
1225
+ headerFontSize2: string;
1226
+ headerFontSize3: string;
1227
+ headerFontSize4: string;
1228
+ headerFontSize5: string;
1229
+ headerFontSize6: string;
1230
+ headerMargin1: string;
1231
+ headerMargin2: string;
1232
+ headerMargin3: string;
1233
+ headerMargin4: string;
1234
+ headerMargin5: string;
1235
+ headerMargin6: string;
1236
+ headerPrefixWidth1: string;
1237
+ headerPrefixWidth2: string;
1238
+ headerPrefixWidth3: string;
1239
+ headerPrefixWidth4: string;
1240
+ headerPrefixWidth5: string;
1241
+ headerPrefixWidth6: string;
1242
+ headerBarWidth1: string;
1243
+ headerBarWidth2: string;
1244
+ headerBarWidth3: string;
1245
+ headerBarWidth4: string;
1246
+ headerBarWidth5: string;
1247
+ headerBarWidth6: string;
1248
+ pMargin: string;
1249
+ liMargin: string;
1250
+ olPadding: string;
1251
+ ulPadding: string;
1252
+ }, any>>>;
1253
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1254
+ aTextColor: string;
1255
+ blockquoteTextColor: string;
1256
+ blockquotePrefixColor: string;
1257
+ blockquoteLineHeight: string;
1258
+ blockquoteFontSize: string;
1259
+ codeBorderRadius: string;
1260
+ liTextColor: string;
1261
+ liLineHeight: string;
1262
+ liFontSize: string;
1263
+ hrColor: string;
1264
+ headerFontWeight: string;
1265
+ headerTextColor: string;
1266
+ pTextColor: string;
1267
+ pTextColor1Depth: string;
1268
+ pTextColor2Depth: string;
1269
+ pTextColor3Depth: string;
1270
+ pLineHeight: string;
1271
+ pFontSize: string;
1272
+ headerBarColor: string;
1273
+ headerBarColorPrimary: string;
1274
+ headerBarColorInfo: string;
1275
+ headerBarColorError: string;
1276
+ headerBarColorWarning: string;
1277
+ headerBarColorSuccess: string;
1278
+ textColor: string;
1279
+ textColor1Depth: string;
1280
+ textColor2Depth: string;
1281
+ textColor3Depth: string;
1282
+ textColorPrimary: string;
1283
+ textColorInfo: string;
1284
+ textColorSuccess: string;
1285
+ textColorWarning: string;
1286
+ textColorError: string;
1287
+ codeTextColor: string;
1288
+ codeColor: string;
1289
+ codeBorder: string;
1290
+ headerFontSize1: string;
1291
+ headerFontSize2: string;
1292
+ headerFontSize3: string;
1293
+ headerFontSize4: string;
1294
+ headerFontSize5: string;
1295
+ headerFontSize6: string;
1296
+ headerMargin1: string;
1297
+ headerMargin2: string;
1298
+ headerMargin3: string;
1299
+ headerMargin4: string;
1300
+ headerMargin5: string;
1301
+ headerMargin6: string;
1302
+ headerPrefixWidth1: string;
1303
+ headerPrefixWidth2: string;
1304
+ headerPrefixWidth3: string;
1305
+ headerPrefixWidth4: string;
1306
+ headerPrefixWidth5: string;
1307
+ headerPrefixWidth6: string;
1308
+ headerBarWidth1: string;
1309
+ headerBarWidth2: string;
1310
+ headerBarWidth3: string;
1311
+ headerBarWidth4: string;
1312
+ headerBarWidth5: string;
1313
+ headerBarWidth6: string;
1314
+ pMargin: string;
1315
+ liMargin: string;
1316
+ olPadding: string;
1317
+ ulPadding: string;
1318
+ }, any>>>;
1319
+ }>>, {}>;
1320
+ NIcon: any;
1321
+ NText: import("vue").DefineComponent<{
1322
+ readonly code: BooleanConstructor;
1323
+ readonly type: {
1324
+ readonly type: StringConstructor;
1325
+ readonly default: "default";
1326
+ };
1327
+ readonly delete: BooleanConstructor;
1328
+ readonly strong: BooleanConstructor;
1329
+ readonly italic: BooleanConstructor;
1330
+ readonly underline: BooleanConstructor;
1331
+ readonly depth: import("vue").PropType<2 | 1 | "1" | "2" | "3" | 3>;
1332
+ readonly tag: StringConstructor;
1333
+ readonly as: {
1334
+ readonly type: StringConstructor;
1335
+ readonly validator: () => boolean;
1336
+ readonly default: undefined;
1337
+ };
1338
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1339
+ aTextColor: string;
1340
+ blockquoteTextColor: string;
1341
+ blockquotePrefixColor: string;
1342
+ blockquoteLineHeight: string;
1343
+ blockquoteFontSize: string;
1344
+ codeBorderRadius: string;
1345
+ liTextColor: string;
1346
+ liLineHeight: string;
1347
+ liFontSize: string;
1348
+ hrColor: string;
1349
+ headerFontWeight: string;
1350
+ headerTextColor: string;
1351
+ pTextColor: string;
1352
+ pTextColor1Depth: string;
1353
+ pTextColor2Depth: string;
1354
+ pTextColor3Depth: string;
1355
+ pLineHeight: string;
1356
+ pFontSize: string;
1357
+ headerBarColor: string;
1358
+ headerBarColorPrimary: string;
1359
+ headerBarColorInfo: string;
1360
+ headerBarColorError: string;
1361
+ headerBarColorWarning: string;
1362
+ headerBarColorSuccess: string;
1363
+ textColor: string;
1364
+ textColor1Depth: string;
1365
+ textColor2Depth: string;
1366
+ textColor3Depth: string;
1367
+ textColorPrimary: string;
1368
+ textColorInfo: string;
1369
+ textColorSuccess: string;
1370
+ textColorWarning: string;
1371
+ textColorError: string;
1372
+ codeTextColor: string;
1373
+ codeColor: string;
1374
+ codeBorder: string;
1375
+ headerFontSize1: string;
1376
+ headerFontSize2: string;
1377
+ headerFontSize3: string;
1378
+ headerFontSize4: string;
1379
+ headerFontSize5: string;
1380
+ headerFontSize6: string;
1381
+ headerMargin1: string;
1382
+ headerMargin2: string;
1383
+ headerMargin3: string;
1384
+ headerMargin4: string;
1385
+ headerMargin5: string;
1386
+ headerMargin6: string;
1387
+ headerPrefixWidth1: string;
1388
+ headerPrefixWidth2: string;
1389
+ headerPrefixWidth3: string;
1390
+ headerPrefixWidth4: string;
1391
+ headerPrefixWidth5: string;
1392
+ headerPrefixWidth6: string;
1393
+ headerBarWidth1: string;
1394
+ headerBarWidth2: string;
1395
+ headerBarWidth3: string;
1396
+ headerBarWidth4: string;
1397
+ headerBarWidth5: string;
1398
+ headerBarWidth6: string;
1399
+ pMargin: string;
1400
+ liMargin: string;
1401
+ olPadding: string;
1402
+ ulPadding: string;
1403
+ }, any>>;
1404
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1405
+ aTextColor: string;
1406
+ blockquoteTextColor: string;
1407
+ blockquotePrefixColor: string;
1408
+ blockquoteLineHeight: string;
1409
+ blockquoteFontSize: string;
1410
+ codeBorderRadius: string;
1411
+ liTextColor: string;
1412
+ liLineHeight: string;
1413
+ liFontSize: string;
1414
+ hrColor: string;
1415
+ headerFontWeight: string;
1416
+ headerTextColor: string;
1417
+ pTextColor: string;
1418
+ pTextColor1Depth: string;
1419
+ pTextColor2Depth: string;
1420
+ pTextColor3Depth: string;
1421
+ pLineHeight: string;
1422
+ pFontSize: string;
1423
+ headerBarColor: string;
1424
+ headerBarColorPrimary: string;
1425
+ headerBarColorInfo: string;
1426
+ headerBarColorError: string;
1427
+ headerBarColorWarning: string;
1428
+ headerBarColorSuccess: string;
1429
+ textColor: string;
1430
+ textColor1Depth: string;
1431
+ textColor2Depth: string;
1432
+ textColor3Depth: string;
1433
+ textColorPrimary: string;
1434
+ textColorInfo: string;
1435
+ textColorSuccess: string;
1436
+ textColorWarning: string;
1437
+ textColorError: string;
1438
+ codeTextColor: string;
1439
+ codeColor: string;
1440
+ codeBorder: string;
1441
+ headerFontSize1: string;
1442
+ headerFontSize2: string;
1443
+ headerFontSize3: string;
1444
+ headerFontSize4: string;
1445
+ headerFontSize5: string;
1446
+ headerFontSize6: string;
1447
+ headerMargin1: string;
1448
+ headerMargin2: string;
1449
+ headerMargin3: string;
1450
+ headerMargin4: string;
1451
+ headerMargin5: string;
1452
+ headerMargin6: string;
1453
+ headerPrefixWidth1: string;
1454
+ headerPrefixWidth2: string;
1455
+ headerPrefixWidth3: string;
1456
+ headerPrefixWidth4: string;
1457
+ headerPrefixWidth5: string;
1458
+ headerPrefixWidth6: string;
1459
+ headerBarWidth1: string;
1460
+ headerBarWidth2: string;
1461
+ headerBarWidth3: string;
1462
+ headerBarWidth4: string;
1463
+ headerBarWidth5: string;
1464
+ headerBarWidth6: string;
1465
+ pMargin: string;
1466
+ liMargin: string;
1467
+ olPadding: string;
1468
+ ulPadding: string;
1469
+ }, any>>>;
1470
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1471
+ aTextColor: string;
1472
+ blockquoteTextColor: string;
1473
+ blockquotePrefixColor: string;
1474
+ blockquoteLineHeight: string;
1475
+ blockquoteFontSize: string;
1476
+ codeBorderRadius: string;
1477
+ liTextColor: string;
1478
+ liLineHeight: string;
1479
+ liFontSize: string;
1480
+ hrColor: string;
1481
+ headerFontWeight: string;
1482
+ headerTextColor: string;
1483
+ pTextColor: string;
1484
+ pTextColor1Depth: string;
1485
+ pTextColor2Depth: string;
1486
+ pTextColor3Depth: string;
1487
+ pLineHeight: string;
1488
+ pFontSize: string;
1489
+ headerBarColor: string;
1490
+ headerBarColorPrimary: string;
1491
+ headerBarColorInfo: string;
1492
+ headerBarColorError: string;
1493
+ headerBarColorWarning: string;
1494
+ headerBarColorSuccess: string;
1495
+ textColor: string;
1496
+ textColor1Depth: string;
1497
+ textColor2Depth: string;
1498
+ textColor3Depth: string;
1499
+ textColorPrimary: string;
1500
+ textColorInfo: string;
1501
+ textColorSuccess: string;
1502
+ textColorWarning: string;
1503
+ textColorError: string;
1504
+ codeTextColor: string;
1505
+ codeColor: string;
1506
+ codeBorder: string;
1507
+ headerFontSize1: string;
1508
+ headerFontSize2: string;
1509
+ headerFontSize3: string;
1510
+ headerFontSize4: string;
1511
+ headerFontSize5: string;
1512
+ headerFontSize6: string;
1513
+ headerMargin1: string;
1514
+ headerMargin2: string;
1515
+ headerMargin3: string;
1516
+ headerMargin4: string;
1517
+ headerMargin5: string;
1518
+ headerMargin6: string;
1519
+ headerPrefixWidth1: string;
1520
+ headerPrefixWidth2: string;
1521
+ headerPrefixWidth3: string;
1522
+ headerPrefixWidth4: string;
1523
+ headerPrefixWidth5: string;
1524
+ headerPrefixWidth6: string;
1525
+ headerBarWidth1: string;
1526
+ headerBarWidth2: string;
1527
+ headerBarWidth3: string;
1528
+ headerBarWidth4: string;
1529
+ headerBarWidth5: string;
1530
+ headerBarWidth6: string;
1531
+ pMargin: string;
1532
+ liMargin: string;
1533
+ olPadding: string;
1534
+ ulPadding: string;
1535
+ }, any>>>;
1536
+ }, {
1537
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1538
+ compitableTag: import("vue").ComputedRef<string | undefined>;
1539
+ cssVars: import("vue").ComputedRef<{
1540
+ '--n-bezier': string;
1541
+ '--n-text-color': string;
1542
+ '--n-font-weight-strong': string;
1543
+ '--n-font-famliy-mono': string;
1544
+ '--n-code-border-radius': string;
1545
+ '--n-code-text-color': string;
1546
+ '--n-code-color': string;
1547
+ '--n-code-border': string;
1548
+ }> | undefined;
1549
+ themeClass: import("vue").Ref<string> | undefined;
1550
+ onRender: (() => void) | undefined;
1551
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1552
+ readonly code: BooleanConstructor;
1553
+ readonly type: {
1554
+ readonly type: StringConstructor;
1555
+ readonly default: "default";
1556
+ };
1557
+ readonly delete: BooleanConstructor;
1558
+ readonly strong: BooleanConstructor;
1559
+ readonly italic: BooleanConstructor;
1560
+ readonly underline: BooleanConstructor;
1561
+ readonly depth: import("vue").PropType<2 | 1 | "1" | "2" | "3" | 3>;
1562
+ readonly tag: StringConstructor;
1563
+ readonly as: {
1564
+ readonly type: StringConstructor;
1565
+ readonly validator: () => boolean;
1566
+ readonly default: undefined;
1567
+ };
1568
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Typography", {
1569
+ aTextColor: string;
1570
+ blockquoteTextColor: string;
1571
+ blockquotePrefixColor: string;
1572
+ blockquoteLineHeight: string;
1573
+ blockquoteFontSize: string;
1574
+ codeBorderRadius: string;
1575
+ liTextColor: string;
1576
+ liLineHeight: string;
1577
+ liFontSize: string;
1578
+ hrColor: string;
1579
+ headerFontWeight: string;
1580
+ headerTextColor: string;
1581
+ pTextColor: string;
1582
+ pTextColor1Depth: string;
1583
+ pTextColor2Depth: string;
1584
+ pTextColor3Depth: string;
1585
+ pLineHeight: string;
1586
+ pFontSize: string;
1587
+ headerBarColor: string;
1588
+ headerBarColorPrimary: string;
1589
+ headerBarColorInfo: string;
1590
+ headerBarColorError: string;
1591
+ headerBarColorWarning: string;
1592
+ headerBarColorSuccess: string;
1593
+ textColor: string;
1594
+ textColor1Depth: string;
1595
+ textColor2Depth: string;
1596
+ textColor3Depth: string;
1597
+ textColorPrimary: string;
1598
+ textColorInfo: string;
1599
+ textColorSuccess: string;
1600
+ textColorWarning: string;
1601
+ textColorError: string;
1602
+ codeTextColor: string;
1603
+ codeColor: string;
1604
+ codeBorder: string;
1605
+ headerFontSize1: string;
1606
+ headerFontSize2: string;
1607
+ headerFontSize3: string;
1608
+ headerFontSize4: string;
1609
+ headerFontSize5: string;
1610
+ headerFontSize6: string;
1611
+ headerMargin1: string;
1612
+ headerMargin2: string;
1613
+ headerMargin3: string;
1614
+ headerMargin4: string;
1615
+ headerMargin5: string;
1616
+ headerMargin6: string;
1617
+ headerPrefixWidth1: string;
1618
+ headerPrefixWidth2: string;
1619
+ headerPrefixWidth3: string;
1620
+ headerPrefixWidth4: string;
1621
+ headerPrefixWidth5: string;
1622
+ headerPrefixWidth6: string;
1623
+ headerBarWidth1: string;
1624
+ headerBarWidth2: string;
1625
+ headerBarWidth3: string;
1626
+ headerBarWidth4: string;
1627
+ headerBarWidth5: string;
1628
+ headerBarWidth6: string;
1629
+ pMargin: string;
1630
+ liMargin: string;
1631
+ olPadding: string;
1632
+ ulPadding: string;
1633
+ }, any>>;
1634
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1635
+ aTextColor: string;
1636
+ blockquoteTextColor: string;
1637
+ blockquotePrefixColor: string;
1638
+ blockquoteLineHeight: string;
1639
+ blockquoteFontSize: string;
1640
+ codeBorderRadius: string;
1641
+ liTextColor: string;
1642
+ liLineHeight: string;
1643
+ liFontSize: string;
1644
+ hrColor: string;
1645
+ headerFontWeight: string;
1646
+ headerTextColor: string;
1647
+ pTextColor: string;
1648
+ pTextColor1Depth: string;
1649
+ pTextColor2Depth: string;
1650
+ pTextColor3Depth: string;
1651
+ pLineHeight: string;
1652
+ pFontSize: string;
1653
+ headerBarColor: string;
1654
+ headerBarColorPrimary: string;
1655
+ headerBarColorInfo: string;
1656
+ headerBarColorError: string;
1657
+ headerBarColorWarning: string;
1658
+ headerBarColorSuccess: string;
1659
+ textColor: string;
1660
+ textColor1Depth: string;
1661
+ textColor2Depth: string;
1662
+ textColor3Depth: string;
1663
+ textColorPrimary: string;
1664
+ textColorInfo: string;
1665
+ textColorSuccess: string;
1666
+ textColorWarning: string;
1667
+ textColorError: string;
1668
+ codeTextColor: string;
1669
+ codeColor: string;
1670
+ codeBorder: string;
1671
+ headerFontSize1: string;
1672
+ headerFontSize2: string;
1673
+ headerFontSize3: string;
1674
+ headerFontSize4: string;
1675
+ headerFontSize5: string;
1676
+ headerFontSize6: string;
1677
+ headerMargin1: string;
1678
+ headerMargin2: string;
1679
+ headerMargin3: string;
1680
+ headerMargin4: string;
1681
+ headerMargin5: string;
1682
+ headerMargin6: string;
1683
+ headerPrefixWidth1: string;
1684
+ headerPrefixWidth2: string;
1685
+ headerPrefixWidth3: string;
1686
+ headerPrefixWidth4: string;
1687
+ headerPrefixWidth5: string;
1688
+ headerPrefixWidth6: string;
1689
+ headerBarWidth1: string;
1690
+ headerBarWidth2: string;
1691
+ headerBarWidth3: string;
1692
+ headerBarWidth4: string;
1693
+ headerBarWidth5: string;
1694
+ headerBarWidth6: string;
1695
+ pMargin: string;
1696
+ liMargin: string;
1697
+ olPadding: string;
1698
+ ulPadding: string;
1699
+ }, any>>>;
1700
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Typography", {
1701
+ aTextColor: string;
1702
+ blockquoteTextColor: string;
1703
+ blockquotePrefixColor: string;
1704
+ blockquoteLineHeight: string;
1705
+ blockquoteFontSize: string;
1706
+ codeBorderRadius: string;
1707
+ liTextColor: string;
1708
+ liLineHeight: string;
1709
+ liFontSize: string;
1710
+ hrColor: string;
1711
+ headerFontWeight: string;
1712
+ headerTextColor: string;
1713
+ pTextColor: string;
1714
+ pTextColor1Depth: string;
1715
+ pTextColor2Depth: string;
1716
+ pTextColor3Depth: string;
1717
+ pLineHeight: string;
1718
+ pFontSize: string;
1719
+ headerBarColor: string;
1720
+ headerBarColorPrimary: string;
1721
+ headerBarColorInfo: string;
1722
+ headerBarColorError: string;
1723
+ headerBarColorWarning: string;
1724
+ headerBarColorSuccess: string;
1725
+ textColor: string;
1726
+ textColor1Depth: string;
1727
+ textColor2Depth: string;
1728
+ textColor3Depth: string;
1729
+ textColorPrimary: string;
1730
+ textColorInfo: string;
1731
+ textColorSuccess: string;
1732
+ textColorWarning: string;
1733
+ textColorError: string;
1734
+ codeTextColor: string;
1735
+ codeColor: string;
1736
+ codeBorder: string;
1737
+ headerFontSize1: string;
1738
+ headerFontSize2: string;
1739
+ headerFontSize3: string;
1740
+ headerFontSize4: string;
1741
+ headerFontSize5: string;
1742
+ headerFontSize6: string;
1743
+ headerMargin1: string;
1744
+ headerMargin2: string;
1745
+ headerMargin3: string;
1746
+ headerMargin4: string;
1747
+ headerMargin5: string;
1748
+ headerMargin6: string;
1749
+ headerPrefixWidth1: string;
1750
+ headerPrefixWidth2: string;
1751
+ headerPrefixWidth3: string;
1752
+ headerPrefixWidth4: string;
1753
+ headerPrefixWidth5: string;
1754
+ headerPrefixWidth6: string;
1755
+ headerBarWidth1: string;
1756
+ headerBarWidth2: string;
1757
+ headerBarWidth3: string;
1758
+ headerBarWidth4: string;
1759
+ headerBarWidth5: string;
1760
+ headerBarWidth6: string;
1761
+ pMargin: string;
1762
+ liMargin: string;
1763
+ olPadding: string;
1764
+ ulPadding: string;
1765
+ }, any>>>;
1766
+ }>>, {
1767
+ readonly type: string;
1768
+ readonly delete: boolean;
1769
+ readonly italic: boolean;
1770
+ readonly underline: boolean;
1771
+ readonly as: string;
1772
+ readonly code: boolean;
1773
+ readonly strong: boolean;
1774
+ }>;
1775
+ NSpace: any;
1776
+ 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<{}>>, {}>;
1777
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1778
+ saveIReportFormat: {
1779
+ type: FunctionConstructor;
1780
+ required: true;
1781
+ default: () => Promise<void>;
1782
+ };
1783
+ }>>, {
1784
+ saveIReportFormat: Function;
1785
+ }>;
531
1786
  }, 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<{
532
1787
  verifyUser: {
533
1788
  type: FunctionConstructor;
@@ -543,6 +1798,11 @@ declare const _default: import("vue").DefineComponent<{
543
1798
  type: BooleanConstructor;
544
1799
  required: true;
545
1800
  };
1801
+ printType: {
1802
+ type: (NumberConstructor | StringConstructor)[];
1803
+ required: true;
1804
+ default: number;
1805
+ };
546
1806
  }>> & {
547
1807
  onClose?: ((...args: any[]) => any) | undefined;
548
1808
  onSuccess?: ((...args: any[]) => any) | undefined;
@@ -550,6 +1810,7 @@ declare const _default: import("vue").DefineComponent<{
550
1810
  }, {
551
1811
  verifyUser: Function;
552
1812
  identityVerificationTitle: string;
1813
+ printType: string | number;
553
1814
  }>;
554
1815
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "success" | "clickoutside")[], "error" | "success" | "clickoutside", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
555
1816
  printParams: {
@@ -613,6 +1874,10 @@ declare const _default: import("vue").DefineComponent<{
613
1874
  default: string;
614
1875
  type: StringConstructor;
615
1876
  };
1877
+ queryPrintFile: {
1878
+ type: FunctionConstructor;
1879
+ default: () => Promise<{}>;
1880
+ };
616
1881
  }>> & {
617
1882
  onError?: ((...args: any[]) => any) | undefined;
618
1883
  onSuccess?: ((...args: any[]) => any) | undefined;
@@ -631,5 +1896,6 @@ declare const _default: import("vue").DefineComponent<{
631
1896
  clickPrevFn: Function;
632
1897
  noDataMsg: string;
633
1898
  printdlgshow: string;
1899
+ queryPrintFile: Function;
634
1900
  }>;
635
1901
  export default _default;