halov 0.25.726 → 0.25.729
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.
- package/README.md +8 -8
- package/dist/components/ChangePassword.vue.d.ts +586 -1
- package/dist/components/DefaultPropertyForm.vue.d.ts +586 -2
- package/dist/components/ExportModal.vue.d.ts +316 -1
- package/dist/components/ImportModal.vue.d.ts +1 -1
- package/dist/components/NumberInputModal.vue.d.ts +898 -1
- package/dist/components/PropertyGrid.vue.d.ts +1 -1
- package/dist/components/UserMenu.vue.d.ts +586 -1
- package/dist/config.d.ts +0 -2
- package/dist/halov.es.js +2134 -2119
- package/dist/halov.umd.js +6 -6
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# halov library document
|
|
2
|
-
|
|
3
|
-
## Prerequisites
|
|
4
|
-
|
|
5
|
-
- Install `naive-ui`:
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install naive-ui
|
|
1
|
+
# halov library document
|
|
2
|
+
|
|
3
|
+
## Prerequisites
|
|
4
|
+
|
|
5
|
+
- Install `naive-ui`:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install naive-ui
|
|
9
9
|
|
|
@@ -584,5 +584,590 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
584
584
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
585
585
|
}>, {
|
|
586
586
|
show: boolean;
|
|
587
|
-
}, {}, {
|
|
587
|
+
}, {}, {
|
|
588
|
+
NForm: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
589
|
+
readonly inline: BooleanConstructor;
|
|
590
|
+
readonly labelWidth: import('vue').PropType<number | string>;
|
|
591
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
592
|
+
readonly labelPlacement: {
|
|
593
|
+
readonly type: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
594
|
+
readonly default: "top";
|
|
595
|
+
};
|
|
596
|
+
readonly model: {
|
|
597
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
598
|
+
readonly default: () => void;
|
|
599
|
+
};
|
|
600
|
+
readonly rules: import('vue').PropType<import('naive-ui').FormRules>;
|
|
601
|
+
readonly disabled: BooleanConstructor;
|
|
602
|
+
readonly size: import('vue').PropType<import('naive-ui/es/form/src/interface').Size>;
|
|
603
|
+
readonly showRequireMark: {
|
|
604
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
605
|
+
readonly default: undefined;
|
|
606
|
+
};
|
|
607
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
608
|
+
readonly showFeedback: {
|
|
609
|
+
readonly type: BooleanConstructor;
|
|
610
|
+
readonly default: true;
|
|
611
|
+
};
|
|
612
|
+
readonly onSubmit: {
|
|
613
|
+
readonly type: import('vue').PropType<(e: Event) => void>;
|
|
614
|
+
readonly default: (e: Event) => void;
|
|
615
|
+
};
|
|
616
|
+
readonly showLabel: {
|
|
617
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
618
|
+
readonly default: undefined;
|
|
619
|
+
};
|
|
620
|
+
readonly validateMessages: import('vue').PropType<Partial<import('naive-ui/es/form/src/interface').FormValidateMessages>>;
|
|
621
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
622
|
+
blankHeightSmall: string;
|
|
623
|
+
blankHeightMedium: string;
|
|
624
|
+
blankHeightLarge: string;
|
|
625
|
+
lineHeight: string;
|
|
626
|
+
labelTextColor: string;
|
|
627
|
+
asteriskColor: string;
|
|
628
|
+
feedbackTextColorError: string;
|
|
629
|
+
feedbackTextColorWarning: string;
|
|
630
|
+
feedbackTextColor: string;
|
|
631
|
+
feedbackPadding: string;
|
|
632
|
+
feedbackHeightSmall: string;
|
|
633
|
+
feedbackHeightMedium: string;
|
|
634
|
+
feedbackHeightLarge: string;
|
|
635
|
+
feedbackFontSizeSmall: string;
|
|
636
|
+
feedbackFontSizeMedium: string;
|
|
637
|
+
feedbackFontSizeLarge: string;
|
|
638
|
+
labelFontSizeLeftSmall: string;
|
|
639
|
+
labelFontSizeLeftMedium: string;
|
|
640
|
+
labelFontSizeLeftLarge: string;
|
|
641
|
+
labelFontSizeTopSmall: string;
|
|
642
|
+
labelFontSizeTopMedium: string;
|
|
643
|
+
labelFontSizeTopLarge: string;
|
|
644
|
+
labelHeightSmall: string;
|
|
645
|
+
labelHeightMedium: string;
|
|
646
|
+
labelHeightLarge: string;
|
|
647
|
+
labelPaddingVertical: string;
|
|
648
|
+
labelPaddingHorizontal: string;
|
|
649
|
+
labelTextAlignVertical: string;
|
|
650
|
+
labelTextAlignHorizontal: string;
|
|
651
|
+
labelFontWeight: string;
|
|
652
|
+
}, any>>;
|
|
653
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
654
|
+
blankHeightSmall: string;
|
|
655
|
+
blankHeightMedium: string;
|
|
656
|
+
blankHeightLarge: string;
|
|
657
|
+
lineHeight: string;
|
|
658
|
+
labelTextColor: string;
|
|
659
|
+
asteriskColor: string;
|
|
660
|
+
feedbackTextColorError: string;
|
|
661
|
+
feedbackTextColorWarning: string;
|
|
662
|
+
feedbackTextColor: string;
|
|
663
|
+
feedbackPadding: string;
|
|
664
|
+
feedbackHeightSmall: string;
|
|
665
|
+
feedbackHeightMedium: string;
|
|
666
|
+
feedbackHeightLarge: string;
|
|
667
|
+
feedbackFontSizeSmall: string;
|
|
668
|
+
feedbackFontSizeMedium: string;
|
|
669
|
+
feedbackFontSizeLarge: string;
|
|
670
|
+
labelFontSizeLeftSmall: string;
|
|
671
|
+
labelFontSizeLeftMedium: string;
|
|
672
|
+
labelFontSizeLeftLarge: string;
|
|
673
|
+
labelFontSizeTopSmall: string;
|
|
674
|
+
labelFontSizeTopMedium: string;
|
|
675
|
+
labelFontSizeTopLarge: string;
|
|
676
|
+
labelHeightSmall: string;
|
|
677
|
+
labelHeightMedium: string;
|
|
678
|
+
labelHeightLarge: string;
|
|
679
|
+
labelPaddingVertical: string;
|
|
680
|
+
labelPaddingHorizontal: string;
|
|
681
|
+
labelTextAlignVertical: string;
|
|
682
|
+
labelTextAlignHorizontal: string;
|
|
683
|
+
labelFontWeight: string;
|
|
684
|
+
}, any>>>;
|
|
685
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
686
|
+
blankHeightSmall: string;
|
|
687
|
+
blankHeightMedium: string;
|
|
688
|
+
blankHeightLarge: string;
|
|
689
|
+
lineHeight: string;
|
|
690
|
+
labelTextColor: string;
|
|
691
|
+
asteriskColor: string;
|
|
692
|
+
feedbackTextColorError: string;
|
|
693
|
+
feedbackTextColorWarning: string;
|
|
694
|
+
feedbackTextColor: string;
|
|
695
|
+
feedbackPadding: string;
|
|
696
|
+
feedbackHeightSmall: string;
|
|
697
|
+
feedbackHeightMedium: string;
|
|
698
|
+
feedbackHeightLarge: string;
|
|
699
|
+
feedbackFontSizeSmall: string;
|
|
700
|
+
feedbackFontSizeMedium: string;
|
|
701
|
+
feedbackFontSizeLarge: string;
|
|
702
|
+
labelFontSizeLeftSmall: string;
|
|
703
|
+
labelFontSizeLeftMedium: string;
|
|
704
|
+
labelFontSizeLeftLarge: string;
|
|
705
|
+
labelFontSizeTopSmall: string;
|
|
706
|
+
labelFontSizeTopMedium: string;
|
|
707
|
+
labelFontSizeTopLarge: string;
|
|
708
|
+
labelHeightSmall: string;
|
|
709
|
+
labelHeightMedium: string;
|
|
710
|
+
labelHeightLarge: string;
|
|
711
|
+
labelPaddingVertical: string;
|
|
712
|
+
labelPaddingHorizontal: string;
|
|
713
|
+
labelTextAlignVertical: string;
|
|
714
|
+
labelTextAlignHorizontal: string;
|
|
715
|
+
labelFontWeight: string;
|
|
716
|
+
}, any>>>;
|
|
717
|
+
}>, import('naive-ui').FormInst & {
|
|
718
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
719
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
720
|
+
readonly inline: BooleanConstructor;
|
|
721
|
+
readonly labelWidth: import('vue').PropType<number | string>;
|
|
722
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
723
|
+
readonly labelPlacement: {
|
|
724
|
+
readonly type: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
725
|
+
readonly default: "top";
|
|
726
|
+
};
|
|
727
|
+
readonly model: {
|
|
728
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
729
|
+
readonly default: () => void;
|
|
730
|
+
};
|
|
731
|
+
readonly rules: import('vue').PropType<import('naive-ui').FormRules>;
|
|
732
|
+
readonly disabled: BooleanConstructor;
|
|
733
|
+
readonly size: import('vue').PropType<import('naive-ui/es/form/src/interface').Size>;
|
|
734
|
+
readonly showRequireMark: {
|
|
735
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
736
|
+
readonly default: undefined;
|
|
737
|
+
};
|
|
738
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
739
|
+
readonly showFeedback: {
|
|
740
|
+
readonly type: BooleanConstructor;
|
|
741
|
+
readonly default: true;
|
|
742
|
+
};
|
|
743
|
+
readonly onSubmit: {
|
|
744
|
+
readonly type: import('vue').PropType<(e: Event) => void>;
|
|
745
|
+
readonly default: (e: Event) => void;
|
|
746
|
+
};
|
|
747
|
+
readonly showLabel: {
|
|
748
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
749
|
+
readonly default: undefined;
|
|
750
|
+
};
|
|
751
|
+
readonly validateMessages: import('vue').PropType<Partial<import('naive-ui/es/form/src/interface').FormValidateMessages>>;
|
|
752
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
753
|
+
blankHeightSmall: string;
|
|
754
|
+
blankHeightMedium: string;
|
|
755
|
+
blankHeightLarge: string;
|
|
756
|
+
lineHeight: string;
|
|
757
|
+
labelTextColor: string;
|
|
758
|
+
asteriskColor: string;
|
|
759
|
+
feedbackTextColorError: string;
|
|
760
|
+
feedbackTextColorWarning: string;
|
|
761
|
+
feedbackTextColor: string;
|
|
762
|
+
feedbackPadding: string;
|
|
763
|
+
feedbackHeightSmall: string;
|
|
764
|
+
feedbackHeightMedium: string;
|
|
765
|
+
feedbackHeightLarge: string;
|
|
766
|
+
feedbackFontSizeSmall: string;
|
|
767
|
+
feedbackFontSizeMedium: string;
|
|
768
|
+
feedbackFontSizeLarge: string;
|
|
769
|
+
labelFontSizeLeftSmall: string;
|
|
770
|
+
labelFontSizeLeftMedium: string;
|
|
771
|
+
labelFontSizeLeftLarge: string;
|
|
772
|
+
labelFontSizeTopSmall: string;
|
|
773
|
+
labelFontSizeTopMedium: string;
|
|
774
|
+
labelFontSizeTopLarge: string;
|
|
775
|
+
labelHeightSmall: string;
|
|
776
|
+
labelHeightMedium: string;
|
|
777
|
+
labelHeightLarge: string;
|
|
778
|
+
labelPaddingVertical: string;
|
|
779
|
+
labelPaddingHorizontal: string;
|
|
780
|
+
labelTextAlignVertical: string;
|
|
781
|
+
labelTextAlignHorizontal: string;
|
|
782
|
+
labelFontWeight: string;
|
|
783
|
+
}, any>>;
|
|
784
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
785
|
+
blankHeightSmall: string;
|
|
786
|
+
blankHeightMedium: string;
|
|
787
|
+
blankHeightLarge: string;
|
|
788
|
+
lineHeight: string;
|
|
789
|
+
labelTextColor: string;
|
|
790
|
+
asteriskColor: string;
|
|
791
|
+
feedbackTextColorError: string;
|
|
792
|
+
feedbackTextColorWarning: string;
|
|
793
|
+
feedbackTextColor: string;
|
|
794
|
+
feedbackPadding: string;
|
|
795
|
+
feedbackHeightSmall: string;
|
|
796
|
+
feedbackHeightMedium: string;
|
|
797
|
+
feedbackHeightLarge: string;
|
|
798
|
+
feedbackFontSizeSmall: string;
|
|
799
|
+
feedbackFontSizeMedium: string;
|
|
800
|
+
feedbackFontSizeLarge: string;
|
|
801
|
+
labelFontSizeLeftSmall: string;
|
|
802
|
+
labelFontSizeLeftMedium: string;
|
|
803
|
+
labelFontSizeLeftLarge: string;
|
|
804
|
+
labelFontSizeTopSmall: string;
|
|
805
|
+
labelFontSizeTopMedium: string;
|
|
806
|
+
labelFontSizeTopLarge: string;
|
|
807
|
+
labelHeightSmall: string;
|
|
808
|
+
labelHeightMedium: string;
|
|
809
|
+
labelHeightLarge: string;
|
|
810
|
+
labelPaddingVertical: string;
|
|
811
|
+
labelPaddingHorizontal: string;
|
|
812
|
+
labelTextAlignVertical: string;
|
|
813
|
+
labelTextAlignHorizontal: string;
|
|
814
|
+
labelFontWeight: string;
|
|
815
|
+
}, any>>>;
|
|
816
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
817
|
+
blankHeightSmall: string;
|
|
818
|
+
blankHeightMedium: string;
|
|
819
|
+
blankHeightLarge: string;
|
|
820
|
+
lineHeight: string;
|
|
821
|
+
labelTextColor: string;
|
|
822
|
+
asteriskColor: string;
|
|
823
|
+
feedbackTextColorError: string;
|
|
824
|
+
feedbackTextColorWarning: string;
|
|
825
|
+
feedbackTextColor: string;
|
|
826
|
+
feedbackPadding: string;
|
|
827
|
+
feedbackHeightSmall: string;
|
|
828
|
+
feedbackHeightMedium: string;
|
|
829
|
+
feedbackHeightLarge: string;
|
|
830
|
+
feedbackFontSizeSmall: string;
|
|
831
|
+
feedbackFontSizeMedium: string;
|
|
832
|
+
feedbackFontSizeLarge: string;
|
|
833
|
+
labelFontSizeLeftSmall: string;
|
|
834
|
+
labelFontSizeLeftMedium: string;
|
|
835
|
+
labelFontSizeLeftLarge: string;
|
|
836
|
+
labelFontSizeTopSmall: string;
|
|
837
|
+
labelFontSizeTopMedium: string;
|
|
838
|
+
labelFontSizeTopLarge: string;
|
|
839
|
+
labelHeightSmall: string;
|
|
840
|
+
labelHeightMedium: string;
|
|
841
|
+
labelHeightLarge: string;
|
|
842
|
+
labelPaddingVertical: string;
|
|
843
|
+
labelPaddingHorizontal: string;
|
|
844
|
+
labelTextAlignVertical: string;
|
|
845
|
+
labelTextAlignHorizontal: string;
|
|
846
|
+
labelFontWeight: string;
|
|
847
|
+
}, any>>>;
|
|
848
|
+
}>> & Readonly<{}>, {
|
|
849
|
+
readonly inline: boolean;
|
|
850
|
+
readonly disabled: boolean;
|
|
851
|
+
readonly onSubmit: (e: Event) => void;
|
|
852
|
+
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
853
|
+
readonly model: Record<string, any>;
|
|
854
|
+
readonly showRequireMark: boolean | undefined;
|
|
855
|
+
readonly showFeedback: boolean;
|
|
856
|
+
readonly showLabel: boolean | undefined;
|
|
857
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
858
|
+
NFormItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
859
|
+
readonly label: StringConstructor;
|
|
860
|
+
readonly labelWidth: import('vue').PropType<string | number>;
|
|
861
|
+
readonly labelStyle: import('vue').PropType<import('vue').CSSProperties | string>;
|
|
862
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
863
|
+
readonly labelPlacement: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
864
|
+
readonly path: StringConstructor;
|
|
865
|
+
readonly first: BooleanConstructor;
|
|
866
|
+
readonly rulePath: StringConstructor;
|
|
867
|
+
readonly required: BooleanConstructor;
|
|
868
|
+
readonly showRequireMark: {
|
|
869
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
870
|
+
readonly default: undefined;
|
|
871
|
+
};
|
|
872
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
873
|
+
readonly showFeedback: {
|
|
874
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
875
|
+
readonly default: undefined;
|
|
876
|
+
};
|
|
877
|
+
readonly rule: import('vue').PropType<import('naive-ui').FormItemRule | import('naive-ui').FormItemRule[]>;
|
|
878
|
+
readonly size: import('vue').PropType<"small" | "medium" | "large">;
|
|
879
|
+
readonly ignorePathChange: BooleanConstructor;
|
|
880
|
+
readonly validationStatus: import('vue').PropType<"error" | "warning" | "success">;
|
|
881
|
+
readonly feedback: StringConstructor;
|
|
882
|
+
readonly feedbackClass: StringConstructor;
|
|
883
|
+
readonly feedbackStyle: import('vue').PropType<string | import('vue').CSSProperties>;
|
|
884
|
+
readonly showLabel: {
|
|
885
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
886
|
+
readonly default: undefined;
|
|
887
|
+
};
|
|
888
|
+
readonly labelProps: import('vue').PropType<import('vue').LabelHTMLAttributes>;
|
|
889
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
890
|
+
blankHeightSmall: string;
|
|
891
|
+
blankHeightMedium: string;
|
|
892
|
+
blankHeightLarge: string;
|
|
893
|
+
lineHeight: string;
|
|
894
|
+
labelTextColor: string;
|
|
895
|
+
asteriskColor: string;
|
|
896
|
+
feedbackTextColorError: string;
|
|
897
|
+
feedbackTextColorWarning: string;
|
|
898
|
+
feedbackTextColor: string;
|
|
899
|
+
feedbackPadding: string;
|
|
900
|
+
feedbackHeightSmall: string;
|
|
901
|
+
feedbackHeightMedium: string;
|
|
902
|
+
feedbackHeightLarge: string;
|
|
903
|
+
feedbackFontSizeSmall: string;
|
|
904
|
+
feedbackFontSizeMedium: string;
|
|
905
|
+
feedbackFontSizeLarge: string;
|
|
906
|
+
labelFontSizeLeftSmall: string;
|
|
907
|
+
labelFontSizeLeftMedium: string;
|
|
908
|
+
labelFontSizeLeftLarge: string;
|
|
909
|
+
labelFontSizeTopSmall: string;
|
|
910
|
+
labelFontSizeTopMedium: string;
|
|
911
|
+
labelFontSizeTopLarge: string;
|
|
912
|
+
labelHeightSmall: string;
|
|
913
|
+
labelHeightMedium: string;
|
|
914
|
+
labelHeightLarge: string;
|
|
915
|
+
labelPaddingVertical: string;
|
|
916
|
+
labelPaddingHorizontal: string;
|
|
917
|
+
labelTextAlignVertical: string;
|
|
918
|
+
labelTextAlignHorizontal: string;
|
|
919
|
+
labelFontWeight: string;
|
|
920
|
+
}, any>>;
|
|
921
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
922
|
+
blankHeightSmall: string;
|
|
923
|
+
blankHeightMedium: string;
|
|
924
|
+
blankHeightLarge: string;
|
|
925
|
+
lineHeight: string;
|
|
926
|
+
labelTextColor: string;
|
|
927
|
+
asteriskColor: string;
|
|
928
|
+
feedbackTextColorError: string;
|
|
929
|
+
feedbackTextColorWarning: string;
|
|
930
|
+
feedbackTextColor: string;
|
|
931
|
+
feedbackPadding: string;
|
|
932
|
+
feedbackHeightSmall: string;
|
|
933
|
+
feedbackHeightMedium: string;
|
|
934
|
+
feedbackHeightLarge: string;
|
|
935
|
+
feedbackFontSizeSmall: string;
|
|
936
|
+
feedbackFontSizeMedium: string;
|
|
937
|
+
feedbackFontSizeLarge: string;
|
|
938
|
+
labelFontSizeLeftSmall: string;
|
|
939
|
+
labelFontSizeLeftMedium: string;
|
|
940
|
+
labelFontSizeLeftLarge: string;
|
|
941
|
+
labelFontSizeTopSmall: string;
|
|
942
|
+
labelFontSizeTopMedium: string;
|
|
943
|
+
labelFontSizeTopLarge: string;
|
|
944
|
+
labelHeightSmall: string;
|
|
945
|
+
labelHeightMedium: string;
|
|
946
|
+
labelHeightLarge: string;
|
|
947
|
+
labelPaddingVertical: string;
|
|
948
|
+
labelPaddingHorizontal: string;
|
|
949
|
+
labelTextAlignVertical: string;
|
|
950
|
+
labelTextAlignHorizontal: string;
|
|
951
|
+
labelFontWeight: string;
|
|
952
|
+
}, any>>>;
|
|
953
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
954
|
+
blankHeightSmall: string;
|
|
955
|
+
blankHeightMedium: string;
|
|
956
|
+
blankHeightLarge: string;
|
|
957
|
+
lineHeight: string;
|
|
958
|
+
labelTextColor: string;
|
|
959
|
+
asteriskColor: string;
|
|
960
|
+
feedbackTextColorError: string;
|
|
961
|
+
feedbackTextColorWarning: string;
|
|
962
|
+
feedbackTextColor: string;
|
|
963
|
+
feedbackPadding: string;
|
|
964
|
+
feedbackHeightSmall: string;
|
|
965
|
+
feedbackHeightMedium: string;
|
|
966
|
+
feedbackHeightLarge: string;
|
|
967
|
+
feedbackFontSizeSmall: string;
|
|
968
|
+
feedbackFontSizeMedium: string;
|
|
969
|
+
feedbackFontSizeLarge: string;
|
|
970
|
+
labelFontSizeLeftSmall: string;
|
|
971
|
+
labelFontSizeLeftMedium: string;
|
|
972
|
+
labelFontSizeLeftLarge: string;
|
|
973
|
+
labelFontSizeTopSmall: string;
|
|
974
|
+
labelFontSizeTopMedium: string;
|
|
975
|
+
labelFontSizeTopLarge: string;
|
|
976
|
+
labelHeightSmall: string;
|
|
977
|
+
labelHeightMedium: string;
|
|
978
|
+
labelHeightLarge: string;
|
|
979
|
+
labelPaddingVertical: string;
|
|
980
|
+
labelPaddingHorizontal: string;
|
|
981
|
+
labelTextAlignVertical: string;
|
|
982
|
+
labelTextAlignHorizontal: string;
|
|
983
|
+
labelFontWeight: string;
|
|
984
|
+
}, any>>>;
|
|
985
|
+
}>, {
|
|
986
|
+
cssVars: import('vue').ComputedRef<{
|
|
987
|
+
"--n-bezier": string;
|
|
988
|
+
"--n-line-height": string;
|
|
989
|
+
"--n-blank-height": string;
|
|
990
|
+
"--n-label-font-size": string;
|
|
991
|
+
"--n-label-text-align": string;
|
|
992
|
+
"--n-label-height": string;
|
|
993
|
+
"--n-label-padding": string;
|
|
994
|
+
"--n-label-font-weight": string;
|
|
995
|
+
"--n-asterisk-color": string;
|
|
996
|
+
"--n-label-text-color": string;
|
|
997
|
+
"--n-feedback-padding": string;
|
|
998
|
+
"--n-feedback-font-size": string;
|
|
999
|
+
"--n-feedback-height": string;
|
|
1000
|
+
"--n-feedback-text-color": string;
|
|
1001
|
+
"--n-feedback-text-color-warning": string;
|
|
1002
|
+
"--n-feedback-text-color-error": string;
|
|
1003
|
+
}> | undefined;
|
|
1004
|
+
themeClass: import('vue').Ref<string, string> | undefined;
|
|
1005
|
+
onRender: (() => void) | undefined;
|
|
1006
|
+
validate: import('naive-ui/es/form/src/interface').FormItemValidate;
|
|
1007
|
+
restoreValidation: () => void;
|
|
1008
|
+
path?: string;
|
|
1009
|
+
internalValidate: import('naive-ui/es/form/src/interface').FormItemInternalValidate;
|
|
1010
|
+
mergedSize: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').Size>;
|
|
1011
|
+
validationErrored: import('vue').Ref<boolean, boolean>;
|
|
1012
|
+
validationWarned: import('vue').Ref<boolean, boolean>;
|
|
1013
|
+
mergedLabelStyle: import('vue').ComputedRef<import('vue').StyleValue[]>;
|
|
1014
|
+
mergedLabelPlacement: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
1015
|
+
mergedLabelAlign: import('vue').ComputedRef<import('naive-ui/es/form/src/interface').LabelAlign | undefined>;
|
|
1016
|
+
mergedShowRequireMark: import('vue').ComputedRef<boolean | undefined>;
|
|
1017
|
+
mergedRequireMarkPlacement: import('vue').ComputedRef<"left" | "right" | "right-hanging">;
|
|
1018
|
+
mergedValidationStatus: import('vue').ComputedRef<"error" | "success" | "warning" | undefined>;
|
|
1019
|
+
mergedShowFeedback: import('vue').ComputedRef<boolean>;
|
|
1020
|
+
mergedShowLabel: import('vue').ComputedRef<boolean>;
|
|
1021
|
+
isAutoLabelWidth: import('vue').ComputedRef<boolean>;
|
|
1022
|
+
labelElementRef: import('vue').Ref<HTMLLabelElement | null, HTMLLabelElement | null>;
|
|
1023
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1024
|
+
mergedRequired: import('vue').ComputedRef<boolean>;
|
|
1025
|
+
feedbackId: import('vue').Ref<string, string>;
|
|
1026
|
+
renderExplains: import('vue').Ref<{
|
|
1027
|
+
key: string;
|
|
1028
|
+
render: () => import('vue').VNodeChild;
|
|
1029
|
+
}[], {
|
|
1030
|
+
key: string;
|
|
1031
|
+
render: () => import('vue').VNodeChild;
|
|
1032
|
+
}[] | {
|
|
1033
|
+
key: string;
|
|
1034
|
+
render: () => import('vue').VNodeChild;
|
|
1035
|
+
}[]>;
|
|
1036
|
+
reverseColSpace: import('vue').ComputedRef<boolean>;
|
|
1037
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1038
|
+
readonly label: StringConstructor;
|
|
1039
|
+
readonly labelWidth: import('vue').PropType<string | number>;
|
|
1040
|
+
readonly labelStyle: import('vue').PropType<import('vue').CSSProperties | string>;
|
|
1041
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
1042
|
+
readonly labelPlacement: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
1043
|
+
readonly path: StringConstructor;
|
|
1044
|
+
readonly first: BooleanConstructor;
|
|
1045
|
+
readonly rulePath: StringConstructor;
|
|
1046
|
+
readonly required: BooleanConstructor;
|
|
1047
|
+
readonly showRequireMark: {
|
|
1048
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
1049
|
+
readonly default: undefined;
|
|
1050
|
+
};
|
|
1051
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
1052
|
+
readonly showFeedback: {
|
|
1053
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
1054
|
+
readonly default: undefined;
|
|
1055
|
+
};
|
|
1056
|
+
readonly rule: import('vue').PropType<import('naive-ui').FormItemRule | import('naive-ui').FormItemRule[]>;
|
|
1057
|
+
readonly size: import('vue').PropType<"small" | "medium" | "large">;
|
|
1058
|
+
readonly ignorePathChange: BooleanConstructor;
|
|
1059
|
+
readonly validationStatus: import('vue').PropType<"error" | "warning" | "success">;
|
|
1060
|
+
readonly feedback: StringConstructor;
|
|
1061
|
+
readonly feedbackClass: StringConstructor;
|
|
1062
|
+
readonly feedbackStyle: import('vue').PropType<string | import('vue').CSSProperties>;
|
|
1063
|
+
readonly showLabel: {
|
|
1064
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
1065
|
+
readonly default: undefined;
|
|
1066
|
+
};
|
|
1067
|
+
readonly labelProps: import('vue').PropType<import('vue').LabelHTMLAttributes>;
|
|
1068
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
1069
|
+
blankHeightSmall: string;
|
|
1070
|
+
blankHeightMedium: string;
|
|
1071
|
+
blankHeightLarge: string;
|
|
1072
|
+
lineHeight: string;
|
|
1073
|
+
labelTextColor: string;
|
|
1074
|
+
asteriskColor: string;
|
|
1075
|
+
feedbackTextColorError: string;
|
|
1076
|
+
feedbackTextColorWarning: string;
|
|
1077
|
+
feedbackTextColor: string;
|
|
1078
|
+
feedbackPadding: string;
|
|
1079
|
+
feedbackHeightSmall: string;
|
|
1080
|
+
feedbackHeightMedium: string;
|
|
1081
|
+
feedbackHeightLarge: string;
|
|
1082
|
+
feedbackFontSizeSmall: string;
|
|
1083
|
+
feedbackFontSizeMedium: string;
|
|
1084
|
+
feedbackFontSizeLarge: string;
|
|
1085
|
+
labelFontSizeLeftSmall: string;
|
|
1086
|
+
labelFontSizeLeftMedium: string;
|
|
1087
|
+
labelFontSizeLeftLarge: string;
|
|
1088
|
+
labelFontSizeTopSmall: string;
|
|
1089
|
+
labelFontSizeTopMedium: string;
|
|
1090
|
+
labelFontSizeTopLarge: string;
|
|
1091
|
+
labelHeightSmall: string;
|
|
1092
|
+
labelHeightMedium: string;
|
|
1093
|
+
labelHeightLarge: string;
|
|
1094
|
+
labelPaddingVertical: string;
|
|
1095
|
+
labelPaddingHorizontal: string;
|
|
1096
|
+
labelTextAlignVertical: string;
|
|
1097
|
+
labelTextAlignHorizontal: string;
|
|
1098
|
+
labelFontWeight: string;
|
|
1099
|
+
}, any>>;
|
|
1100
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
1101
|
+
blankHeightSmall: string;
|
|
1102
|
+
blankHeightMedium: string;
|
|
1103
|
+
blankHeightLarge: string;
|
|
1104
|
+
lineHeight: string;
|
|
1105
|
+
labelTextColor: string;
|
|
1106
|
+
asteriskColor: string;
|
|
1107
|
+
feedbackTextColorError: string;
|
|
1108
|
+
feedbackTextColorWarning: string;
|
|
1109
|
+
feedbackTextColor: string;
|
|
1110
|
+
feedbackPadding: string;
|
|
1111
|
+
feedbackHeightSmall: string;
|
|
1112
|
+
feedbackHeightMedium: string;
|
|
1113
|
+
feedbackHeightLarge: string;
|
|
1114
|
+
feedbackFontSizeSmall: string;
|
|
1115
|
+
feedbackFontSizeMedium: string;
|
|
1116
|
+
feedbackFontSizeLarge: string;
|
|
1117
|
+
labelFontSizeLeftSmall: string;
|
|
1118
|
+
labelFontSizeLeftMedium: string;
|
|
1119
|
+
labelFontSizeLeftLarge: string;
|
|
1120
|
+
labelFontSizeTopSmall: string;
|
|
1121
|
+
labelFontSizeTopMedium: string;
|
|
1122
|
+
labelFontSizeTopLarge: string;
|
|
1123
|
+
labelHeightSmall: string;
|
|
1124
|
+
labelHeightMedium: string;
|
|
1125
|
+
labelHeightLarge: string;
|
|
1126
|
+
labelPaddingVertical: string;
|
|
1127
|
+
labelPaddingHorizontal: string;
|
|
1128
|
+
labelTextAlignVertical: string;
|
|
1129
|
+
labelTextAlignHorizontal: string;
|
|
1130
|
+
labelFontWeight: string;
|
|
1131
|
+
}, any>>>;
|
|
1132
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
1133
|
+
blankHeightSmall: string;
|
|
1134
|
+
blankHeightMedium: string;
|
|
1135
|
+
blankHeightLarge: string;
|
|
1136
|
+
lineHeight: string;
|
|
1137
|
+
labelTextColor: string;
|
|
1138
|
+
asteriskColor: string;
|
|
1139
|
+
feedbackTextColorError: string;
|
|
1140
|
+
feedbackTextColorWarning: string;
|
|
1141
|
+
feedbackTextColor: string;
|
|
1142
|
+
feedbackPadding: string;
|
|
1143
|
+
feedbackHeightSmall: string;
|
|
1144
|
+
feedbackHeightMedium: string;
|
|
1145
|
+
feedbackHeightLarge: string;
|
|
1146
|
+
feedbackFontSizeSmall: string;
|
|
1147
|
+
feedbackFontSizeMedium: string;
|
|
1148
|
+
feedbackFontSizeLarge: string;
|
|
1149
|
+
labelFontSizeLeftSmall: string;
|
|
1150
|
+
labelFontSizeLeftMedium: string;
|
|
1151
|
+
labelFontSizeLeftLarge: string;
|
|
1152
|
+
labelFontSizeTopSmall: string;
|
|
1153
|
+
labelFontSizeTopMedium: string;
|
|
1154
|
+
labelFontSizeTopLarge: string;
|
|
1155
|
+
labelHeightSmall: string;
|
|
1156
|
+
labelHeightMedium: string;
|
|
1157
|
+
labelHeightLarge: string;
|
|
1158
|
+
labelPaddingVertical: string;
|
|
1159
|
+
labelPaddingHorizontal: string;
|
|
1160
|
+
labelTextAlignVertical: string;
|
|
1161
|
+
labelTextAlignHorizontal: string;
|
|
1162
|
+
labelFontWeight: string;
|
|
1163
|
+
}, any>>>;
|
|
1164
|
+
}>> & Readonly<{}>, {
|
|
1165
|
+
readonly first: boolean;
|
|
1166
|
+
readonly required: boolean;
|
|
1167
|
+
readonly showRequireMark: boolean | undefined;
|
|
1168
|
+
readonly showFeedback: boolean | undefined;
|
|
1169
|
+
readonly showLabel: boolean | undefined;
|
|
1170
|
+
readonly ignorePathChange: boolean;
|
|
1171
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1172
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
588
1173
|
export default _default;
|