@tmagic/form 1.5.0-beta.0 → 1.5.0-beta.10
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/dist/style.css +2 -2
- package/dist/tmagic-form.js +129 -104
- package/dist/tmagic-form.umd.cjs +129 -105
- package/package.json +10 -8
- package/src/containers/Container.vue +5 -5
- package/src/containers/Table.vue +4 -2
- package/src/containers/Tabs.vue +3 -3
- package/src/fields/Date.vue +4 -4
- package/src/fields/DateTime.vue +6 -2
- package/src/fields/Daterange.vue +18 -15
- package/src/fields/Select.vue +1 -1
- package/src/fields/Text.vue +1 -1
- package/src/fields/Timerange.vue +1 -2
- package/src/index.ts +5 -5
- package/src/schema.ts +7 -4
- package/src/theme/form.scss +2 -2
- package/src/utils/form.ts +27 -0
- package/types/index.d.ts +1096 -1764
package/types/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
2
|
import { App } from 'vue';
|
|
3
|
+
import * as _vue_reactivity from '@vue/reactivity';
|
|
4
|
+
import * as _tmagic_design from '@tmagic/design';
|
|
3
5
|
|
|
4
6
|
interface ValidateError {
|
|
5
7
|
message: string;
|
|
@@ -232,6 +234,9 @@ interface DaterangeConfig extends FormItem {
|
|
|
232
234
|
type: 'daterange';
|
|
233
235
|
defaultTime?: Date[];
|
|
234
236
|
names?: string[];
|
|
237
|
+
valueFormat?: string;
|
|
238
|
+
dateFormat?: string;
|
|
239
|
+
timeFormat?: string;
|
|
235
240
|
}
|
|
236
241
|
/**
|
|
237
242
|
* html编辑器
|
|
@@ -520,7 +525,7 @@ interface PanelConfig extends FormItem, ContainerCommonConfig {
|
|
|
520
525
|
title?: string;
|
|
521
526
|
schematic?: string;
|
|
522
527
|
}
|
|
523
|
-
interface
|
|
528
|
+
interface TableColumnConfig extends FormItem {
|
|
524
529
|
name?: string;
|
|
525
530
|
label: string;
|
|
526
531
|
width?: string | number;
|
|
@@ -532,9 +537,9 @@ interface ColumnConfig extends FormItem {
|
|
|
532
537
|
*/
|
|
533
538
|
interface TableConfig extends FormItem {
|
|
534
539
|
type: 'table' | 'groupList' | 'group-list';
|
|
535
|
-
items:
|
|
536
|
-
tableItems?:
|
|
537
|
-
groupItems?:
|
|
540
|
+
items: TableColumnConfig[];
|
|
541
|
+
tableItems?: TableColumnConfig[];
|
|
542
|
+
groupItems?: TableColumnConfig[];
|
|
538
543
|
enableToggleMode?: boolean;
|
|
539
544
|
/** 最大行数 */
|
|
540
545
|
max?: number;
|
|
@@ -614,10 +619,11 @@ declare const initValue: (mForm: FormState | undefined, { initValues, config }:
|
|
|
614
619
|
initValues: FormValue;
|
|
615
620
|
config: FormConfig;
|
|
616
621
|
}) => Promise<FormValue>;
|
|
622
|
+
declare const datetimeFormatter: (v: string | Date, defaultValue?: string, format?: string) => string | number;
|
|
617
623
|
|
|
618
624
|
declare const useAddField: (prop?: string) => void;
|
|
619
625
|
|
|
620
|
-
declare const _default$v: vue.DefineComponent<
|
|
626
|
+
declare const _default$v: vue.DefineComponent<{
|
|
621
627
|
/** 表单配置 */
|
|
622
628
|
config: FormConfig;
|
|
623
629
|
/** 表单值 */
|
|
@@ -637,20 +643,7 @@ declare const _default$v: vue.DefineComponent<__VLS_WithDefaults$7<__VLS_TypePro
|
|
|
637
643
|
keyProp?: string;
|
|
638
644
|
popperClass?: string;
|
|
639
645
|
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
640
|
-
}
|
|
641
|
-
config: () => never[];
|
|
642
|
-
initValues: () => {};
|
|
643
|
-
lastValues: () => {};
|
|
644
|
-
isCompare: boolean;
|
|
645
|
-
parentValues: () => {};
|
|
646
|
-
labelWidth: string;
|
|
647
|
-
disabled: boolean;
|
|
648
|
-
height: string;
|
|
649
|
-
stepActive: number;
|
|
650
|
-
inline: boolean;
|
|
651
|
-
labelPosition: string;
|
|
652
|
-
keyProp: string;
|
|
653
|
-
}>, {
|
|
646
|
+
}, {
|
|
654
647
|
values: vue.Ref<FormValue, FormValue>;
|
|
655
648
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
656
649
|
formState: FormState;
|
|
@@ -658,12 +651,12 @@ declare const _default$v: vue.DefineComponent<__VLS_WithDefaults$7<__VLS_TypePro
|
|
|
658
651
|
changeHandler: () => void;
|
|
659
652
|
resetForm: () => any;
|
|
660
653
|
submitForm: (native?: boolean) => Promise<any>;
|
|
661
|
-
},
|
|
654
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
662
655
|
change: (...args: any[]) => void;
|
|
663
656
|
error: (...args: any[]) => void;
|
|
664
657
|
"field-change": (...args: any[]) => void;
|
|
665
658
|
"field-input": (...args: any[]) => void;
|
|
666
|
-
}, string, vue.PublicProps, Readonly<
|
|
659
|
+
}, string, vue.PublicProps, Readonly<{
|
|
667
660
|
/** 表单配置 */
|
|
668
661
|
config: FormConfig;
|
|
669
662
|
/** 表单值 */
|
|
@@ -683,25 +676,12 @@ declare const _default$v: vue.DefineComponent<__VLS_WithDefaults$7<__VLS_TypePro
|
|
|
683
676
|
keyProp?: string;
|
|
684
677
|
popperClass?: string;
|
|
685
678
|
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
686
|
-
}
|
|
687
|
-
config: () => never[];
|
|
688
|
-
initValues: () => {};
|
|
689
|
-
lastValues: () => {};
|
|
690
|
-
isCompare: boolean;
|
|
691
|
-
parentValues: () => {};
|
|
692
|
-
labelWidth: string;
|
|
693
|
-
disabled: boolean;
|
|
694
|
-
height: string;
|
|
695
|
-
stepActive: number;
|
|
696
|
-
inline: boolean;
|
|
697
|
-
labelPosition: string;
|
|
698
|
-
keyProp: string;
|
|
699
|
-
}>>> & {
|
|
679
|
+
}> & Readonly<{
|
|
700
680
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
701
681
|
onError?: ((...args: any[]) => any) | undefined;
|
|
702
682
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
703
683
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
704
|
-
}
|
|
684
|
+
}>, {
|
|
705
685
|
disabled: boolean;
|
|
706
686
|
labelWidth: string;
|
|
707
687
|
inline: boolean;
|
|
@@ -714,32 +694,138 @@ declare const _default$v: vue.DefineComponent<__VLS_WithDefaults$7<__VLS_TypePro
|
|
|
714
694
|
parentValues: Record<string, any>;
|
|
715
695
|
stepActive: string | number;
|
|
716
696
|
height: string;
|
|
717
|
-
}, {}>;
|
|
718
|
-
|
|
719
|
-
type __VLS_WithDefaults$7<P, D> = {
|
|
720
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify$7<P[K] & {
|
|
721
|
-
default: D[K];
|
|
722
|
-
}> : P[K];
|
|
723
|
-
};
|
|
724
|
-
type __VLS_Prettify$7<T> = {
|
|
725
|
-
[K in keyof T]: T[K];
|
|
726
|
-
} & {};
|
|
727
|
-
type __VLS_NonUndefinedable$u<T> = T extends undefined ? never : T;
|
|
728
|
-
type __VLS_TypePropsToOption$u<T> = {
|
|
729
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
730
|
-
type: vue.PropType<__VLS_NonUndefinedable$u<T[K]>>;
|
|
731
|
-
} : {
|
|
732
|
-
type: vue.PropType<T[K]>;
|
|
733
|
-
required: true;
|
|
734
|
-
};
|
|
735
|
-
};
|
|
697
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
736
698
|
|
|
737
699
|
declare function __VLS_template$4(): {
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
700
|
+
slots: {
|
|
701
|
+
default?(_: {}): any;
|
|
702
|
+
left?(_: {}): any;
|
|
703
|
+
footer?(_: {}): any;
|
|
704
|
+
};
|
|
705
|
+
refs: {
|
|
706
|
+
form: vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
707
|
+
config: FormConfig;
|
|
708
|
+
initValues: Record<string, any>;
|
|
709
|
+
lastValues?: Record<string, any>;
|
|
710
|
+
isCompare?: boolean;
|
|
711
|
+
parentValues?: Record<string, any>;
|
|
712
|
+
labelWidth?: string;
|
|
713
|
+
disabled?: boolean;
|
|
714
|
+
height?: string;
|
|
715
|
+
stepActive?: string | number;
|
|
716
|
+
size?: "small" | "default" | "large";
|
|
717
|
+
inline?: boolean;
|
|
718
|
+
labelPosition?: string;
|
|
719
|
+
keyProp?: string;
|
|
720
|
+
popperClass?: string;
|
|
721
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
722
|
+
}> & Readonly<{
|
|
723
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
724
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
725
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
726
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
727
|
+
}>, {
|
|
728
|
+
values: vue.Ref<FormValue, FormValue>;
|
|
729
|
+
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
730
|
+
formState: FormState;
|
|
731
|
+
initialized: vue.Ref<boolean, boolean>;
|
|
732
|
+
changeHandler: () => void;
|
|
733
|
+
resetForm: () => any;
|
|
734
|
+
submitForm: (native?: boolean) => Promise<any>;
|
|
735
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
736
|
+
change: (...args: any[]) => void;
|
|
737
|
+
error: (...args: any[]) => void;
|
|
738
|
+
"field-change": (...args: any[]) => void;
|
|
739
|
+
"field-input": (...args: any[]) => void;
|
|
740
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
741
|
+
config: FormConfig;
|
|
742
|
+
initValues: Record<string, any>;
|
|
743
|
+
lastValues?: Record<string, any>;
|
|
744
|
+
isCompare?: boolean;
|
|
745
|
+
parentValues?: Record<string, any>;
|
|
746
|
+
labelWidth?: string;
|
|
747
|
+
disabled?: boolean;
|
|
748
|
+
height?: string;
|
|
749
|
+
stepActive?: string | number;
|
|
750
|
+
size?: "small" | "default" | "large";
|
|
751
|
+
inline?: boolean;
|
|
752
|
+
labelPosition?: string;
|
|
753
|
+
keyProp?: string;
|
|
754
|
+
popperClass?: string;
|
|
755
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
756
|
+
}> & Readonly<{
|
|
757
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
758
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
759
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
760
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
761
|
+
}>, {
|
|
762
|
+
disabled: boolean;
|
|
763
|
+
labelWidth: string;
|
|
764
|
+
inline: boolean;
|
|
765
|
+
labelPosition: string;
|
|
766
|
+
config: FormConfig;
|
|
767
|
+
initValues: Record<string, any>;
|
|
768
|
+
lastValues: Record<string, any>;
|
|
769
|
+
isCompare: boolean;
|
|
770
|
+
keyProp: string;
|
|
771
|
+
parentValues: Record<string, any>;
|
|
772
|
+
stepActive: string | number;
|
|
773
|
+
height: string;
|
|
774
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
775
|
+
P: {};
|
|
776
|
+
B: {};
|
|
777
|
+
D: {};
|
|
778
|
+
C: {};
|
|
779
|
+
M: {};
|
|
780
|
+
Defaults: {};
|
|
781
|
+
}, Readonly<{
|
|
782
|
+
config: FormConfig;
|
|
783
|
+
initValues: Record<string, any>;
|
|
784
|
+
lastValues?: Record<string, any>;
|
|
785
|
+
isCompare?: boolean;
|
|
786
|
+
parentValues?: Record<string, any>;
|
|
787
|
+
labelWidth?: string;
|
|
788
|
+
disabled?: boolean;
|
|
789
|
+
height?: string;
|
|
790
|
+
stepActive?: string | number;
|
|
791
|
+
size?: "small" | "default" | "large";
|
|
792
|
+
inline?: boolean;
|
|
793
|
+
labelPosition?: string;
|
|
794
|
+
keyProp?: string;
|
|
795
|
+
popperClass?: string;
|
|
796
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
797
|
+
}> & Readonly<{
|
|
798
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
799
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
800
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
801
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
802
|
+
}>, {
|
|
803
|
+
values: vue.Ref<FormValue, FormValue>;
|
|
804
|
+
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
805
|
+
formState: FormState;
|
|
806
|
+
initialized: vue.Ref<boolean, boolean>;
|
|
807
|
+
changeHandler: () => void;
|
|
808
|
+
resetForm: () => any;
|
|
809
|
+
submitForm: (native?: boolean) => Promise<any>;
|
|
810
|
+
}, {}, {}, {}, {
|
|
811
|
+
disabled: boolean;
|
|
812
|
+
labelWidth: string;
|
|
813
|
+
inline: boolean;
|
|
814
|
+
labelPosition: string;
|
|
815
|
+
config: FormConfig;
|
|
816
|
+
initValues: Record<string, any>;
|
|
817
|
+
lastValues: Record<string, any>;
|
|
818
|
+
isCompare: boolean;
|
|
819
|
+
keyProp: string;
|
|
820
|
+
parentValues: Record<string, any>;
|
|
821
|
+
stepActive: string | number;
|
|
822
|
+
height: string;
|
|
823
|
+
}> | null;
|
|
824
|
+
};
|
|
825
|
+
attrs: Partial<{}>;
|
|
741
826
|
};
|
|
742
|
-
|
|
827
|
+
type __VLS_TemplateResult$4 = ReturnType<typeof __VLS_template$4>;
|
|
828
|
+
declare const __VLS_component$4: vue.DefineComponent<{
|
|
743
829
|
config?: FormConfig;
|
|
744
830
|
values?: Object;
|
|
745
831
|
parentValues?: Object;
|
|
@@ -753,77 +839,29 @@ declare const __VLS_component$4: vue.DefineComponent<__VLS_WithDefaults$6<__VLS_
|
|
|
753
839
|
zIndex?: number;
|
|
754
840
|
size?: "small" | "default" | "large";
|
|
755
841
|
confirmText?: string;
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
default: string;
|
|
775
|
-
};
|
|
776
|
-
inline: {
|
|
777
|
-
type: vue.PropType<boolean>;
|
|
778
|
-
default: boolean;
|
|
779
|
-
};
|
|
780
|
-
labelPosition: {
|
|
781
|
-
type: vue.PropType<string>;
|
|
782
|
-
default: string;
|
|
783
|
-
};
|
|
784
|
-
config: {
|
|
785
|
-
type: vue.PropType<FormConfig>;
|
|
786
|
-
required: true;
|
|
787
|
-
default: () => never[];
|
|
788
|
-
};
|
|
789
|
-
initValues: {
|
|
790
|
-
type: vue.PropType<Record<string, any>>;
|
|
791
|
-
required: true;
|
|
792
|
-
default: () => {};
|
|
793
|
-
};
|
|
794
|
-
lastValues: {
|
|
795
|
-
type: vue.PropType<Record<string, any>>;
|
|
796
|
-
default: () => {};
|
|
797
|
-
};
|
|
798
|
-
isCompare: {
|
|
799
|
-
type: vue.PropType<boolean>;
|
|
800
|
-
default: boolean;
|
|
801
|
-
};
|
|
802
|
-
keyProp: {
|
|
803
|
-
type: vue.PropType<string>;
|
|
804
|
-
default: string;
|
|
805
|
-
};
|
|
806
|
-
parentValues: {
|
|
807
|
-
type: vue.PropType<Record<string, any>>;
|
|
808
|
-
default: () => {};
|
|
809
|
-
};
|
|
810
|
-
stepActive: {
|
|
811
|
-
type: vue.PropType<string | number>;
|
|
812
|
-
default: number;
|
|
813
|
-
};
|
|
814
|
-
height: {
|
|
815
|
-
type: vue.PropType<string>;
|
|
816
|
-
default: string;
|
|
817
|
-
};
|
|
818
|
-
extendState: {
|
|
819
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
820
|
-
};
|
|
821
|
-
}>> & {
|
|
842
|
+
}, {
|
|
843
|
+
form: vue.Ref<vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
844
|
+
config: FormConfig;
|
|
845
|
+
initValues: Record<string, any>;
|
|
846
|
+
lastValues?: Record<string, any>;
|
|
847
|
+
isCompare?: boolean;
|
|
848
|
+
parentValues?: Record<string, any>;
|
|
849
|
+
labelWidth?: string;
|
|
850
|
+
disabled?: boolean;
|
|
851
|
+
height?: string;
|
|
852
|
+
stepActive?: string | number;
|
|
853
|
+
size?: "small" | "default" | "large";
|
|
854
|
+
inline?: boolean;
|
|
855
|
+
labelPosition?: string;
|
|
856
|
+
keyProp?: string;
|
|
857
|
+
popperClass?: string;
|
|
858
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
859
|
+
}> & Readonly<{
|
|
822
860
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
823
861
|
onError?: ((...args: any[]) => any) | undefined;
|
|
824
862
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
825
863
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
826
|
-
}
|
|
864
|
+
}>, {
|
|
827
865
|
values: vue.Ref<FormValue, FormValue>;
|
|
828
866
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
829
867
|
formState: FormState;
|
|
@@ -831,77 +869,33 @@ declare const __VLS_component$4: vue.DefineComponent<__VLS_WithDefaults$6<__VLS_
|
|
|
831
869
|
changeHandler: () => void;
|
|
832
870
|
resetForm: () => any;
|
|
833
871
|
submitForm: (native?: boolean) => Promise<any>;
|
|
834
|
-
},
|
|
872
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
835
873
|
change: (...args: any[]) => void;
|
|
836
874
|
error: (...args: any[]) => void;
|
|
837
875
|
"field-change": (...args: any[]) => void;
|
|
838
876
|
"field-input": (...args: any[]) => void;
|
|
839
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
default: boolean;
|
|
857
|
-
};
|
|
858
|
-
labelPosition: {
|
|
859
|
-
type: vue.PropType<string>;
|
|
860
|
-
default: string;
|
|
861
|
-
};
|
|
862
|
-
config: {
|
|
863
|
-
type: vue.PropType<FormConfig>;
|
|
864
|
-
required: true;
|
|
865
|
-
default: () => never[];
|
|
866
|
-
};
|
|
867
|
-
initValues: {
|
|
868
|
-
type: vue.PropType<Record<string, any>>;
|
|
869
|
-
required: true;
|
|
870
|
-
default: () => {};
|
|
871
|
-
};
|
|
872
|
-
lastValues: {
|
|
873
|
-
type: vue.PropType<Record<string, any>>;
|
|
874
|
-
default: () => {};
|
|
875
|
-
};
|
|
876
|
-
isCompare: {
|
|
877
|
-
type: vue.PropType<boolean>;
|
|
878
|
-
default: boolean;
|
|
879
|
-
};
|
|
880
|
-
keyProp: {
|
|
881
|
-
type: vue.PropType<string>;
|
|
882
|
-
default: string;
|
|
883
|
-
};
|
|
884
|
-
parentValues: {
|
|
885
|
-
type: vue.PropType<Record<string, any>>;
|
|
886
|
-
default: () => {};
|
|
887
|
-
};
|
|
888
|
-
stepActive: {
|
|
889
|
-
type: vue.PropType<string | number>;
|
|
890
|
-
default: number;
|
|
891
|
-
};
|
|
892
|
-
height: {
|
|
893
|
-
type: vue.PropType<string>;
|
|
894
|
-
default: string;
|
|
895
|
-
};
|
|
896
|
-
extendState: {
|
|
897
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
898
|
-
};
|
|
899
|
-
}>> & {
|
|
877
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
878
|
+
config: FormConfig;
|
|
879
|
+
initValues: Record<string, any>;
|
|
880
|
+
lastValues?: Record<string, any>;
|
|
881
|
+
isCompare?: boolean;
|
|
882
|
+
parentValues?: Record<string, any>;
|
|
883
|
+
labelWidth?: string;
|
|
884
|
+
disabled?: boolean;
|
|
885
|
+
height?: string;
|
|
886
|
+
stepActive?: string | number;
|
|
887
|
+
size?: "small" | "default" | "large";
|
|
888
|
+
inline?: boolean;
|
|
889
|
+
labelPosition?: string;
|
|
890
|
+
keyProp?: string;
|
|
891
|
+
popperClass?: string;
|
|
892
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
893
|
+
}> & Readonly<{
|
|
900
894
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
901
895
|
onError?: ((...args: any[]) => any) | undefined;
|
|
902
896
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
903
897
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
904
|
-
}
|
|
898
|
+
}>, {
|
|
905
899
|
disabled: boolean;
|
|
906
900
|
labelWidth: string;
|
|
907
901
|
inline: boolean;
|
|
@@ -914,79 +908,35 @@ declare const __VLS_component$4: vue.DefineComponent<__VLS_WithDefaults$6<__VLS_
|
|
|
914
908
|
parentValues: Record<string, any>;
|
|
915
909
|
stepActive: string | number;
|
|
916
910
|
height: string;
|
|
917
|
-
},
|
|
911
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
918
912
|
P: {};
|
|
919
913
|
B: {};
|
|
920
914
|
D: {};
|
|
921
915
|
C: {};
|
|
922
916
|
M: {};
|
|
923
917
|
Defaults: {};
|
|
924
|
-
}, Readonly<
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
default: boolean;
|
|
942
|
-
};
|
|
943
|
-
labelPosition: {
|
|
944
|
-
type: vue.PropType<string>;
|
|
945
|
-
default: string;
|
|
946
|
-
};
|
|
947
|
-
config: {
|
|
948
|
-
type: vue.PropType<FormConfig>;
|
|
949
|
-
required: true;
|
|
950
|
-
default: () => never[];
|
|
951
|
-
};
|
|
952
|
-
initValues: {
|
|
953
|
-
type: vue.PropType<Record<string, any>>;
|
|
954
|
-
required: true;
|
|
955
|
-
default: () => {};
|
|
956
|
-
};
|
|
957
|
-
lastValues: {
|
|
958
|
-
type: vue.PropType<Record<string, any>>;
|
|
959
|
-
default: () => {};
|
|
960
|
-
};
|
|
961
|
-
isCompare: {
|
|
962
|
-
type: vue.PropType<boolean>;
|
|
963
|
-
default: boolean;
|
|
964
|
-
};
|
|
965
|
-
keyProp: {
|
|
966
|
-
type: vue.PropType<string>;
|
|
967
|
-
default: string;
|
|
968
|
-
};
|
|
969
|
-
parentValues: {
|
|
970
|
-
type: vue.PropType<Record<string, any>>;
|
|
971
|
-
default: () => {};
|
|
972
|
-
};
|
|
973
|
-
stepActive: {
|
|
974
|
-
type: vue.PropType<string | number>;
|
|
975
|
-
default: number;
|
|
976
|
-
};
|
|
977
|
-
height: {
|
|
978
|
-
type: vue.PropType<string>;
|
|
979
|
-
default: string;
|
|
980
|
-
};
|
|
981
|
-
extendState: {
|
|
982
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
983
|
-
};
|
|
984
|
-
}>> & {
|
|
918
|
+
}, Readonly<{
|
|
919
|
+
config: FormConfig;
|
|
920
|
+
initValues: Record<string, any>;
|
|
921
|
+
lastValues?: Record<string, any>;
|
|
922
|
+
isCompare?: boolean;
|
|
923
|
+
parentValues?: Record<string, any>;
|
|
924
|
+
labelWidth?: string;
|
|
925
|
+
disabled?: boolean;
|
|
926
|
+
height?: string;
|
|
927
|
+
stepActive?: string | number;
|
|
928
|
+
size?: "small" | "default" | "large";
|
|
929
|
+
inline?: boolean;
|
|
930
|
+
labelPosition?: string;
|
|
931
|
+
keyProp?: string;
|
|
932
|
+
popperClass?: string;
|
|
933
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
934
|
+
}> & Readonly<{
|
|
985
935
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
986
936
|
onError?: ((...args: any[]) => any) | undefined;
|
|
987
937
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
988
938
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
989
|
-
}
|
|
939
|
+
}>, {
|
|
990
940
|
values: vue.Ref<FormValue, FormValue>;
|
|
991
941
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
992
942
|
formState: FormState;
|
|
@@ -1007,72 +957,28 @@ declare const __VLS_component$4: vue.DefineComponent<__VLS_WithDefaults$6<__VLS_
|
|
|
1007
957
|
parentValues: Record<string, any>;
|
|
1008
958
|
stepActive: string | number;
|
|
1009
959
|
height: string;
|
|
1010
|
-
}> | undefined, vue.
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
default: boolean;
|
|
1028
|
-
};
|
|
1029
|
-
labelPosition: {
|
|
1030
|
-
type: vue.PropType<string>;
|
|
1031
|
-
default: string;
|
|
1032
|
-
};
|
|
1033
|
-
config: {
|
|
1034
|
-
type: vue.PropType<FormConfig>;
|
|
1035
|
-
required: true;
|
|
1036
|
-
default: () => never[];
|
|
1037
|
-
};
|
|
1038
|
-
initValues: {
|
|
1039
|
-
type: vue.PropType<Record<string, any>>;
|
|
1040
|
-
required: true;
|
|
1041
|
-
default: () => {};
|
|
1042
|
-
};
|
|
1043
|
-
lastValues: {
|
|
1044
|
-
type: vue.PropType<Record<string, any>>;
|
|
1045
|
-
default: () => {};
|
|
1046
|
-
};
|
|
1047
|
-
isCompare: {
|
|
1048
|
-
type: vue.PropType<boolean>;
|
|
1049
|
-
default: boolean;
|
|
1050
|
-
};
|
|
1051
|
-
keyProp: {
|
|
1052
|
-
type: vue.PropType<string>;
|
|
1053
|
-
default: string;
|
|
1054
|
-
};
|
|
1055
|
-
parentValues: {
|
|
1056
|
-
type: vue.PropType<Record<string, any>>;
|
|
1057
|
-
default: () => {};
|
|
1058
|
-
};
|
|
1059
|
-
stepActive: {
|
|
1060
|
-
type: vue.PropType<string | number>;
|
|
1061
|
-
default: number;
|
|
1062
|
-
};
|
|
1063
|
-
height: {
|
|
1064
|
-
type: vue.PropType<string>;
|
|
1065
|
-
default: string;
|
|
1066
|
-
};
|
|
1067
|
-
extendState: {
|
|
1068
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1069
|
-
};
|
|
1070
|
-
}>> & {
|
|
960
|
+
}> | undefined, vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
961
|
+
config: FormConfig;
|
|
962
|
+
initValues: Record<string, any>;
|
|
963
|
+
lastValues?: Record<string, any>;
|
|
964
|
+
isCompare?: boolean;
|
|
965
|
+
parentValues?: Record<string, any>;
|
|
966
|
+
labelWidth?: string;
|
|
967
|
+
disabled?: boolean;
|
|
968
|
+
height?: string;
|
|
969
|
+
stepActive?: string | number;
|
|
970
|
+
size?: "small" | "default" | "large";
|
|
971
|
+
inline?: boolean;
|
|
972
|
+
labelPosition?: string;
|
|
973
|
+
keyProp?: string;
|
|
974
|
+
popperClass?: string;
|
|
975
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
976
|
+
}> & Readonly<{
|
|
1071
977
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1072
978
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1073
979
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1074
980
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1075
|
-
}
|
|
981
|
+
}>, {
|
|
1076
982
|
values: vue.Ref<FormValue, FormValue>;
|
|
1077
983
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1078
984
|
formState: FormState;
|
|
@@ -1080,77 +986,33 @@ declare const __VLS_component$4: vue.DefineComponent<__VLS_WithDefaults$6<__VLS_
|
|
|
1080
986
|
changeHandler: () => void;
|
|
1081
987
|
resetForm: () => any;
|
|
1082
988
|
submitForm: (native?: boolean) => Promise<any>;
|
|
1083
|
-
},
|
|
989
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1084
990
|
change: (...args: any[]) => void;
|
|
1085
991
|
error: (...args: any[]) => void;
|
|
1086
992
|
"field-change": (...args: any[]) => void;
|
|
1087
993
|
"field-input": (...args: any[]) => void;
|
|
1088
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
default: boolean;
|
|
1106
|
-
};
|
|
1107
|
-
labelPosition: {
|
|
1108
|
-
type: vue.PropType<string>;
|
|
1109
|
-
default: string;
|
|
1110
|
-
};
|
|
1111
|
-
config: {
|
|
1112
|
-
type: vue.PropType<FormConfig>;
|
|
1113
|
-
required: true;
|
|
1114
|
-
default: () => never[];
|
|
1115
|
-
};
|
|
1116
|
-
initValues: {
|
|
1117
|
-
type: vue.PropType<Record<string, any>>;
|
|
1118
|
-
required: true;
|
|
1119
|
-
default: () => {};
|
|
1120
|
-
};
|
|
1121
|
-
lastValues: {
|
|
1122
|
-
type: vue.PropType<Record<string, any>>;
|
|
1123
|
-
default: () => {};
|
|
1124
|
-
};
|
|
1125
|
-
isCompare: {
|
|
1126
|
-
type: vue.PropType<boolean>;
|
|
1127
|
-
default: boolean;
|
|
1128
|
-
};
|
|
1129
|
-
keyProp: {
|
|
1130
|
-
type: vue.PropType<string>;
|
|
1131
|
-
default: string;
|
|
1132
|
-
};
|
|
1133
|
-
parentValues: {
|
|
1134
|
-
type: vue.PropType<Record<string, any>>;
|
|
1135
|
-
default: () => {};
|
|
1136
|
-
};
|
|
1137
|
-
stepActive: {
|
|
1138
|
-
type: vue.PropType<string | number>;
|
|
1139
|
-
default: number;
|
|
1140
|
-
};
|
|
1141
|
-
height: {
|
|
1142
|
-
type: vue.PropType<string>;
|
|
1143
|
-
default: string;
|
|
1144
|
-
};
|
|
1145
|
-
extendState: {
|
|
1146
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1147
|
-
};
|
|
1148
|
-
}>> & {
|
|
994
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
995
|
+
config: FormConfig;
|
|
996
|
+
initValues: Record<string, any>;
|
|
997
|
+
lastValues?: Record<string, any>;
|
|
998
|
+
isCompare?: boolean;
|
|
999
|
+
parentValues?: Record<string, any>;
|
|
1000
|
+
labelWidth?: string;
|
|
1001
|
+
disabled?: boolean;
|
|
1002
|
+
height?: string;
|
|
1003
|
+
stepActive?: string | number;
|
|
1004
|
+
size?: "small" | "default" | "large";
|
|
1005
|
+
inline?: boolean;
|
|
1006
|
+
labelPosition?: string;
|
|
1007
|
+
keyProp?: string;
|
|
1008
|
+
popperClass?: string;
|
|
1009
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1010
|
+
}> & Readonly<{
|
|
1149
1011
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1150
1012
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1151
1013
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1152
1014
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1153
|
-
}
|
|
1015
|
+
}>, {
|
|
1154
1016
|
disabled: boolean;
|
|
1155
1017
|
labelWidth: string;
|
|
1156
1018
|
inline: boolean;
|
|
@@ -1163,79 +1025,35 @@ declare const __VLS_component$4: vue.DefineComponent<__VLS_WithDefaults$6<__VLS_
|
|
|
1163
1025
|
parentValues: Record<string, any>;
|
|
1164
1026
|
stepActive: string | number;
|
|
1165
1027
|
height: string;
|
|
1166
|
-
},
|
|
1028
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
1167
1029
|
P: {};
|
|
1168
1030
|
B: {};
|
|
1169
1031
|
D: {};
|
|
1170
1032
|
C: {};
|
|
1171
1033
|
M: {};
|
|
1172
1034
|
Defaults: {};
|
|
1173
|
-
}, Readonly<
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
default: boolean;
|
|
1191
|
-
};
|
|
1192
|
-
labelPosition: {
|
|
1193
|
-
type: vue.PropType<string>;
|
|
1194
|
-
default: string;
|
|
1195
|
-
};
|
|
1196
|
-
config: {
|
|
1197
|
-
type: vue.PropType<FormConfig>;
|
|
1198
|
-
required: true;
|
|
1199
|
-
default: () => never[];
|
|
1200
|
-
};
|
|
1201
|
-
initValues: {
|
|
1202
|
-
type: vue.PropType<Record<string, any>>;
|
|
1203
|
-
required: true;
|
|
1204
|
-
default: () => {};
|
|
1205
|
-
};
|
|
1206
|
-
lastValues: {
|
|
1207
|
-
type: vue.PropType<Record<string, any>>;
|
|
1208
|
-
default: () => {};
|
|
1209
|
-
};
|
|
1210
|
-
isCompare: {
|
|
1211
|
-
type: vue.PropType<boolean>;
|
|
1212
|
-
default: boolean;
|
|
1213
|
-
};
|
|
1214
|
-
keyProp: {
|
|
1215
|
-
type: vue.PropType<string>;
|
|
1216
|
-
default: string;
|
|
1217
|
-
};
|
|
1218
|
-
parentValues: {
|
|
1219
|
-
type: vue.PropType<Record<string, any>>;
|
|
1220
|
-
default: () => {};
|
|
1221
|
-
};
|
|
1222
|
-
stepActive: {
|
|
1223
|
-
type: vue.PropType<string | number>;
|
|
1224
|
-
default: number;
|
|
1225
|
-
};
|
|
1226
|
-
height: {
|
|
1227
|
-
type: vue.PropType<string>;
|
|
1228
|
-
default: string;
|
|
1229
|
-
};
|
|
1230
|
-
extendState: {
|
|
1231
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1232
|
-
};
|
|
1233
|
-
}>> & {
|
|
1035
|
+
}, Readonly<{
|
|
1036
|
+
config: FormConfig;
|
|
1037
|
+
initValues: Record<string, any>;
|
|
1038
|
+
lastValues?: Record<string, any>;
|
|
1039
|
+
isCompare?: boolean;
|
|
1040
|
+
parentValues?: Record<string, any>;
|
|
1041
|
+
labelWidth?: string;
|
|
1042
|
+
disabled?: boolean;
|
|
1043
|
+
height?: string;
|
|
1044
|
+
stepActive?: string | number;
|
|
1045
|
+
size?: "small" | "default" | "large";
|
|
1046
|
+
inline?: boolean;
|
|
1047
|
+
labelPosition?: string;
|
|
1048
|
+
keyProp?: string;
|
|
1049
|
+
popperClass?: string;
|
|
1050
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1051
|
+
}> & Readonly<{
|
|
1234
1052
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1235
1053
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1236
1054
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1237
1055
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1238
|
-
}
|
|
1056
|
+
}>, {
|
|
1239
1057
|
values: vue.Ref<FormValue, FormValue>;
|
|
1240
1058
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1241
1059
|
formState: FormState;
|
|
@@ -1263,12 +1081,12 @@ declare const __VLS_component$4: vue.DefineComponent<__VLS_WithDefaults$6<__VLS_
|
|
|
1263
1081
|
save: () => Promise<void>;
|
|
1264
1082
|
show: () => void;
|
|
1265
1083
|
hide: () => void;
|
|
1266
|
-
},
|
|
1084
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1267
1085
|
change: (...args: any[]) => void;
|
|
1268
1086
|
close: (...args: any[]) => void;
|
|
1269
1087
|
error: (...args: any[]) => void;
|
|
1270
1088
|
submit: (...args: any[]) => void;
|
|
1271
|
-
}, string, vue.PublicProps, Readonly<
|
|
1089
|
+
}, string, vue.PublicProps, Readonly<{
|
|
1272
1090
|
config?: FormConfig;
|
|
1273
1091
|
values?: Object;
|
|
1274
1092
|
parentValues?: Object;
|
|
@@ -1282,51 +1100,243 @@ declare const __VLS_component$4: vue.DefineComponent<__VLS_WithDefaults$6<__VLS_
|
|
|
1282
1100
|
zIndex?: number;
|
|
1283
1101
|
size?: "small" | "default" | "large";
|
|
1284
1102
|
confirmText?: string;
|
|
1285
|
-
}
|
|
1286
|
-
config: () => never[];
|
|
1287
|
-
values: () => {};
|
|
1288
|
-
confirmText: string;
|
|
1289
|
-
}>>> & {
|
|
1103
|
+
}> & Readonly<{
|
|
1290
1104
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1291
|
-
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
1292
|
-
onError?: ((...args: any[]) => any) | undefined;
|
|
1293
1105
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1294
|
-
|
|
1106
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1107
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
1108
|
+
}>, {
|
|
1295
1109
|
values: Object;
|
|
1296
1110
|
config: FormConfig;
|
|
1297
1111
|
confirmText: string;
|
|
1298
|
-
}, {}>;
|
|
1299
|
-
declare const _default$u: __VLS_WithTemplateSlots$4<typeof __VLS_component$4,
|
|
1112
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
1113
|
+
declare const _default$u: __VLS_WithTemplateSlots$4<typeof __VLS_component$4, __VLS_TemplateResult$4["slots"]>;
|
|
1300
1114
|
|
|
1301
|
-
type __VLS_WithDefaults$6<P, D> = {
|
|
1302
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify$6<P[K] & {
|
|
1303
|
-
default: D[K];
|
|
1304
|
-
}> : P[K];
|
|
1305
|
-
};
|
|
1306
|
-
type __VLS_Prettify$6<T> = {
|
|
1307
|
-
[K in keyof T]: T[K];
|
|
1308
|
-
} & {};
|
|
1309
1115
|
type __VLS_WithTemplateSlots$4<T, S> = T & {
|
|
1310
1116
|
new (): {
|
|
1311
1117
|
$slots: S;
|
|
1312
1118
|
};
|
|
1313
1119
|
};
|
|
1314
|
-
type __VLS_NonUndefinedable$t<T> = T extends undefined ? never : T;
|
|
1315
|
-
type __VLS_TypePropsToOption$t<T> = {
|
|
1316
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1317
|
-
type: vue.PropType<__VLS_NonUndefinedable$t<T[K]>>;
|
|
1318
|
-
} : {
|
|
1319
|
-
type: vue.PropType<T[K]>;
|
|
1320
|
-
required: true;
|
|
1321
|
-
};
|
|
1322
|
-
};
|
|
1323
1120
|
|
|
1324
1121
|
declare function __VLS_template$3(): {
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1122
|
+
slots: {
|
|
1123
|
+
default?(_: {}): any;
|
|
1124
|
+
left?(_: {}): any;
|
|
1125
|
+
footer?(_: {}): any;
|
|
1126
|
+
};
|
|
1127
|
+
refs: {
|
|
1128
|
+
drawer: ({
|
|
1129
|
+
$: vue.ComponentInternalInstance;
|
|
1130
|
+
$data: {};
|
|
1131
|
+
$props: {
|
|
1132
|
+
readonly modelValue?: boolean | undefined;
|
|
1133
|
+
readonly appendToBody?: boolean | undefined;
|
|
1134
|
+
readonly beforeClose?: any;
|
|
1135
|
+
readonly title?: string | undefined;
|
|
1136
|
+
readonly size?: (string | number) | undefined;
|
|
1137
|
+
readonly fullscreen?: boolean | undefined;
|
|
1138
|
+
readonly closeOnClickModal?: boolean | undefined;
|
|
1139
|
+
readonly closeOnPressEscape?: boolean | undefined;
|
|
1140
|
+
readonly direction?: ("rtl" | "ltr" | "ttb" | "bt") | undefined;
|
|
1141
|
+
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
1142
|
+
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1143
|
+
readonly onOpen?: ((...args: any[]) => any) | undefined;
|
|
1144
|
+
readonly onOpened?: ((...args: any[]) => any) | undefined;
|
|
1145
|
+
readonly onClosed?: ((...args: any[]) => any) | undefined;
|
|
1146
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<_tmagic_design.DrawerProps> & Readonly<{
|
|
1147
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1148
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1149
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1150
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
1151
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1152
|
+
}>;
|
|
1153
|
+
$attrs: {
|
|
1154
|
+
[x: string]: unknown;
|
|
1155
|
+
};
|
|
1156
|
+
$refs: {
|
|
1157
|
+
[x: string]: unknown;
|
|
1158
|
+
};
|
|
1159
|
+
$slots: Readonly<{
|
|
1160
|
+
[name: string]: vue.Slot<any> | undefined;
|
|
1161
|
+
}>;
|
|
1162
|
+
$root: vue.ComponentPublicInstance | null;
|
|
1163
|
+
$parent: vue.ComponentPublicInstance | null;
|
|
1164
|
+
$host: Element | null;
|
|
1165
|
+
$emit: ((event: "close", ...args: any[]) => void) & ((event: "update:modelValue", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "opened", ...args: any[]) => void) & ((event: "closed", ...args: any[]) => void);
|
|
1166
|
+
$el: any;
|
|
1167
|
+
$options: vue.ComponentOptionsBase<Readonly<_tmagic_design.DrawerProps> & Readonly<{
|
|
1168
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1169
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1170
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1171
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
1172
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1173
|
+
}>, {
|
|
1174
|
+
handleClose: () => any;
|
|
1175
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1176
|
+
close: (...args: any[]) => void;
|
|
1177
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1178
|
+
open: (...args: any[]) => void;
|
|
1179
|
+
opened: (...args: any[]) => void;
|
|
1180
|
+
closed: (...args: any[]) => void;
|
|
1181
|
+
}, string, {}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & {
|
|
1182
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1183
|
+
created?: (() => void) | (() => void)[];
|
|
1184
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1185
|
+
mounted?: (() => void) | (() => void)[];
|
|
1186
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1187
|
+
updated?: (() => void) | (() => void)[];
|
|
1188
|
+
activated?: (() => void) | (() => void)[];
|
|
1189
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1190
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1191
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1192
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1193
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1194
|
+
renderTracked?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
|
|
1195
|
+
renderTriggered?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
|
|
1196
|
+
errorCaptured?: ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1197
|
+
};
|
|
1198
|
+
$forceUpdate: () => void;
|
|
1199
|
+
$nextTick: typeof vue.nextTick;
|
|
1200
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: vue.WatchOptions): vue.WatchStopHandle;
|
|
1201
|
+
} & Readonly<{}> & Omit<Readonly<_tmagic_design.DrawerProps> & Readonly<{
|
|
1202
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1203
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1204
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1205
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
1206
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1207
|
+
}>, "handleClose"> & vue.ShallowUnwrapRef<{
|
|
1208
|
+
handleClose: () => any;
|
|
1209
|
+
}> & {} & vue.ComponentCustomProperties & {} & {
|
|
1210
|
+
$slots: {
|
|
1211
|
+
default?(_: {}): any;
|
|
1212
|
+
header?(_: {}): any;
|
|
1213
|
+
footer?(_: {}): any;
|
|
1214
|
+
};
|
|
1215
|
+
}) | null;
|
|
1216
|
+
drawerBody: HTMLDivElement;
|
|
1217
|
+
form: vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1218
|
+
config: FormConfig;
|
|
1219
|
+
initValues: Record<string, any>;
|
|
1220
|
+
lastValues?: Record<string, any>;
|
|
1221
|
+
isCompare?: boolean;
|
|
1222
|
+
parentValues?: Record<string, any>;
|
|
1223
|
+
labelWidth?: string;
|
|
1224
|
+
disabled?: boolean;
|
|
1225
|
+
height?: string;
|
|
1226
|
+
stepActive?: string | number;
|
|
1227
|
+
size?: "small" | "default" | "large";
|
|
1228
|
+
inline?: boolean;
|
|
1229
|
+
labelPosition?: string;
|
|
1230
|
+
keyProp?: string;
|
|
1231
|
+
popperClass?: string;
|
|
1232
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1233
|
+
}> & Readonly<{
|
|
1234
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1235
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1236
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1237
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1238
|
+
}>, {
|
|
1239
|
+
values: vue.Ref<FormValue, FormValue>;
|
|
1240
|
+
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1241
|
+
formState: FormState;
|
|
1242
|
+
initialized: vue.Ref<boolean, boolean>;
|
|
1243
|
+
changeHandler: () => void;
|
|
1244
|
+
resetForm: () => any;
|
|
1245
|
+
submitForm: (native?: boolean) => Promise<any>;
|
|
1246
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1247
|
+
change: (...args: any[]) => void;
|
|
1248
|
+
error: (...args: any[]) => void;
|
|
1249
|
+
"field-change": (...args: any[]) => void;
|
|
1250
|
+
"field-input": (...args: any[]) => void;
|
|
1251
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
1252
|
+
config: FormConfig;
|
|
1253
|
+
initValues: Record<string, any>;
|
|
1254
|
+
lastValues?: Record<string, any>;
|
|
1255
|
+
isCompare?: boolean;
|
|
1256
|
+
parentValues?: Record<string, any>;
|
|
1257
|
+
labelWidth?: string;
|
|
1258
|
+
disabled?: boolean;
|
|
1259
|
+
height?: string;
|
|
1260
|
+
stepActive?: string | number;
|
|
1261
|
+
size?: "small" | "default" | "large";
|
|
1262
|
+
inline?: boolean;
|
|
1263
|
+
labelPosition?: string;
|
|
1264
|
+
keyProp?: string;
|
|
1265
|
+
popperClass?: string;
|
|
1266
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1267
|
+
}> & Readonly<{
|
|
1268
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1269
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1270
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1271
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1272
|
+
}>, {
|
|
1273
|
+
disabled: boolean;
|
|
1274
|
+
labelWidth: string;
|
|
1275
|
+
inline: boolean;
|
|
1276
|
+
labelPosition: string;
|
|
1277
|
+
config: FormConfig;
|
|
1278
|
+
initValues: Record<string, any>;
|
|
1279
|
+
lastValues: Record<string, any>;
|
|
1280
|
+
isCompare: boolean;
|
|
1281
|
+
keyProp: string;
|
|
1282
|
+
parentValues: Record<string, any>;
|
|
1283
|
+
stepActive: string | number;
|
|
1284
|
+
height: string;
|
|
1285
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
1286
|
+
P: {};
|
|
1287
|
+
B: {};
|
|
1288
|
+
D: {};
|
|
1289
|
+
C: {};
|
|
1290
|
+
M: {};
|
|
1291
|
+
Defaults: {};
|
|
1292
|
+
}, Readonly<{
|
|
1293
|
+
config: FormConfig;
|
|
1294
|
+
initValues: Record<string, any>;
|
|
1295
|
+
lastValues?: Record<string, any>;
|
|
1296
|
+
isCompare?: boolean;
|
|
1297
|
+
parentValues?: Record<string, any>;
|
|
1298
|
+
labelWidth?: string;
|
|
1299
|
+
disabled?: boolean;
|
|
1300
|
+
height?: string;
|
|
1301
|
+
stepActive?: string | number;
|
|
1302
|
+
size?: "small" | "default" | "large";
|
|
1303
|
+
inline?: boolean;
|
|
1304
|
+
labelPosition?: string;
|
|
1305
|
+
keyProp?: string;
|
|
1306
|
+
popperClass?: string;
|
|
1307
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1308
|
+
}> & Readonly<{
|
|
1309
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1310
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1311
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1312
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1313
|
+
}>, {
|
|
1314
|
+
values: vue.Ref<FormValue, FormValue>;
|
|
1315
|
+
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1316
|
+
formState: FormState;
|
|
1317
|
+
initialized: vue.Ref<boolean, boolean>;
|
|
1318
|
+
changeHandler: () => void;
|
|
1319
|
+
resetForm: () => any;
|
|
1320
|
+
submitForm: (native?: boolean) => Promise<any>;
|
|
1321
|
+
}, {}, {}, {}, {
|
|
1322
|
+
disabled: boolean;
|
|
1323
|
+
labelWidth: string;
|
|
1324
|
+
inline: boolean;
|
|
1325
|
+
labelPosition: string;
|
|
1326
|
+
config: FormConfig;
|
|
1327
|
+
initValues: Record<string, any>;
|
|
1328
|
+
lastValues: Record<string, any>;
|
|
1329
|
+
isCompare: boolean;
|
|
1330
|
+
keyProp: string;
|
|
1331
|
+
parentValues: Record<string, any>;
|
|
1332
|
+
stepActive: string | number;
|
|
1333
|
+
height: string;
|
|
1334
|
+
}> | null;
|
|
1335
|
+
};
|
|
1336
|
+
attrs: Partial<{}>;
|
|
1328
1337
|
};
|
|
1329
|
-
|
|
1338
|
+
type __VLS_TemplateResult$3 = ReturnType<typeof __VLS_template$3>;
|
|
1339
|
+
declare const __VLS_component$3: vue.DefineComponent<{
|
|
1330
1340
|
config?: FormConfig;
|
|
1331
1341
|
values?: Object;
|
|
1332
1342
|
parentValues?: Object;
|
|
@@ -1342,78 +1352,29 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_WithDefaults$5<__VLS_
|
|
|
1342
1352
|
labelPosition?: string;
|
|
1343
1353
|
/** 关闭前的回调,会暂停 Drawer 的关闭; done 是个 function type 接受一个 boolean 参数, 执行 done 使用 true 参数或不提供参数将会终止关闭 */
|
|
1344
1354
|
beforeClose?: (done: (cancel?: boolean) => void) => void;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
type: vue.PropType<string>;
|
|
1364
|
-
default: string;
|
|
1365
|
-
};
|
|
1366
|
-
inline: {
|
|
1367
|
-
type: vue.PropType<boolean>;
|
|
1368
|
-
default: boolean;
|
|
1369
|
-
};
|
|
1370
|
-
labelPosition: {
|
|
1371
|
-
type: vue.PropType<string>;
|
|
1372
|
-
default: string;
|
|
1373
|
-
};
|
|
1374
|
-
config: {
|
|
1375
|
-
type: vue.PropType<FormConfig>;
|
|
1376
|
-
required: true;
|
|
1377
|
-
default: () => never[];
|
|
1378
|
-
};
|
|
1379
|
-
initValues: {
|
|
1380
|
-
type: vue.PropType<Record<string, any>>;
|
|
1381
|
-
required: true;
|
|
1382
|
-
default: () => {};
|
|
1383
|
-
};
|
|
1384
|
-
lastValues: {
|
|
1385
|
-
type: vue.PropType<Record<string, any>>;
|
|
1386
|
-
default: () => {};
|
|
1387
|
-
};
|
|
1388
|
-
isCompare: {
|
|
1389
|
-
type: vue.PropType<boolean>;
|
|
1390
|
-
default: boolean;
|
|
1391
|
-
};
|
|
1392
|
-
keyProp: {
|
|
1393
|
-
type: vue.PropType<string>;
|
|
1394
|
-
default: string;
|
|
1395
|
-
};
|
|
1396
|
-
parentValues: {
|
|
1397
|
-
type: vue.PropType<Record<string, any>>;
|
|
1398
|
-
default: () => {};
|
|
1399
|
-
};
|
|
1400
|
-
stepActive: {
|
|
1401
|
-
type: vue.PropType<string | number>;
|
|
1402
|
-
default: number;
|
|
1403
|
-
};
|
|
1404
|
-
height: {
|
|
1405
|
-
type: vue.PropType<string>;
|
|
1406
|
-
default: string;
|
|
1407
|
-
};
|
|
1408
|
-
extendState: {
|
|
1409
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1410
|
-
};
|
|
1411
|
-
}>> & {
|
|
1355
|
+
}, {
|
|
1356
|
+
form: vue.Ref<vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1357
|
+
config: FormConfig;
|
|
1358
|
+
initValues: Record<string, any>;
|
|
1359
|
+
lastValues?: Record<string, any>;
|
|
1360
|
+
isCompare?: boolean;
|
|
1361
|
+
parentValues?: Record<string, any>;
|
|
1362
|
+
labelWidth?: string;
|
|
1363
|
+
disabled?: boolean;
|
|
1364
|
+
height?: string;
|
|
1365
|
+
stepActive?: string | number;
|
|
1366
|
+
size?: "small" | "default" | "large";
|
|
1367
|
+
inline?: boolean;
|
|
1368
|
+
labelPosition?: string;
|
|
1369
|
+
keyProp?: string;
|
|
1370
|
+
popperClass?: string;
|
|
1371
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1372
|
+
}> & Readonly<{
|
|
1412
1373
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1413
1374
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1414
1375
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1415
1376
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1416
|
-
}
|
|
1377
|
+
}>, {
|
|
1417
1378
|
values: vue.Ref<FormValue, FormValue>;
|
|
1418
1379
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1419
1380
|
formState: FormState;
|
|
@@ -1421,77 +1382,33 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_WithDefaults$5<__VLS_
|
|
|
1421
1382
|
changeHandler: () => void;
|
|
1422
1383
|
resetForm: () => any;
|
|
1423
1384
|
submitForm: (native?: boolean) => Promise<any>;
|
|
1424
|
-
},
|
|
1385
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1425
1386
|
change: (...args: any[]) => void;
|
|
1426
1387
|
error: (...args: any[]) => void;
|
|
1427
1388
|
"field-change": (...args: any[]) => void;
|
|
1428
1389
|
"field-input": (...args: any[]) => void;
|
|
1429
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
default: boolean;
|
|
1447
|
-
};
|
|
1448
|
-
labelPosition: {
|
|
1449
|
-
type: vue.PropType<string>;
|
|
1450
|
-
default: string;
|
|
1451
|
-
};
|
|
1452
|
-
config: {
|
|
1453
|
-
type: vue.PropType<FormConfig>;
|
|
1454
|
-
required: true;
|
|
1455
|
-
default: () => never[];
|
|
1456
|
-
};
|
|
1457
|
-
initValues: {
|
|
1458
|
-
type: vue.PropType<Record<string, any>>;
|
|
1459
|
-
required: true;
|
|
1460
|
-
default: () => {};
|
|
1461
|
-
};
|
|
1462
|
-
lastValues: {
|
|
1463
|
-
type: vue.PropType<Record<string, any>>;
|
|
1464
|
-
default: () => {};
|
|
1465
|
-
};
|
|
1466
|
-
isCompare: {
|
|
1467
|
-
type: vue.PropType<boolean>;
|
|
1468
|
-
default: boolean;
|
|
1469
|
-
};
|
|
1470
|
-
keyProp: {
|
|
1471
|
-
type: vue.PropType<string>;
|
|
1472
|
-
default: string;
|
|
1473
|
-
};
|
|
1474
|
-
parentValues: {
|
|
1475
|
-
type: vue.PropType<Record<string, any>>;
|
|
1476
|
-
default: () => {};
|
|
1477
|
-
};
|
|
1478
|
-
stepActive: {
|
|
1479
|
-
type: vue.PropType<string | number>;
|
|
1480
|
-
default: number;
|
|
1481
|
-
};
|
|
1482
|
-
height: {
|
|
1483
|
-
type: vue.PropType<string>;
|
|
1484
|
-
default: string;
|
|
1485
|
-
};
|
|
1486
|
-
extendState: {
|
|
1487
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1488
|
-
};
|
|
1489
|
-
}>> & {
|
|
1390
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
1391
|
+
config: FormConfig;
|
|
1392
|
+
initValues: Record<string, any>;
|
|
1393
|
+
lastValues?: Record<string, any>;
|
|
1394
|
+
isCompare?: boolean;
|
|
1395
|
+
parentValues?: Record<string, any>;
|
|
1396
|
+
labelWidth?: string;
|
|
1397
|
+
disabled?: boolean;
|
|
1398
|
+
height?: string;
|
|
1399
|
+
stepActive?: string | number;
|
|
1400
|
+
size?: "small" | "default" | "large";
|
|
1401
|
+
inline?: boolean;
|
|
1402
|
+
labelPosition?: string;
|
|
1403
|
+
keyProp?: string;
|
|
1404
|
+
popperClass?: string;
|
|
1405
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1406
|
+
}> & Readonly<{
|
|
1490
1407
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1491
1408
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1492
1409
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1493
1410
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1494
|
-
}
|
|
1411
|
+
}>, {
|
|
1495
1412
|
disabled: boolean;
|
|
1496
1413
|
labelWidth: string;
|
|
1497
1414
|
inline: boolean;
|
|
@@ -1504,79 +1421,35 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_WithDefaults$5<__VLS_
|
|
|
1504
1421
|
parentValues: Record<string, any>;
|
|
1505
1422
|
stepActive: string | number;
|
|
1506
1423
|
height: string;
|
|
1507
|
-
},
|
|
1424
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
1508
1425
|
P: {};
|
|
1509
1426
|
B: {};
|
|
1510
1427
|
D: {};
|
|
1511
1428
|
C: {};
|
|
1512
1429
|
M: {};
|
|
1513
1430
|
Defaults: {};
|
|
1514
|
-
}, Readonly<
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
default: boolean;
|
|
1532
|
-
};
|
|
1533
|
-
labelPosition: {
|
|
1534
|
-
type: vue.PropType<string>;
|
|
1535
|
-
default: string;
|
|
1536
|
-
};
|
|
1537
|
-
config: {
|
|
1538
|
-
type: vue.PropType<FormConfig>;
|
|
1539
|
-
required: true;
|
|
1540
|
-
default: () => never[];
|
|
1541
|
-
};
|
|
1542
|
-
initValues: {
|
|
1543
|
-
type: vue.PropType<Record<string, any>>;
|
|
1544
|
-
required: true;
|
|
1545
|
-
default: () => {};
|
|
1546
|
-
};
|
|
1547
|
-
lastValues: {
|
|
1548
|
-
type: vue.PropType<Record<string, any>>;
|
|
1549
|
-
default: () => {};
|
|
1550
|
-
};
|
|
1551
|
-
isCompare: {
|
|
1552
|
-
type: vue.PropType<boolean>;
|
|
1553
|
-
default: boolean;
|
|
1554
|
-
};
|
|
1555
|
-
keyProp: {
|
|
1556
|
-
type: vue.PropType<string>;
|
|
1557
|
-
default: string;
|
|
1558
|
-
};
|
|
1559
|
-
parentValues: {
|
|
1560
|
-
type: vue.PropType<Record<string, any>>;
|
|
1561
|
-
default: () => {};
|
|
1562
|
-
};
|
|
1563
|
-
stepActive: {
|
|
1564
|
-
type: vue.PropType<string | number>;
|
|
1565
|
-
default: number;
|
|
1566
|
-
};
|
|
1567
|
-
height: {
|
|
1568
|
-
type: vue.PropType<string>;
|
|
1569
|
-
default: string;
|
|
1570
|
-
};
|
|
1571
|
-
extendState: {
|
|
1572
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1573
|
-
};
|
|
1574
|
-
}>> & {
|
|
1431
|
+
}, Readonly<{
|
|
1432
|
+
config: FormConfig;
|
|
1433
|
+
initValues: Record<string, any>;
|
|
1434
|
+
lastValues?: Record<string, any>;
|
|
1435
|
+
isCompare?: boolean;
|
|
1436
|
+
parentValues?: Record<string, any>;
|
|
1437
|
+
labelWidth?: string;
|
|
1438
|
+
disabled?: boolean;
|
|
1439
|
+
height?: string;
|
|
1440
|
+
stepActive?: string | number;
|
|
1441
|
+
size?: "small" | "default" | "large";
|
|
1442
|
+
inline?: boolean;
|
|
1443
|
+
labelPosition?: string;
|
|
1444
|
+
keyProp?: string;
|
|
1445
|
+
popperClass?: string;
|
|
1446
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1447
|
+
}> & Readonly<{
|
|
1575
1448
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1576
1449
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1577
1450
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1578
1451
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1579
|
-
}
|
|
1452
|
+
}>, {
|
|
1580
1453
|
values: vue.Ref<FormValue, FormValue>;
|
|
1581
1454
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1582
1455
|
formState: FormState;
|
|
@@ -1597,72 +1470,28 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_WithDefaults$5<__VLS_
|
|
|
1597
1470
|
parentValues: Record<string, any>;
|
|
1598
1471
|
stepActive: string | number;
|
|
1599
1472
|
height: string;
|
|
1600
|
-
}> | undefined, vue.
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
default: boolean;
|
|
1618
|
-
};
|
|
1619
|
-
labelPosition: {
|
|
1620
|
-
type: vue.PropType<string>;
|
|
1621
|
-
default: string;
|
|
1622
|
-
};
|
|
1623
|
-
config: {
|
|
1624
|
-
type: vue.PropType<FormConfig>;
|
|
1625
|
-
required: true;
|
|
1626
|
-
default: () => never[];
|
|
1627
|
-
};
|
|
1628
|
-
initValues: {
|
|
1629
|
-
type: vue.PropType<Record<string, any>>;
|
|
1630
|
-
required: true;
|
|
1631
|
-
default: () => {};
|
|
1632
|
-
};
|
|
1633
|
-
lastValues: {
|
|
1634
|
-
type: vue.PropType<Record<string, any>>;
|
|
1635
|
-
default: () => {};
|
|
1636
|
-
};
|
|
1637
|
-
isCompare: {
|
|
1638
|
-
type: vue.PropType<boolean>;
|
|
1639
|
-
default: boolean;
|
|
1640
|
-
};
|
|
1641
|
-
keyProp: {
|
|
1642
|
-
type: vue.PropType<string>;
|
|
1643
|
-
default: string;
|
|
1644
|
-
};
|
|
1645
|
-
parentValues: {
|
|
1646
|
-
type: vue.PropType<Record<string, any>>;
|
|
1647
|
-
default: () => {};
|
|
1648
|
-
};
|
|
1649
|
-
stepActive: {
|
|
1650
|
-
type: vue.PropType<string | number>;
|
|
1651
|
-
default: number;
|
|
1652
|
-
};
|
|
1653
|
-
height: {
|
|
1654
|
-
type: vue.PropType<string>;
|
|
1655
|
-
default: string;
|
|
1656
|
-
};
|
|
1657
|
-
extendState: {
|
|
1658
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1659
|
-
};
|
|
1660
|
-
}>> & {
|
|
1473
|
+
}> | undefined, vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1474
|
+
config: FormConfig;
|
|
1475
|
+
initValues: Record<string, any>;
|
|
1476
|
+
lastValues?: Record<string, any>;
|
|
1477
|
+
isCompare?: boolean;
|
|
1478
|
+
parentValues?: Record<string, any>;
|
|
1479
|
+
labelWidth?: string;
|
|
1480
|
+
disabled?: boolean;
|
|
1481
|
+
height?: string;
|
|
1482
|
+
stepActive?: string | number;
|
|
1483
|
+
size?: "small" | "default" | "large";
|
|
1484
|
+
inline?: boolean;
|
|
1485
|
+
labelPosition?: string;
|
|
1486
|
+
keyProp?: string;
|
|
1487
|
+
popperClass?: string;
|
|
1488
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1489
|
+
}> & Readonly<{
|
|
1661
1490
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1662
1491
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1663
1492
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1664
1493
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1665
|
-
}
|
|
1494
|
+
}>, {
|
|
1666
1495
|
values: vue.Ref<FormValue, FormValue>;
|
|
1667
1496
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1668
1497
|
formState: FormState;
|
|
@@ -1670,77 +1499,33 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_WithDefaults$5<__VLS_
|
|
|
1670
1499
|
changeHandler: () => void;
|
|
1671
1500
|
resetForm: () => any;
|
|
1672
1501
|
submitForm: (native?: boolean) => Promise<any>;
|
|
1673
|
-
},
|
|
1502
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1674
1503
|
change: (...args: any[]) => void;
|
|
1675
1504
|
error: (...args: any[]) => void;
|
|
1676
1505
|
"field-change": (...args: any[]) => void;
|
|
1677
1506
|
"field-input": (...args: any[]) => void;
|
|
1678
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
default: boolean;
|
|
1696
|
-
};
|
|
1697
|
-
labelPosition: {
|
|
1698
|
-
type: vue.PropType<string>;
|
|
1699
|
-
default: string;
|
|
1700
|
-
};
|
|
1701
|
-
config: {
|
|
1702
|
-
type: vue.PropType<FormConfig>;
|
|
1703
|
-
required: true;
|
|
1704
|
-
default: () => never[];
|
|
1705
|
-
};
|
|
1706
|
-
initValues: {
|
|
1707
|
-
type: vue.PropType<Record<string, any>>;
|
|
1708
|
-
required: true;
|
|
1709
|
-
default: () => {};
|
|
1710
|
-
};
|
|
1711
|
-
lastValues: {
|
|
1712
|
-
type: vue.PropType<Record<string, any>>;
|
|
1713
|
-
default: () => {};
|
|
1714
|
-
};
|
|
1715
|
-
isCompare: {
|
|
1716
|
-
type: vue.PropType<boolean>;
|
|
1717
|
-
default: boolean;
|
|
1718
|
-
};
|
|
1719
|
-
keyProp: {
|
|
1720
|
-
type: vue.PropType<string>;
|
|
1721
|
-
default: string;
|
|
1722
|
-
};
|
|
1723
|
-
parentValues: {
|
|
1724
|
-
type: vue.PropType<Record<string, any>>;
|
|
1725
|
-
default: () => {};
|
|
1726
|
-
};
|
|
1727
|
-
stepActive: {
|
|
1728
|
-
type: vue.PropType<string | number>;
|
|
1729
|
-
default: number;
|
|
1730
|
-
};
|
|
1731
|
-
height: {
|
|
1732
|
-
type: vue.PropType<string>;
|
|
1733
|
-
default: string;
|
|
1734
|
-
};
|
|
1735
|
-
extendState: {
|
|
1736
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1737
|
-
};
|
|
1738
|
-
}>> & {
|
|
1507
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
1508
|
+
config: FormConfig;
|
|
1509
|
+
initValues: Record<string, any>;
|
|
1510
|
+
lastValues?: Record<string, any>;
|
|
1511
|
+
isCompare?: boolean;
|
|
1512
|
+
parentValues?: Record<string, any>;
|
|
1513
|
+
labelWidth?: string;
|
|
1514
|
+
disabled?: boolean;
|
|
1515
|
+
height?: string;
|
|
1516
|
+
stepActive?: string | number;
|
|
1517
|
+
size?: "small" | "default" | "large";
|
|
1518
|
+
inline?: boolean;
|
|
1519
|
+
labelPosition?: string;
|
|
1520
|
+
keyProp?: string;
|
|
1521
|
+
popperClass?: string;
|
|
1522
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1523
|
+
}> & Readonly<{
|
|
1739
1524
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1740
1525
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1741
1526
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1742
1527
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1743
|
-
}
|
|
1528
|
+
}>, {
|
|
1744
1529
|
disabled: boolean;
|
|
1745
1530
|
labelWidth: string;
|
|
1746
1531
|
inline: boolean;
|
|
@@ -1753,79 +1538,35 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_WithDefaults$5<__VLS_
|
|
|
1753
1538
|
parentValues: Record<string, any>;
|
|
1754
1539
|
stepActive: string | number;
|
|
1755
1540
|
height: string;
|
|
1756
|
-
},
|
|
1541
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
1757
1542
|
P: {};
|
|
1758
1543
|
B: {};
|
|
1759
1544
|
D: {};
|
|
1760
1545
|
C: {};
|
|
1761
1546
|
M: {};
|
|
1762
1547
|
Defaults: {};
|
|
1763
|
-
}, Readonly<
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
default: boolean;
|
|
1781
|
-
};
|
|
1782
|
-
labelPosition: {
|
|
1783
|
-
type: vue.PropType<string>;
|
|
1784
|
-
default: string;
|
|
1785
|
-
};
|
|
1786
|
-
config: {
|
|
1787
|
-
type: vue.PropType<FormConfig>;
|
|
1788
|
-
required: true;
|
|
1789
|
-
default: () => never[];
|
|
1790
|
-
};
|
|
1791
|
-
initValues: {
|
|
1792
|
-
type: vue.PropType<Record<string, any>>;
|
|
1793
|
-
required: true;
|
|
1794
|
-
default: () => {};
|
|
1795
|
-
};
|
|
1796
|
-
lastValues: {
|
|
1797
|
-
type: vue.PropType<Record<string, any>>;
|
|
1798
|
-
default: () => {};
|
|
1799
|
-
};
|
|
1800
|
-
isCompare: {
|
|
1801
|
-
type: vue.PropType<boolean>;
|
|
1802
|
-
default: boolean;
|
|
1803
|
-
};
|
|
1804
|
-
keyProp: {
|
|
1805
|
-
type: vue.PropType<string>;
|
|
1806
|
-
default: string;
|
|
1807
|
-
};
|
|
1808
|
-
parentValues: {
|
|
1809
|
-
type: vue.PropType<Record<string, any>>;
|
|
1810
|
-
default: () => {};
|
|
1811
|
-
};
|
|
1812
|
-
stepActive: {
|
|
1813
|
-
type: vue.PropType<string | number>;
|
|
1814
|
-
default: number;
|
|
1815
|
-
};
|
|
1816
|
-
height: {
|
|
1817
|
-
type: vue.PropType<string>;
|
|
1818
|
-
default: string;
|
|
1819
|
-
};
|
|
1820
|
-
extendState: {
|
|
1821
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
1822
|
-
};
|
|
1823
|
-
}>> & {
|
|
1548
|
+
}, Readonly<{
|
|
1549
|
+
config: FormConfig;
|
|
1550
|
+
initValues: Record<string, any>;
|
|
1551
|
+
lastValues?: Record<string, any>;
|
|
1552
|
+
isCompare?: boolean;
|
|
1553
|
+
parentValues?: Record<string, any>;
|
|
1554
|
+
labelWidth?: string;
|
|
1555
|
+
disabled?: boolean;
|
|
1556
|
+
height?: string;
|
|
1557
|
+
stepActive?: string | number;
|
|
1558
|
+
size?: "small" | "default" | "large";
|
|
1559
|
+
inline?: boolean;
|
|
1560
|
+
labelPosition?: string;
|
|
1561
|
+
keyProp?: string;
|
|
1562
|
+
popperClass?: string;
|
|
1563
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1564
|
+
}> & Readonly<{
|
|
1824
1565
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1825
1566
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1826
1567
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1827
1568
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1828
|
-
}
|
|
1569
|
+
}>, {
|
|
1829
1570
|
values: vue.Ref<FormValue, FormValue>;
|
|
1830
1571
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1831
1572
|
formState: FormState;
|
|
@@ -1852,15 +1593,15 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_WithDefaults$5<__VLS_
|
|
|
1852
1593
|
show: () => void;
|
|
1853
1594
|
hide: () => void;
|
|
1854
1595
|
handleClose: () => void;
|
|
1855
|
-
},
|
|
1596
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1856
1597
|
change: (...args: any[]) => void;
|
|
1857
1598
|
close: (...args: any[]) => void;
|
|
1599
|
+
error: (...args: any[]) => void;
|
|
1600
|
+
submit: (...args: any[]) => void;
|
|
1858
1601
|
open: (...args: any[]) => void;
|
|
1859
1602
|
opened: (...args: any[]) => void;
|
|
1860
1603
|
closed: (...args: any[]) => void;
|
|
1861
|
-
|
|
1862
|
-
submit: (...args: any[]) => void;
|
|
1863
|
-
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<__VLS_WithDefaults$5<__VLS_TypePropsToOption$s<{
|
|
1604
|
+
}, string, vue.PublicProps, Readonly<{
|
|
1864
1605
|
config?: FormConfig;
|
|
1865
1606
|
values?: Object;
|
|
1866
1607
|
parentValues?: Object;
|
|
@@ -1876,56 +1617,158 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_WithDefaults$5<__VLS_
|
|
|
1876
1617
|
labelPosition?: string;
|
|
1877
1618
|
/** 关闭前的回调,会暂停 Drawer 的关闭; done 是个 function type 接受一个 boolean 参数, 执行 done 使用 true 参数或不提供参数将会终止关闭 */
|
|
1878
1619
|
beforeClose?: (done: (cancel?: boolean) => void) => void;
|
|
1879
|
-
}
|
|
1880
|
-
closeOnPressEscape: boolean;
|
|
1881
|
-
config: () => never[];
|
|
1882
|
-
values: () => {};
|
|
1883
|
-
confirmText: string;
|
|
1884
|
-
}>>> & {
|
|
1620
|
+
}> & Readonly<{
|
|
1885
1621
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1886
|
-
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
1887
|
-
onError?: ((...args: any[]) => any) | undefined;
|
|
1888
1622
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1623
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1624
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
1889
1625
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1890
1626
|
onOpened?: ((...args: any[]) => any) | undefined;
|
|
1891
1627
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1892
|
-
}
|
|
1628
|
+
}>, {
|
|
1893
1629
|
values: Object;
|
|
1894
1630
|
closeOnPressEscape: boolean;
|
|
1895
1631
|
config: FormConfig;
|
|
1896
1632
|
confirmText: string;
|
|
1897
|
-
}, {}>;
|
|
1898
|
-
declare const _default$t: __VLS_WithTemplateSlots$3<typeof __VLS_component$3,
|
|
1633
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
1634
|
+
declare const _default$t: __VLS_WithTemplateSlots$3<typeof __VLS_component$3, __VLS_TemplateResult$3["slots"]>;
|
|
1899
1635
|
|
|
1900
|
-
type __VLS_WithDefaults$5<P, D> = {
|
|
1901
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify$5<P[K] & {
|
|
1902
|
-
default: D[K];
|
|
1903
|
-
}> : P[K];
|
|
1904
|
-
};
|
|
1905
|
-
type __VLS_Prettify$5<T> = {
|
|
1906
|
-
[K in keyof T]: T[K];
|
|
1907
|
-
} & {};
|
|
1908
1636
|
type __VLS_WithTemplateSlots$3<T, S> = T & {
|
|
1909
1637
|
new (): {
|
|
1910
1638
|
$slots: S;
|
|
1911
1639
|
};
|
|
1912
1640
|
};
|
|
1913
|
-
type __VLS_NonUndefinedable$s<T> = T extends undefined ? never : T;
|
|
1914
|
-
type __VLS_TypePropsToOption$s<T> = {
|
|
1915
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1916
|
-
type: vue.PropType<__VLS_NonUndefinedable$s<T[K]>>;
|
|
1917
|
-
} : {
|
|
1918
|
-
type: vue.PropType<T[K]>;
|
|
1919
|
-
required: true;
|
|
1920
|
-
};
|
|
1921
|
-
};
|
|
1922
1641
|
|
|
1923
1642
|
declare function __VLS_template$2(): {
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1643
|
+
slots: {
|
|
1644
|
+
default?(_: {}): any;
|
|
1645
|
+
left?(_: {}): any;
|
|
1646
|
+
footer?(_: {}): any;
|
|
1647
|
+
};
|
|
1648
|
+
refs: {
|
|
1649
|
+
form: vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1650
|
+
config: FormConfig;
|
|
1651
|
+
initValues: Record<string, any>;
|
|
1652
|
+
lastValues?: Record<string, any>;
|
|
1653
|
+
isCompare?: boolean;
|
|
1654
|
+
parentValues?: Record<string, any>;
|
|
1655
|
+
labelWidth?: string;
|
|
1656
|
+
disabled?: boolean;
|
|
1657
|
+
height?: string;
|
|
1658
|
+
stepActive?: string | number;
|
|
1659
|
+
size?: "small" | "default" | "large";
|
|
1660
|
+
inline?: boolean;
|
|
1661
|
+
labelPosition?: string;
|
|
1662
|
+
keyProp?: string;
|
|
1663
|
+
popperClass?: string;
|
|
1664
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1665
|
+
}> & Readonly<{
|
|
1666
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1667
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1668
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1669
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1670
|
+
}>, {
|
|
1671
|
+
values: vue.Ref<FormValue, FormValue>;
|
|
1672
|
+
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1673
|
+
formState: FormState;
|
|
1674
|
+
initialized: vue.Ref<boolean, boolean>;
|
|
1675
|
+
changeHandler: () => void;
|
|
1676
|
+
resetForm: () => any;
|
|
1677
|
+
submitForm: (native?: boolean) => Promise<any>;
|
|
1678
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1679
|
+
change: (...args: any[]) => void;
|
|
1680
|
+
error: (...args: any[]) => void;
|
|
1681
|
+
"field-change": (...args: any[]) => void;
|
|
1682
|
+
"field-input": (...args: any[]) => void;
|
|
1683
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
1684
|
+
config: FormConfig;
|
|
1685
|
+
initValues: Record<string, any>;
|
|
1686
|
+
lastValues?: Record<string, any>;
|
|
1687
|
+
isCompare?: boolean;
|
|
1688
|
+
parentValues?: Record<string, any>;
|
|
1689
|
+
labelWidth?: string;
|
|
1690
|
+
disabled?: boolean;
|
|
1691
|
+
height?: string;
|
|
1692
|
+
stepActive?: string | number;
|
|
1693
|
+
size?: "small" | "default" | "large";
|
|
1694
|
+
inline?: boolean;
|
|
1695
|
+
labelPosition?: string;
|
|
1696
|
+
keyProp?: string;
|
|
1697
|
+
popperClass?: string;
|
|
1698
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1699
|
+
}> & Readonly<{
|
|
1700
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1701
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1702
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1703
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1704
|
+
}>, {
|
|
1705
|
+
disabled: boolean;
|
|
1706
|
+
labelWidth: string;
|
|
1707
|
+
inline: boolean;
|
|
1708
|
+
labelPosition: string;
|
|
1709
|
+
config: FormConfig;
|
|
1710
|
+
initValues: Record<string, any>;
|
|
1711
|
+
lastValues: Record<string, any>;
|
|
1712
|
+
isCompare: boolean;
|
|
1713
|
+
keyProp: string;
|
|
1714
|
+
parentValues: Record<string, any>;
|
|
1715
|
+
stepActive: string | number;
|
|
1716
|
+
height: string;
|
|
1717
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
1718
|
+
P: {};
|
|
1719
|
+
B: {};
|
|
1720
|
+
D: {};
|
|
1721
|
+
C: {};
|
|
1722
|
+
M: {};
|
|
1723
|
+
Defaults: {};
|
|
1724
|
+
}, Readonly<{
|
|
1725
|
+
config: FormConfig;
|
|
1726
|
+
initValues: Record<string, any>;
|
|
1727
|
+
lastValues?: Record<string, any>;
|
|
1728
|
+
isCompare?: boolean;
|
|
1729
|
+
parentValues?: Record<string, any>;
|
|
1730
|
+
labelWidth?: string;
|
|
1731
|
+
disabled?: boolean;
|
|
1732
|
+
height?: string;
|
|
1733
|
+
stepActive?: string | number;
|
|
1734
|
+
size?: "small" | "default" | "large";
|
|
1735
|
+
inline?: boolean;
|
|
1736
|
+
labelPosition?: string;
|
|
1737
|
+
keyProp?: string;
|
|
1738
|
+
popperClass?: string;
|
|
1739
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1740
|
+
}> & Readonly<{
|
|
1741
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1742
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
1743
|
+
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1744
|
+
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1745
|
+
}>, {
|
|
1746
|
+
values: vue.Ref<FormValue, FormValue>;
|
|
1747
|
+
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
1748
|
+
formState: FormState;
|
|
1749
|
+
initialized: vue.Ref<boolean, boolean>;
|
|
1750
|
+
changeHandler: () => void;
|
|
1751
|
+
resetForm: () => any;
|
|
1752
|
+
submitForm: (native?: boolean) => Promise<any>;
|
|
1753
|
+
}, {}, {}, {}, {
|
|
1754
|
+
disabled: boolean;
|
|
1755
|
+
labelWidth: string;
|
|
1756
|
+
inline: boolean;
|
|
1757
|
+
labelPosition: string;
|
|
1758
|
+
config: FormConfig;
|
|
1759
|
+
initValues: Record<string, any>;
|
|
1760
|
+
lastValues: Record<string, any>;
|
|
1761
|
+
isCompare: boolean;
|
|
1762
|
+
keyProp: string;
|
|
1763
|
+
parentValues: Record<string, any>;
|
|
1764
|
+
stepActive: string | number;
|
|
1765
|
+
height: string;
|
|
1766
|
+
}> | null;
|
|
1767
|
+
};
|
|
1768
|
+
attrs: Partial<{}>;
|
|
1927
1769
|
};
|
|
1928
|
-
|
|
1770
|
+
type __VLS_TemplateResult$2 = ReturnType<typeof __VLS_template$2>;
|
|
1771
|
+
declare const __VLS_component$2: vue.DefineComponent<{
|
|
1929
1772
|
config?: FormConfig;
|
|
1930
1773
|
values?: Object;
|
|
1931
1774
|
parentValues?: Object;
|
|
@@ -1937,77 +1780,29 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_WithDefaults$4<__VLS_
|
|
|
1937
1780
|
confirmText?: string;
|
|
1938
1781
|
inline?: boolean;
|
|
1939
1782
|
labelPosition?: string;
|
|
1940
|
-
}
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
default: string;
|
|
1959
|
-
};
|
|
1960
|
-
inline: {
|
|
1961
|
-
type: vue.PropType<boolean>;
|
|
1962
|
-
default: boolean;
|
|
1963
|
-
};
|
|
1964
|
-
labelPosition: {
|
|
1965
|
-
type: vue.PropType<string>;
|
|
1966
|
-
default: string;
|
|
1967
|
-
};
|
|
1968
|
-
config: {
|
|
1969
|
-
type: vue.PropType<FormConfig>;
|
|
1970
|
-
required: true;
|
|
1971
|
-
default: () => never[];
|
|
1972
|
-
};
|
|
1973
|
-
initValues: {
|
|
1974
|
-
type: vue.PropType<Record<string, any>>;
|
|
1975
|
-
required: true;
|
|
1976
|
-
default: () => {};
|
|
1977
|
-
};
|
|
1978
|
-
lastValues: {
|
|
1979
|
-
type: vue.PropType<Record<string, any>>;
|
|
1980
|
-
default: () => {};
|
|
1981
|
-
};
|
|
1982
|
-
isCompare: {
|
|
1983
|
-
type: vue.PropType<boolean>;
|
|
1984
|
-
default: boolean;
|
|
1985
|
-
};
|
|
1986
|
-
keyProp: {
|
|
1987
|
-
type: vue.PropType<string>;
|
|
1988
|
-
default: string;
|
|
1989
|
-
};
|
|
1990
|
-
parentValues: {
|
|
1991
|
-
type: vue.PropType<Record<string, any>>;
|
|
1992
|
-
default: () => {};
|
|
1993
|
-
};
|
|
1994
|
-
stepActive: {
|
|
1995
|
-
type: vue.PropType<string | number>;
|
|
1996
|
-
default: number;
|
|
1997
|
-
};
|
|
1998
|
-
height: {
|
|
1999
|
-
type: vue.PropType<string>;
|
|
2000
|
-
default: string;
|
|
2001
|
-
};
|
|
2002
|
-
extendState: {
|
|
2003
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
2004
|
-
};
|
|
2005
|
-
}>> & {
|
|
1783
|
+
}, {
|
|
1784
|
+
form: vue.Ref<vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1785
|
+
config: FormConfig;
|
|
1786
|
+
initValues: Record<string, any>;
|
|
1787
|
+
lastValues?: Record<string, any>;
|
|
1788
|
+
isCompare?: boolean;
|
|
1789
|
+
parentValues?: Record<string, any>;
|
|
1790
|
+
labelWidth?: string;
|
|
1791
|
+
disabled?: boolean;
|
|
1792
|
+
height?: string;
|
|
1793
|
+
stepActive?: string | number;
|
|
1794
|
+
size?: "small" | "default" | "large";
|
|
1795
|
+
inline?: boolean;
|
|
1796
|
+
labelPosition?: string;
|
|
1797
|
+
keyProp?: string;
|
|
1798
|
+
popperClass?: string;
|
|
1799
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1800
|
+
}> & Readonly<{
|
|
2006
1801
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2007
1802
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2008
1803
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2009
1804
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2010
|
-
}
|
|
1805
|
+
}>, {
|
|
2011
1806
|
values: vue.Ref<FormValue, FormValue>;
|
|
2012
1807
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
2013
1808
|
formState: FormState;
|
|
@@ -2015,77 +1810,33 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_WithDefaults$4<__VLS_
|
|
|
2015
1810
|
changeHandler: () => void;
|
|
2016
1811
|
resetForm: () => any;
|
|
2017
1812
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2018
|
-
},
|
|
1813
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2019
1814
|
change: (...args: any[]) => void;
|
|
2020
1815
|
error: (...args: any[]) => void;
|
|
2021
1816
|
"field-change": (...args: any[]) => void;
|
|
2022
1817
|
"field-input": (...args: any[]) => void;
|
|
2023
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
default: boolean;
|
|
2041
|
-
};
|
|
2042
|
-
labelPosition: {
|
|
2043
|
-
type: vue.PropType<string>;
|
|
2044
|
-
default: string;
|
|
2045
|
-
};
|
|
2046
|
-
config: {
|
|
2047
|
-
type: vue.PropType<FormConfig>;
|
|
2048
|
-
required: true;
|
|
2049
|
-
default: () => never[];
|
|
2050
|
-
};
|
|
2051
|
-
initValues: {
|
|
2052
|
-
type: vue.PropType<Record<string, any>>;
|
|
2053
|
-
required: true;
|
|
2054
|
-
default: () => {};
|
|
2055
|
-
};
|
|
2056
|
-
lastValues: {
|
|
2057
|
-
type: vue.PropType<Record<string, any>>;
|
|
2058
|
-
default: () => {};
|
|
2059
|
-
};
|
|
2060
|
-
isCompare: {
|
|
2061
|
-
type: vue.PropType<boolean>;
|
|
2062
|
-
default: boolean;
|
|
2063
|
-
};
|
|
2064
|
-
keyProp: {
|
|
2065
|
-
type: vue.PropType<string>;
|
|
2066
|
-
default: string;
|
|
2067
|
-
};
|
|
2068
|
-
parentValues: {
|
|
2069
|
-
type: vue.PropType<Record<string, any>>;
|
|
2070
|
-
default: () => {};
|
|
2071
|
-
};
|
|
2072
|
-
stepActive: {
|
|
2073
|
-
type: vue.PropType<string | number>;
|
|
2074
|
-
default: number;
|
|
2075
|
-
};
|
|
2076
|
-
height: {
|
|
2077
|
-
type: vue.PropType<string>;
|
|
2078
|
-
default: string;
|
|
2079
|
-
};
|
|
2080
|
-
extendState: {
|
|
2081
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
2082
|
-
};
|
|
2083
|
-
}>> & {
|
|
1818
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
1819
|
+
config: FormConfig;
|
|
1820
|
+
initValues: Record<string, any>;
|
|
1821
|
+
lastValues?: Record<string, any>;
|
|
1822
|
+
isCompare?: boolean;
|
|
1823
|
+
parentValues?: Record<string, any>;
|
|
1824
|
+
labelWidth?: string;
|
|
1825
|
+
disabled?: boolean;
|
|
1826
|
+
height?: string;
|
|
1827
|
+
stepActive?: string | number;
|
|
1828
|
+
size?: "small" | "default" | "large";
|
|
1829
|
+
inline?: boolean;
|
|
1830
|
+
labelPosition?: string;
|
|
1831
|
+
keyProp?: string;
|
|
1832
|
+
popperClass?: string;
|
|
1833
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1834
|
+
}> & Readonly<{
|
|
2084
1835
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2085
1836
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2086
1837
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2087
1838
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2088
|
-
}
|
|
1839
|
+
}>, {
|
|
2089
1840
|
disabled: boolean;
|
|
2090
1841
|
labelWidth: string;
|
|
2091
1842
|
inline: boolean;
|
|
@@ -2098,79 +1849,35 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_WithDefaults$4<__VLS_
|
|
|
2098
1849
|
parentValues: Record<string, any>;
|
|
2099
1850
|
stepActive: string | number;
|
|
2100
1851
|
height: string;
|
|
2101
|
-
},
|
|
1852
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
2102
1853
|
P: {};
|
|
2103
1854
|
B: {};
|
|
2104
1855
|
D: {};
|
|
2105
1856
|
C: {};
|
|
2106
1857
|
M: {};
|
|
2107
1858
|
Defaults: {};
|
|
2108
|
-
}, Readonly<
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
default: boolean;
|
|
2126
|
-
};
|
|
2127
|
-
labelPosition: {
|
|
2128
|
-
type: vue.PropType<string>;
|
|
2129
|
-
default: string;
|
|
2130
|
-
};
|
|
2131
|
-
config: {
|
|
2132
|
-
type: vue.PropType<FormConfig>;
|
|
2133
|
-
required: true;
|
|
2134
|
-
default: () => never[];
|
|
2135
|
-
};
|
|
2136
|
-
initValues: {
|
|
2137
|
-
type: vue.PropType<Record<string, any>>;
|
|
2138
|
-
required: true;
|
|
2139
|
-
default: () => {};
|
|
2140
|
-
};
|
|
2141
|
-
lastValues: {
|
|
2142
|
-
type: vue.PropType<Record<string, any>>;
|
|
2143
|
-
default: () => {};
|
|
2144
|
-
};
|
|
2145
|
-
isCompare: {
|
|
2146
|
-
type: vue.PropType<boolean>;
|
|
2147
|
-
default: boolean;
|
|
2148
|
-
};
|
|
2149
|
-
keyProp: {
|
|
2150
|
-
type: vue.PropType<string>;
|
|
2151
|
-
default: string;
|
|
2152
|
-
};
|
|
2153
|
-
parentValues: {
|
|
2154
|
-
type: vue.PropType<Record<string, any>>;
|
|
2155
|
-
default: () => {};
|
|
2156
|
-
};
|
|
2157
|
-
stepActive: {
|
|
2158
|
-
type: vue.PropType<string | number>;
|
|
2159
|
-
default: number;
|
|
2160
|
-
};
|
|
2161
|
-
height: {
|
|
2162
|
-
type: vue.PropType<string>;
|
|
2163
|
-
default: string;
|
|
2164
|
-
};
|
|
2165
|
-
extendState: {
|
|
2166
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
2167
|
-
};
|
|
2168
|
-
}>> & {
|
|
1859
|
+
}, Readonly<{
|
|
1860
|
+
config: FormConfig;
|
|
1861
|
+
initValues: Record<string, any>;
|
|
1862
|
+
lastValues?: Record<string, any>;
|
|
1863
|
+
isCompare?: boolean;
|
|
1864
|
+
parentValues?: Record<string, any>;
|
|
1865
|
+
labelWidth?: string;
|
|
1866
|
+
disabled?: boolean;
|
|
1867
|
+
height?: string;
|
|
1868
|
+
stepActive?: string | number;
|
|
1869
|
+
size?: "small" | "default" | "large";
|
|
1870
|
+
inline?: boolean;
|
|
1871
|
+
labelPosition?: string;
|
|
1872
|
+
keyProp?: string;
|
|
1873
|
+
popperClass?: string;
|
|
1874
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1875
|
+
}> & Readonly<{
|
|
2169
1876
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2170
1877
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2171
1878
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2172
1879
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2173
|
-
}
|
|
1880
|
+
}>, {
|
|
2174
1881
|
values: vue.Ref<FormValue, FormValue>;
|
|
2175
1882
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
2176
1883
|
formState: FormState;
|
|
@@ -2191,72 +1898,28 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_WithDefaults$4<__VLS_
|
|
|
2191
1898
|
parentValues: Record<string, any>;
|
|
2192
1899
|
stepActive: string | number;
|
|
2193
1900
|
height: string;
|
|
2194
|
-
}> | undefined, vue.
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
default: boolean;
|
|
2212
|
-
};
|
|
2213
|
-
labelPosition: {
|
|
2214
|
-
type: vue.PropType<string>;
|
|
2215
|
-
default: string;
|
|
2216
|
-
};
|
|
2217
|
-
config: {
|
|
2218
|
-
type: vue.PropType<FormConfig>;
|
|
2219
|
-
required: true;
|
|
2220
|
-
default: () => never[];
|
|
2221
|
-
};
|
|
2222
|
-
initValues: {
|
|
2223
|
-
type: vue.PropType<Record<string, any>>;
|
|
2224
|
-
required: true;
|
|
2225
|
-
default: () => {};
|
|
2226
|
-
};
|
|
2227
|
-
lastValues: {
|
|
2228
|
-
type: vue.PropType<Record<string, any>>;
|
|
2229
|
-
default: () => {};
|
|
2230
|
-
};
|
|
2231
|
-
isCompare: {
|
|
2232
|
-
type: vue.PropType<boolean>;
|
|
2233
|
-
default: boolean;
|
|
2234
|
-
};
|
|
2235
|
-
keyProp: {
|
|
2236
|
-
type: vue.PropType<string>;
|
|
2237
|
-
default: string;
|
|
2238
|
-
};
|
|
2239
|
-
parentValues: {
|
|
2240
|
-
type: vue.PropType<Record<string, any>>;
|
|
2241
|
-
default: () => {};
|
|
2242
|
-
};
|
|
2243
|
-
stepActive: {
|
|
2244
|
-
type: vue.PropType<string | number>;
|
|
2245
|
-
default: number;
|
|
2246
|
-
};
|
|
2247
|
-
height: {
|
|
2248
|
-
type: vue.PropType<string>;
|
|
2249
|
-
default: string;
|
|
2250
|
-
};
|
|
2251
|
-
extendState: {
|
|
2252
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
2253
|
-
};
|
|
2254
|
-
}>> & {
|
|
1901
|
+
}> | undefined, vue.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1902
|
+
config: FormConfig;
|
|
1903
|
+
initValues: Record<string, any>;
|
|
1904
|
+
lastValues?: Record<string, any>;
|
|
1905
|
+
isCompare?: boolean;
|
|
1906
|
+
parentValues?: Record<string, any>;
|
|
1907
|
+
labelWidth?: string;
|
|
1908
|
+
disabled?: boolean;
|
|
1909
|
+
height?: string;
|
|
1910
|
+
stepActive?: string | number;
|
|
1911
|
+
size?: "small" | "default" | "large";
|
|
1912
|
+
inline?: boolean;
|
|
1913
|
+
labelPosition?: string;
|
|
1914
|
+
keyProp?: string;
|
|
1915
|
+
popperClass?: string;
|
|
1916
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1917
|
+
}> & Readonly<{
|
|
2255
1918
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2256
1919
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2257
1920
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2258
1921
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2259
|
-
}
|
|
1922
|
+
}>, {
|
|
2260
1923
|
values: vue.Ref<FormValue, FormValue>;
|
|
2261
1924
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
2262
1925
|
formState: FormState;
|
|
@@ -2264,77 +1927,33 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_WithDefaults$4<__VLS_
|
|
|
2264
1927
|
changeHandler: () => void;
|
|
2265
1928
|
resetForm: () => any;
|
|
2266
1929
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2267
|
-
},
|
|
1930
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2268
1931
|
change: (...args: any[]) => void;
|
|
2269
1932
|
error: (...args: any[]) => void;
|
|
2270
1933
|
"field-change": (...args: any[]) => void;
|
|
2271
1934
|
"field-input": (...args: any[]) => void;
|
|
2272
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
default: boolean;
|
|
2290
|
-
};
|
|
2291
|
-
labelPosition: {
|
|
2292
|
-
type: vue.PropType<string>;
|
|
2293
|
-
default: string;
|
|
2294
|
-
};
|
|
2295
|
-
config: {
|
|
2296
|
-
type: vue.PropType<FormConfig>;
|
|
2297
|
-
required: true;
|
|
2298
|
-
default: () => never[];
|
|
2299
|
-
};
|
|
2300
|
-
initValues: {
|
|
2301
|
-
type: vue.PropType<Record<string, any>>;
|
|
2302
|
-
required: true;
|
|
2303
|
-
default: () => {};
|
|
2304
|
-
};
|
|
2305
|
-
lastValues: {
|
|
2306
|
-
type: vue.PropType<Record<string, any>>;
|
|
2307
|
-
default: () => {};
|
|
2308
|
-
};
|
|
2309
|
-
isCompare: {
|
|
2310
|
-
type: vue.PropType<boolean>;
|
|
2311
|
-
default: boolean;
|
|
2312
|
-
};
|
|
2313
|
-
keyProp: {
|
|
2314
|
-
type: vue.PropType<string>;
|
|
2315
|
-
default: string;
|
|
2316
|
-
};
|
|
2317
|
-
parentValues: {
|
|
2318
|
-
type: vue.PropType<Record<string, any>>;
|
|
2319
|
-
default: () => {};
|
|
2320
|
-
};
|
|
2321
|
-
stepActive: {
|
|
2322
|
-
type: vue.PropType<string | number>;
|
|
2323
|
-
default: number;
|
|
2324
|
-
};
|
|
2325
|
-
height: {
|
|
2326
|
-
type: vue.PropType<string>;
|
|
2327
|
-
default: string;
|
|
2328
|
-
};
|
|
2329
|
-
extendState: {
|
|
2330
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
2331
|
-
};
|
|
2332
|
-
}>> & {
|
|
1935
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
|
|
1936
|
+
config: FormConfig;
|
|
1937
|
+
initValues: Record<string, any>;
|
|
1938
|
+
lastValues?: Record<string, any>;
|
|
1939
|
+
isCompare?: boolean;
|
|
1940
|
+
parentValues?: Record<string, any>;
|
|
1941
|
+
labelWidth?: string;
|
|
1942
|
+
disabled?: boolean;
|
|
1943
|
+
height?: string;
|
|
1944
|
+
stepActive?: string | number;
|
|
1945
|
+
size?: "small" | "default" | "large";
|
|
1946
|
+
inline?: boolean;
|
|
1947
|
+
labelPosition?: string;
|
|
1948
|
+
keyProp?: string;
|
|
1949
|
+
popperClass?: string;
|
|
1950
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1951
|
+
}> & Readonly<{
|
|
2333
1952
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2334
1953
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2335
1954
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2336
1955
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2337
|
-
}
|
|
1956
|
+
}>, {
|
|
2338
1957
|
disabled: boolean;
|
|
2339
1958
|
labelWidth: string;
|
|
2340
1959
|
inline: boolean;
|
|
@@ -2347,79 +1966,35 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_WithDefaults$4<__VLS_
|
|
|
2347
1966
|
parentValues: Record<string, any>;
|
|
2348
1967
|
stepActive: string | number;
|
|
2349
1968
|
height: string;
|
|
2350
|
-
},
|
|
1969
|
+
}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
2351
1970
|
P: {};
|
|
2352
1971
|
B: {};
|
|
2353
1972
|
D: {};
|
|
2354
1973
|
C: {};
|
|
2355
1974
|
M: {};
|
|
2356
1975
|
Defaults: {};
|
|
2357
|
-
}, Readonly<
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
default: boolean;
|
|
2375
|
-
};
|
|
2376
|
-
labelPosition: {
|
|
2377
|
-
type: vue.PropType<string>;
|
|
2378
|
-
default: string;
|
|
2379
|
-
};
|
|
2380
|
-
config: {
|
|
2381
|
-
type: vue.PropType<FormConfig>;
|
|
2382
|
-
required: true;
|
|
2383
|
-
default: () => never[];
|
|
2384
|
-
};
|
|
2385
|
-
initValues: {
|
|
2386
|
-
type: vue.PropType<Record<string, any>>;
|
|
2387
|
-
required: true;
|
|
2388
|
-
default: () => {};
|
|
2389
|
-
};
|
|
2390
|
-
lastValues: {
|
|
2391
|
-
type: vue.PropType<Record<string, any>>;
|
|
2392
|
-
default: () => {};
|
|
2393
|
-
};
|
|
2394
|
-
isCompare: {
|
|
2395
|
-
type: vue.PropType<boolean>;
|
|
2396
|
-
default: boolean;
|
|
2397
|
-
};
|
|
2398
|
-
keyProp: {
|
|
2399
|
-
type: vue.PropType<string>;
|
|
2400
|
-
default: string;
|
|
2401
|
-
};
|
|
2402
|
-
parentValues: {
|
|
2403
|
-
type: vue.PropType<Record<string, any>>;
|
|
2404
|
-
default: () => {};
|
|
2405
|
-
};
|
|
2406
|
-
stepActive: {
|
|
2407
|
-
type: vue.PropType<string | number>;
|
|
2408
|
-
default: number;
|
|
2409
|
-
};
|
|
2410
|
-
height: {
|
|
2411
|
-
type: vue.PropType<string>;
|
|
2412
|
-
default: string;
|
|
2413
|
-
};
|
|
2414
|
-
extendState: {
|
|
2415
|
-
type: vue.PropType<(state: FormState) => Record<string, any> | Promise<Record<string, any>>>;
|
|
2416
|
-
};
|
|
2417
|
-
}>> & {
|
|
1976
|
+
}, Readonly<{
|
|
1977
|
+
config: FormConfig;
|
|
1978
|
+
initValues: Record<string, any>;
|
|
1979
|
+
lastValues?: Record<string, any>;
|
|
1980
|
+
isCompare?: boolean;
|
|
1981
|
+
parentValues?: Record<string, any>;
|
|
1982
|
+
labelWidth?: string;
|
|
1983
|
+
disabled?: boolean;
|
|
1984
|
+
height?: string;
|
|
1985
|
+
stepActive?: string | number;
|
|
1986
|
+
size?: "small" | "default" | "large";
|
|
1987
|
+
inline?: boolean;
|
|
1988
|
+
labelPosition?: string;
|
|
1989
|
+
keyProp?: string;
|
|
1990
|
+
popperClass?: string;
|
|
1991
|
+
extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1992
|
+
}> & Readonly<{
|
|
2418
1993
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2419
1994
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2420
1995
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2421
1996
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2422
|
-
}
|
|
1997
|
+
}>, {
|
|
2423
1998
|
values: vue.Ref<FormValue, FormValue>;
|
|
2424
1999
|
lastValuesProcessed: vue.Ref<FormValue, FormValue>;
|
|
2425
2000
|
formState: FormState;
|
|
@@ -2444,11 +2019,11 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_WithDefaults$4<__VLS_
|
|
|
2444
2019
|
saveFetch: vue.Ref<boolean, boolean>;
|
|
2445
2020
|
show: () => void;
|
|
2446
2021
|
hide: () => void;
|
|
2447
|
-
},
|
|
2022
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2448
2023
|
change: (...args: any[]) => void;
|
|
2449
2024
|
error: (...args: any[]) => void;
|
|
2450
2025
|
submit: (...args: any[]) => void;
|
|
2451
|
-
}, string, vue.PublicProps, Readonly<
|
|
2026
|
+
}, string, vue.PublicProps, Readonly<{
|
|
2452
2027
|
config?: FormConfig;
|
|
2453
2028
|
values?: Object;
|
|
2454
2029
|
parentValues?: Object;
|
|
@@ -2460,45 +2035,24 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_WithDefaults$4<__VLS_
|
|
|
2460
2035
|
confirmText?: string;
|
|
2461
2036
|
inline?: boolean;
|
|
2462
2037
|
labelPosition?: string;
|
|
2463
|
-
}
|
|
2464
|
-
config: () => never[];
|
|
2465
|
-
values: () => {};
|
|
2466
|
-
confirmText: string;
|
|
2467
|
-
}>>> & {
|
|
2038
|
+
}> & Readonly<{
|
|
2468
2039
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2469
|
-
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
2470
2040
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2471
|
-
|
|
2041
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
2042
|
+
}>, {
|
|
2472
2043
|
values: Object;
|
|
2473
2044
|
config: FormConfig;
|
|
2474
2045
|
confirmText: string;
|
|
2475
|
-
}, {}>;
|
|
2476
|
-
declare const _default$s: __VLS_WithTemplateSlots$2<typeof __VLS_component$2,
|
|
2046
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2047
|
+
declare const _default$s: __VLS_WithTemplateSlots$2<typeof __VLS_component$2, __VLS_TemplateResult$2["slots"]>;
|
|
2477
2048
|
|
|
2478
|
-
type __VLS_WithDefaults$4<P, D> = {
|
|
2479
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify$4<P[K] & {
|
|
2480
|
-
default: D[K];
|
|
2481
|
-
}> : P[K];
|
|
2482
|
-
};
|
|
2483
|
-
type __VLS_Prettify$4<T> = {
|
|
2484
|
-
[K in keyof T]: T[K];
|
|
2485
|
-
} & {};
|
|
2486
2049
|
type __VLS_WithTemplateSlots$2<T, S> = T & {
|
|
2487
2050
|
new (): {
|
|
2488
2051
|
$slots: S;
|
|
2489
2052
|
};
|
|
2490
2053
|
};
|
|
2491
|
-
type __VLS_NonUndefinedable$r<T> = T extends undefined ? never : T;
|
|
2492
|
-
type __VLS_TypePropsToOption$r<T> = {
|
|
2493
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2494
|
-
type: vue.PropType<__VLS_NonUndefinedable$r<T[K]>>;
|
|
2495
|
-
} : {
|
|
2496
|
-
type: vue.PropType<T[K]>;
|
|
2497
|
-
required: true;
|
|
2498
|
-
};
|
|
2499
|
-
};
|
|
2500
2054
|
|
|
2501
|
-
declare const _default$r: vue.DefineComponent<
|
|
2055
|
+
declare const _default$r: vue.DefineComponent<{
|
|
2502
2056
|
/** 表单值 */
|
|
2503
2057
|
model: FormValue;
|
|
2504
2058
|
/** 需对比的值(开启对比模式时传入) */
|
|
@@ -2512,16 +2066,10 @@ declare const _default$r: vue.DefineComponent<__VLS_WithDefaults$3<__VLS_TypePro
|
|
|
2512
2066
|
size?: string;
|
|
2513
2067
|
/** 是否开启对比模式 */
|
|
2514
2068
|
isCompare?: boolean;
|
|
2515
|
-
}
|
|
2516
|
-
prop: string;
|
|
2517
|
-
size: string;
|
|
2518
|
-
expandMore: boolean;
|
|
2519
|
-
lastValues: () => {};
|
|
2520
|
-
isCompare: boolean;
|
|
2521
|
-
}>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2069
|
+
}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2522
2070
|
change: (...args: any[]) => void;
|
|
2523
2071
|
addDiffCount: (...args: any[]) => void;
|
|
2524
|
-
}, string, vue.PublicProps, Readonly<
|
|
2072
|
+
}, string, vue.PublicProps, Readonly<{
|
|
2525
2073
|
/** 表单值 */
|
|
2526
2074
|
model: FormValue;
|
|
2527
2075
|
/** 需对比的值(开启对比模式时传入) */
|
|
@@ -2535,42 +2083,18 @@ declare const _default$r: vue.DefineComponent<__VLS_WithDefaults$3<__VLS_TypePro
|
|
|
2535
2083
|
size?: string;
|
|
2536
2084
|
/** 是否开启对比模式 */
|
|
2537
2085
|
isCompare?: boolean;
|
|
2538
|
-
}
|
|
2539
|
-
prop: string;
|
|
2540
|
-
size: string;
|
|
2541
|
-
expandMore: boolean;
|
|
2542
|
-
lastValues: () => {};
|
|
2543
|
-
isCompare: boolean;
|
|
2544
|
-
}>>> & {
|
|
2086
|
+
}> & Readonly<{
|
|
2545
2087
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2546
2088
|
onAddDiffCount?: ((...args: any[]) => any) | undefined;
|
|
2547
|
-
}
|
|
2089
|
+
}>, {
|
|
2548
2090
|
size: string;
|
|
2549
2091
|
prop: string;
|
|
2550
2092
|
lastValues: FormValue;
|
|
2551
2093
|
isCompare: boolean;
|
|
2552
2094
|
expandMore: boolean;
|
|
2553
|
-
}, {}>;
|
|
2554
|
-
|
|
2555
|
-
type __VLS_WithDefaults$3<P, D> = {
|
|
2556
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify$3<P[K] & {
|
|
2557
|
-
default: D[K];
|
|
2558
|
-
}> : P[K];
|
|
2559
|
-
};
|
|
2560
|
-
type __VLS_Prettify$3<T> = {
|
|
2561
|
-
[K in keyof T]: T[K];
|
|
2562
|
-
} & {};
|
|
2563
|
-
type __VLS_NonUndefinedable$q<T> = T extends undefined ? never : T;
|
|
2564
|
-
type __VLS_TypePropsToOption$q<T> = {
|
|
2565
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2566
|
-
type: vue.PropType<__VLS_NonUndefinedable$q<T[K]>>;
|
|
2567
|
-
} : {
|
|
2568
|
-
type: vue.PropType<T[K]>;
|
|
2569
|
-
required: true;
|
|
2570
|
-
};
|
|
2571
|
-
};
|
|
2095
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2572
2096
|
|
|
2573
|
-
declare const _default$q: vue.DefineComponent<
|
|
2097
|
+
declare const _default$q: vue.DefineComponent<{
|
|
2574
2098
|
labelWidth?: string;
|
|
2575
2099
|
prop: string;
|
|
2576
2100
|
size?: string;
|
|
@@ -2580,15 +2104,10 @@ declare const _default$q: vue.DefineComponent<__VLS_WithDefaults$2<__VLS_TypePro
|
|
|
2580
2104
|
config: FieldsetConfig;
|
|
2581
2105
|
rules?: any;
|
|
2582
2106
|
disabled?: boolean;
|
|
2583
|
-
}
|
|
2584
|
-
rules: {};
|
|
2585
|
-
prop: string;
|
|
2586
|
-
lastValues: () => {};
|
|
2587
|
-
isCompare: boolean;
|
|
2588
|
-
}>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2107
|
+
}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2589
2108
|
change: (...args: any[]) => void;
|
|
2590
2109
|
addDiffCount: (...args: any[]) => void;
|
|
2591
|
-
}, string, vue.PublicProps, Readonly<
|
|
2110
|
+
}, string, vue.PublicProps, Readonly<{
|
|
2592
2111
|
labelWidth?: string;
|
|
2593
2112
|
prop: string;
|
|
2594
2113
|
size?: string;
|
|
@@ -2598,44 +2117,26 @@ declare const _default$q: vue.DefineComponent<__VLS_WithDefaults$2<__VLS_TypePro
|
|
|
2598
2117
|
config: FieldsetConfig;
|
|
2599
2118
|
rules?: any;
|
|
2600
2119
|
disabled?: boolean;
|
|
2601
|
-
}
|
|
2602
|
-
rules: {};
|
|
2603
|
-
prop: string;
|
|
2604
|
-
lastValues: () => {};
|
|
2605
|
-
isCompare: boolean;
|
|
2606
|
-
}>>> & {
|
|
2120
|
+
}> & Readonly<{
|
|
2607
2121
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2608
2122
|
onAddDiffCount?: ((...args: any[]) => any) | undefined;
|
|
2609
|
-
}
|
|
2123
|
+
}>, {
|
|
2610
2124
|
prop: string;
|
|
2611
2125
|
rules: any;
|
|
2612
2126
|
lastValues: Record<string, any>;
|
|
2613
2127
|
isCompare: boolean;
|
|
2614
|
-
}, {}>;
|
|
2615
|
-
|
|
2616
|
-
type __VLS_WithDefaults$2<P, D> = {
|
|
2617
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify$2<P[K] & {
|
|
2618
|
-
default: D[K];
|
|
2619
|
-
}> : P[K];
|
|
2620
|
-
};
|
|
2621
|
-
type __VLS_Prettify$2<T> = {
|
|
2622
|
-
[K in keyof T]: T[K];
|
|
2623
|
-
} & {};
|
|
2624
|
-
type __VLS_NonUndefinedable$p<T> = T extends undefined ? never : T;
|
|
2625
|
-
type __VLS_TypePropsToOption$p<T> = {
|
|
2626
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2627
|
-
type: vue.PropType<__VLS_NonUndefinedable$p<T[K]>>;
|
|
2628
|
-
} : {
|
|
2629
|
-
type: vue.PropType<T[K]>;
|
|
2630
|
-
required: true;
|
|
2631
|
-
};
|
|
2632
|
-
};
|
|
2128
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2633
2129
|
|
|
2634
2130
|
declare function __VLS_template$1(): {
|
|
2635
|
-
|
|
2636
|
-
|
|
2131
|
+
slots: {
|
|
2132
|
+
header?(_: {}): any;
|
|
2133
|
+
default?(_: {}): any;
|
|
2134
|
+
};
|
|
2135
|
+
refs: {};
|
|
2136
|
+
attrs: Partial<{}>;
|
|
2637
2137
|
};
|
|
2638
|
-
|
|
2138
|
+
type __VLS_TemplateResult$1 = ReturnType<typeof __VLS_template$1>;
|
|
2139
|
+
declare const __VLS_component$1: vue.DefineComponent<{
|
|
2639
2140
|
model: any;
|
|
2640
2141
|
lastValues?: any;
|
|
2641
2142
|
isCompare?: boolean;
|
|
@@ -2645,10 +2146,10 @@ declare const __VLS_component$1: vue.DefineComponent<__VLS_TypePropsToOption$o<{
|
|
|
2645
2146
|
prop?: string;
|
|
2646
2147
|
size?: string;
|
|
2647
2148
|
disabled?: boolean;
|
|
2648
|
-
}
|
|
2149
|
+
}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2649
2150
|
change: (...args: any[]) => void;
|
|
2650
2151
|
addDiffCount: (...args: any[]) => void;
|
|
2651
|
-
}, string, vue.PublicProps, Readonly<
|
|
2152
|
+
}, string, vue.PublicProps, Readonly<{
|
|
2652
2153
|
model: any;
|
|
2653
2154
|
lastValues?: any;
|
|
2654
2155
|
isCompare?: boolean;
|
|
@@ -2658,28 +2159,19 @@ declare const __VLS_component$1: vue.DefineComponent<__VLS_TypePropsToOption$o<{
|
|
|
2658
2159
|
prop?: string;
|
|
2659
2160
|
size?: string;
|
|
2660
2161
|
disabled?: boolean;
|
|
2661
|
-
}
|
|
2162
|
+
}> & Readonly<{
|
|
2662
2163
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2663
2164
|
onAddDiffCount?: ((...args: any[]) => any) | undefined;
|
|
2664
|
-
}, {}, {}>;
|
|
2665
|
-
declare const _default$p: __VLS_WithTemplateSlots$1<typeof __VLS_component$1,
|
|
2165
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2166
|
+
declare const _default$p: __VLS_WithTemplateSlots$1<typeof __VLS_component$1, __VLS_TemplateResult$1["slots"]>;
|
|
2666
2167
|
|
|
2667
2168
|
type __VLS_WithTemplateSlots$1<T, S> = T & {
|
|
2668
2169
|
new (): {
|
|
2669
2170
|
$slots: S;
|
|
2670
2171
|
};
|
|
2671
2172
|
};
|
|
2672
|
-
type __VLS_NonUndefinedable$o<T> = T extends undefined ? never : T;
|
|
2673
|
-
type __VLS_TypePropsToOption$o<T> = {
|
|
2674
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2675
|
-
type: vue.PropType<__VLS_NonUndefinedable$o<T[K]>>;
|
|
2676
|
-
} : {
|
|
2677
|
-
type: vue.PropType<T[K]>;
|
|
2678
|
-
required: true;
|
|
2679
|
-
};
|
|
2680
|
-
};
|
|
2681
2173
|
|
|
2682
|
-
declare const _default$o: vue.DefineComponent<
|
|
2174
|
+
declare const _default$o: vue.DefineComponent<{
|
|
2683
2175
|
model: any;
|
|
2684
2176
|
lastValues?: any;
|
|
2685
2177
|
isCompare?: boolean;
|
|
@@ -2690,10 +2182,10 @@ declare const _default$o: vue.DefineComponent<__VLS_TypePropsToOption$n<{
|
|
|
2690
2182
|
size?: string;
|
|
2691
2183
|
expandMore?: boolean;
|
|
2692
2184
|
disabled?: boolean;
|
|
2693
|
-
}
|
|
2185
|
+
}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2694
2186
|
change: (...args: any[]) => void;
|
|
2695
2187
|
addDiffCount: (...args: any[]) => void;
|
|
2696
|
-
}, string, vue.PublicProps, Readonly<
|
|
2188
|
+
}, string, vue.PublicProps, Readonly<{
|
|
2697
2189
|
model: any;
|
|
2698
2190
|
lastValues?: any;
|
|
2699
2191
|
isCompare?: boolean;
|
|
@@ -2704,22 +2196,12 @@ declare const _default$o: vue.DefineComponent<__VLS_TypePropsToOption$n<{
|
|
|
2704
2196
|
size?: string;
|
|
2705
2197
|
expandMore?: boolean;
|
|
2706
2198
|
disabled?: boolean;
|
|
2707
|
-
}
|
|
2199
|
+
}> & Readonly<{
|
|
2708
2200
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2709
2201
|
onAddDiffCount?: ((...args: any[]) => any) | undefined;
|
|
2710
|
-
}, {}, {}>;
|
|
2711
|
-
|
|
2712
|
-
type __VLS_NonUndefinedable$n<T> = T extends undefined ? never : T;
|
|
2713
|
-
type __VLS_TypePropsToOption$n<T> = {
|
|
2714
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2715
|
-
type: vue.PropType<__VLS_NonUndefinedable$n<T[K]>>;
|
|
2716
|
-
} : {
|
|
2717
|
-
type: vue.PropType<T[K]>;
|
|
2718
|
-
required: true;
|
|
2719
|
-
};
|
|
2720
|
-
};
|
|
2202
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2721
2203
|
|
|
2722
|
-
declare const _default$n: vue.DefineComponent<
|
|
2204
|
+
declare const _default$n: vue.DefineComponent<{
|
|
2723
2205
|
model: any;
|
|
2724
2206
|
lastValues?: any;
|
|
2725
2207
|
isCompare?: boolean;
|
|
@@ -2730,13 +2212,10 @@ declare const _default$n: vue.DefineComponent<__VLS_WithDefaults$1<__VLS_TypePro
|
|
|
2730
2212
|
prop?: string;
|
|
2731
2213
|
expandMore?: boolean;
|
|
2732
2214
|
disabled?: boolean;
|
|
2733
|
-
}
|
|
2734
|
-
lastValues: () => {};
|
|
2735
|
-
isCompare: boolean;
|
|
2736
|
-
}>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2215
|
+
}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2737
2216
|
change: (...args: any[]) => void;
|
|
2738
2217
|
addDiffCount: (...args: any[]) => void;
|
|
2739
|
-
}, string, vue.PublicProps, Readonly<
|
|
2218
|
+
}, string, vue.PublicProps, Readonly<{
|
|
2740
2219
|
model: any;
|
|
2741
2220
|
lastValues?: any;
|
|
2742
2221
|
isCompare?: boolean;
|
|
@@ -2747,45 +2226,139 @@ declare const _default$n: vue.DefineComponent<__VLS_WithDefaults$1<__VLS_TypePro
|
|
|
2747
2226
|
prop?: string;
|
|
2748
2227
|
expandMore?: boolean;
|
|
2749
2228
|
disabled?: boolean;
|
|
2750
|
-
}
|
|
2751
|
-
lastValues: () => {};
|
|
2752
|
-
isCompare: boolean;
|
|
2753
|
-
}>>> & {
|
|
2229
|
+
}> & Readonly<{
|
|
2754
2230
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2755
2231
|
onAddDiffCount?: ((...args: any[]) => any) | undefined;
|
|
2756
|
-
}
|
|
2232
|
+
}>, {
|
|
2757
2233
|
lastValues: any;
|
|
2758
2234
|
isCompare: boolean;
|
|
2759
|
-
}, {}>;
|
|
2760
|
-
|
|
2761
|
-
type __VLS_WithDefaults$1<P, D> = {
|
|
2762
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify$1<P[K] & {
|
|
2763
|
-
default: D[K];
|
|
2764
|
-
}> : P[K];
|
|
2765
|
-
};
|
|
2766
|
-
type __VLS_Prettify$1<T> = {
|
|
2767
|
-
[K in keyof T]: T[K];
|
|
2768
|
-
} & {};
|
|
2769
|
-
type __VLS_NonUndefinedable$m<T> = T extends undefined ? never : T;
|
|
2770
|
-
type __VLS_TypePropsToOption$m<T> = {
|
|
2771
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2772
|
-
type: vue.PropType<__VLS_NonUndefinedable$m<T[K]>>;
|
|
2773
|
-
} : {
|
|
2774
|
-
type: vue.PropType<T[K]>;
|
|
2775
|
-
required: true;
|
|
2776
|
-
};
|
|
2777
|
-
};
|
|
2235
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2778
2236
|
|
|
2779
2237
|
declare function __VLS_template(): {
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2238
|
+
slots: {
|
|
2239
|
+
operateCol?(_: {
|
|
2240
|
+
scope: {
|
|
2241
|
+
$index: any;
|
|
2242
|
+
row: any;
|
|
2243
|
+
};
|
|
2244
|
+
}): any;
|
|
2245
|
+
default?(_: {}): any;
|
|
2246
|
+
};
|
|
2247
|
+
refs: {
|
|
2248
|
+
mTable: HTMLDivElement;
|
|
2249
|
+
tMagicTable: ({
|
|
2250
|
+
$: vue.ComponentInternalInstance;
|
|
2251
|
+
$data: {};
|
|
2252
|
+
$props: {
|
|
2253
|
+
readonly data?: any[] | undefined;
|
|
2254
|
+
readonly border?: boolean | undefined;
|
|
2255
|
+
readonly maxHeight?: (number | string) | undefined;
|
|
2256
|
+
readonly defaultExpandAll?: boolean | undefined;
|
|
2257
|
+
readonly onSelect?: ((...args: any[]) => any) | undefined;
|
|
2258
|
+
readonly "onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
2259
|
+
readonly "onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
2260
|
+
readonly "onCell-click"?: ((...args: any[]) => any) | undefined;
|
|
2261
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<_tmagic_design.TableProps> & Readonly<{
|
|
2262
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
2263
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
2264
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
2265
|
+
"onCell-click"?: ((...args: any[]) => any) | undefined;
|
|
2266
|
+
}>;
|
|
2267
|
+
$attrs: {
|
|
2268
|
+
[x: string]: unknown;
|
|
2269
|
+
};
|
|
2270
|
+
$refs: {
|
|
2271
|
+
[x: string]: unknown;
|
|
2272
|
+
};
|
|
2273
|
+
$slots: Readonly<{
|
|
2274
|
+
[name: string]: vue.Slot<any> | undefined;
|
|
2275
|
+
}>;
|
|
2276
|
+
$root: vue.ComponentPublicInstance | null;
|
|
2277
|
+
$parent: vue.ComponentPublicInstance | null;
|
|
2278
|
+
$host: Element | null;
|
|
2279
|
+
$emit: ((event: "select", ...args: any[]) => void) & ((event: "sort-change", ...args: any[]) => void) & ((event: "expand-change", ...args: any[]) => void) & ((event: "cell-click", ...args: any[]) => void);
|
|
2280
|
+
$el: any;
|
|
2281
|
+
$options: vue.ComponentOptionsBase<Readonly<_tmagic_design.TableProps> & Readonly<{
|
|
2282
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
2283
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
2284
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
2285
|
+
"onCell-click"?: ((...args: any[]) => any) | undefined;
|
|
2286
|
+
}>, {
|
|
2287
|
+
instance: vue.Ref<any, any>;
|
|
2288
|
+
$el: HTMLDivElement | undefined;
|
|
2289
|
+
clearSelection(...args: any[]): any;
|
|
2290
|
+
toggleRowSelection(...args: any[]): any;
|
|
2291
|
+
toggleRowExpansion(...args: any[]): any;
|
|
2292
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2293
|
+
select: (...args: any[]) => void;
|
|
2294
|
+
"sort-change": (...args: any[]) => void;
|
|
2295
|
+
"expand-change": (...args: any[]) => void;
|
|
2296
|
+
"cell-click": (...args: any[]) => void;
|
|
2297
|
+
}, string, {
|
|
2298
|
+
data: any[];
|
|
2299
|
+
}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & {
|
|
2300
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
2301
|
+
created?: (() => void) | (() => void)[];
|
|
2302
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
2303
|
+
mounted?: (() => void) | (() => void)[];
|
|
2304
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
2305
|
+
updated?: (() => void) | (() => void)[];
|
|
2306
|
+
activated?: (() => void) | (() => void)[];
|
|
2307
|
+
deactivated?: (() => void) | (() => void)[];
|
|
2308
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
2309
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
2310
|
+
destroyed?: (() => void) | (() => void)[];
|
|
2311
|
+
unmounted?: (() => void) | (() => void)[];
|
|
2312
|
+
renderTracked?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
|
|
2313
|
+
renderTriggered?: ((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[];
|
|
2314
|
+
errorCaptured?: ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2315
|
+
};
|
|
2316
|
+
$forceUpdate: () => void;
|
|
2317
|
+
$nextTick: typeof vue.nextTick;
|
|
2318
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: vue.WatchOptions): vue.WatchStopHandle;
|
|
2319
|
+
} & Readonly<{
|
|
2320
|
+
data: any[];
|
|
2321
|
+
}> & Omit<Readonly<_tmagic_design.TableProps> & Readonly<{
|
|
2322
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
2323
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
2324
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
2325
|
+
"onCell-click"?: ((...args: any[]) => any) | undefined;
|
|
2326
|
+
}>, "instance" | "data" | "$el" | "clearSelection" | "toggleRowSelection" | "toggleRowExpansion"> & vue.ShallowUnwrapRef<{
|
|
2327
|
+
instance: vue.Ref<any, any>;
|
|
2328
|
+
$el: HTMLDivElement | undefined;
|
|
2329
|
+
clearSelection(...args: any[]): any;
|
|
2330
|
+
toggleRowSelection(...args: any[]): any;
|
|
2331
|
+
toggleRowExpansion(...args: any[]): any;
|
|
2332
|
+
}> & {} & vue.ComponentCustomProperties & {} & {
|
|
2333
|
+
$slots: {
|
|
2334
|
+
default?(_: {}): any;
|
|
2335
|
+
};
|
|
2336
|
+
}) | null;
|
|
2337
|
+
excelBtn: vue.CreateComponentPublicInstanceWithMixins<Readonly<_tmagic_design.UploadProps> & Readonly<{
|
|
2338
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
2339
|
+
}>, {
|
|
2340
|
+
clearFiles(...args: any[]): any;
|
|
2341
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2342
|
+
change: (...args: any[]) => void;
|
|
2343
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<_tmagic_design.UploadProps> & Readonly<{
|
|
2344
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
2345
|
+
}>, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
|
|
2346
|
+
P: {};
|
|
2347
|
+
B: {};
|
|
2348
|
+
D: {};
|
|
2349
|
+
C: {};
|
|
2350
|
+
M: {};
|
|
2351
|
+
Defaults: {};
|
|
2352
|
+
}, Readonly<_tmagic_design.UploadProps> & Readonly<{
|
|
2353
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
2354
|
+
}>, {
|
|
2355
|
+
clearFiles(...args: any[]): any;
|
|
2356
|
+
}, {}, {}, {}, {}> | null;
|
|
2357
|
+
};
|
|
2358
|
+
attrs: Partial<{}>;
|
|
2787
2359
|
};
|
|
2788
|
-
|
|
2360
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
2361
|
+
declare const __VLS_component: vue.DefineComponent<{
|
|
2789
2362
|
model: any;
|
|
2790
2363
|
lastValues?: any;
|
|
2791
2364
|
isCompare?: boolean;
|
|
@@ -2800,20 +2373,13 @@ declare const __VLS_component: vue.DefineComponent<__VLS_WithDefaults<__VLS_Type
|
|
|
2800
2373
|
size?: string;
|
|
2801
2374
|
enableToggleMode?: boolean;
|
|
2802
2375
|
showIndex?: boolean;
|
|
2803
|
-
}
|
|
2804
|
-
prop: string;
|
|
2805
|
-
sortKey: string;
|
|
2806
|
-
enableToggleMode: boolean;
|
|
2807
|
-
showIndex: boolean;
|
|
2808
|
-
lastValues: () => {};
|
|
2809
|
-
isCompare: boolean;
|
|
2810
|
-
}>, {
|
|
2376
|
+
}, {
|
|
2811
2377
|
toggleRowSelection: (row: any, selected: boolean) => void;
|
|
2812
|
-
},
|
|
2378
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2813
2379
|
change: (...args: any[]) => void;
|
|
2814
2380
|
select: (...args: any[]) => void;
|
|
2815
2381
|
addDiffCount: (...args: any[]) => void;
|
|
2816
|
-
}, string, vue.PublicProps, Readonly<
|
|
2382
|
+
}, string, vue.PublicProps, Readonly<{
|
|
2817
2383
|
model: any;
|
|
2818
2384
|
lastValues?: any;
|
|
2819
2385
|
isCompare?: boolean;
|
|
@@ -2828,51 +2394,27 @@ declare const __VLS_component: vue.DefineComponent<__VLS_WithDefaults<__VLS_Type
|
|
|
2828
2394
|
size?: string;
|
|
2829
2395
|
enableToggleMode?: boolean;
|
|
2830
2396
|
showIndex?: boolean;
|
|
2831
|
-
}
|
|
2832
|
-
prop: string;
|
|
2833
|
-
sortKey: string;
|
|
2834
|
-
enableToggleMode: boolean;
|
|
2835
|
-
showIndex: boolean;
|
|
2836
|
-
lastValues: () => {};
|
|
2837
|
-
isCompare: boolean;
|
|
2838
|
-
}>>> & {
|
|
2397
|
+
}> & Readonly<{
|
|
2839
2398
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2840
2399
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
2841
2400
|
onAddDiffCount?: ((...args: any[]) => any) | undefined;
|
|
2842
|
-
}
|
|
2401
|
+
}>, {
|
|
2843
2402
|
prop: string;
|
|
2844
2403
|
lastValues: any;
|
|
2845
2404
|
isCompare: boolean;
|
|
2846
2405
|
enableToggleMode: boolean;
|
|
2847
2406
|
showIndex: boolean;
|
|
2848
2407
|
sortKey: string;
|
|
2849
|
-
}, {}>;
|
|
2850
|
-
declare const _default$m: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
2408
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2409
|
+
declare const _default$m: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2851
2410
|
|
|
2852
|
-
type __VLS_WithDefaults<P, D> = {
|
|
2853
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
2854
|
-
default: D[K];
|
|
2855
|
-
}> : P[K];
|
|
2856
|
-
};
|
|
2857
|
-
type __VLS_Prettify<T> = {
|
|
2858
|
-
[K in keyof T]: T[K];
|
|
2859
|
-
} & {};
|
|
2860
2411
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
2861
2412
|
new (): {
|
|
2862
2413
|
$slots: S;
|
|
2863
2414
|
};
|
|
2864
2415
|
};
|
|
2865
|
-
type __VLS_NonUndefinedable$l<T> = T extends undefined ? never : T;
|
|
2866
|
-
type __VLS_TypePropsToOption$l<T> = {
|
|
2867
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2868
|
-
type: vue.PropType<__VLS_NonUndefinedable$l<T[K]>>;
|
|
2869
|
-
} : {
|
|
2870
|
-
type: vue.PropType<T[K]>;
|
|
2871
|
-
required: true;
|
|
2872
|
-
};
|
|
2873
|
-
};
|
|
2874
2416
|
|
|
2875
|
-
declare const _default$l: vue.DefineComponent<
|
|
2417
|
+
declare const _default$l: vue.DefineComponent<{
|
|
2876
2418
|
model: any;
|
|
2877
2419
|
lastValues?: any;
|
|
2878
2420
|
isCompare?: boolean;
|
|
@@ -2882,10 +2424,10 @@ declare const _default$l: vue.DefineComponent<__VLS_TypePropsToOption$k<{
|
|
|
2882
2424
|
prop?: string;
|
|
2883
2425
|
size?: string;
|
|
2884
2426
|
disabled?: boolean;
|
|
2885
|
-
}
|
|
2427
|
+
}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2886
2428
|
change: (...args: any[]) => void;
|
|
2887
2429
|
addDiffCount: (...args: any[]) => void;
|
|
2888
|
-
}, string, vue.PublicProps, Readonly<
|
|
2430
|
+
}, string, vue.PublicProps, Readonly<{
|
|
2889
2431
|
model: any;
|
|
2890
2432
|
lastValues?: any;
|
|
2891
2433
|
isCompare?: boolean;
|
|
@@ -2895,345 +2437,135 @@ declare const _default$l: vue.DefineComponent<__VLS_TypePropsToOption$k<{
|
|
|
2895
2437
|
prop?: string;
|
|
2896
2438
|
size?: string;
|
|
2897
2439
|
disabled?: boolean;
|
|
2898
|
-
}
|
|
2440
|
+
}> & Readonly<{
|
|
2899
2441
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2900
2442
|
onAddDiffCount?: ((...args: any[]) => any) | undefined;
|
|
2901
|
-
}, {}, {}>;
|
|
2902
|
-
|
|
2903
|
-
type __VLS_NonUndefinedable$k<T> = T extends undefined ? never : T;
|
|
2904
|
-
type __VLS_TypePropsToOption$k<T> = {
|
|
2905
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2906
|
-
type: vue.PropType<__VLS_NonUndefinedable$k<T[K]>>;
|
|
2907
|
-
} : {
|
|
2908
|
-
type: vue.PropType<T[K]>;
|
|
2909
|
-
required: true;
|
|
2910
|
-
};
|
|
2911
|
-
};
|
|
2443
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2912
2444
|
|
|
2913
|
-
declare const _default$k: vue.DefineComponent<
|
|
2914
|
-
change: (value: string) =>
|
|
2915
|
-
input: (value: string) =>
|
|
2916
|
-
}, string, vue.PublicProps, Readonly<
|
|
2445
|
+
declare const _default$k: vue.DefineComponent<FieldProps<TextConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2446
|
+
change: (value: string) => any;
|
|
2447
|
+
input: (value: string) => any;
|
|
2448
|
+
}, string, vue.PublicProps, Readonly<FieldProps<TextConfig>> & Readonly<{
|
|
2917
2449
|
onChange?: ((value: string) => any) | undefined;
|
|
2918
2450
|
onInput?: ((value: string) => any) | undefined;
|
|
2919
|
-
}, {}, {}>;
|
|
2451
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2920
2452
|
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
} : {
|
|
2926
|
-
type: vue.PropType<T[K]>;
|
|
2927
|
-
required: true;
|
|
2928
|
-
};
|
|
2929
|
-
};
|
|
2930
|
-
|
|
2931
|
-
declare const _default$j: vue.DefineComponent<__VLS_TypePropsToOption$i<FieldProps<NumberConfig>>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2932
|
-
change: (values: number) => void;
|
|
2933
|
-
input: (values: number) => void;
|
|
2934
|
-
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<__VLS_TypePropsToOption$i<FieldProps<NumberConfig>>>> & {
|
|
2453
|
+
declare const _default$j: vue.DefineComponent<FieldProps<NumberConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2454
|
+
change: (values: number) => any;
|
|
2455
|
+
input: (values: number) => any;
|
|
2456
|
+
}, string, vue.PublicProps, Readonly<FieldProps<NumberConfig>> & Readonly<{
|
|
2935
2457
|
onChange?: ((values: number) => any) | undefined;
|
|
2936
2458
|
onInput?: ((values: number) => any) | undefined;
|
|
2937
|
-
}, {}, {}>;
|
|
2938
|
-
|
|
2939
|
-
type __VLS_NonUndefinedable$i<T> = T extends undefined ? never : T;
|
|
2940
|
-
type __VLS_TypePropsToOption$i<T> = {
|
|
2941
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2942
|
-
type: vue.PropType<__VLS_NonUndefinedable$i<T[K]>>;
|
|
2943
|
-
} : {
|
|
2944
|
-
type: vue.PropType<T[K]>;
|
|
2945
|
-
required: true;
|
|
2946
|
-
};
|
|
2947
|
-
};
|
|
2459
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2948
2460
|
|
|
2949
|
-
declare const _default$i: vue.DefineComponent<
|
|
2950
|
-
change: (values: [number, number]) =>
|
|
2951
|
-
}, string, vue.PublicProps, Readonly<
|
|
2461
|
+
declare const _default$i: vue.DefineComponent<FieldProps<NumberRangeConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2462
|
+
change: (values: [number, number]) => any;
|
|
2463
|
+
}, string, vue.PublicProps, Readonly<FieldProps<NumberRangeConfig>> & Readonly<{
|
|
2952
2464
|
onChange?: ((values: [number, number]) => any) | undefined;
|
|
2953
|
-
}, {}, {}>;
|
|
2954
|
-
|
|
2955
|
-
type __VLS_NonUndefinedable$h<T> = T extends undefined ? never : T;
|
|
2956
|
-
type __VLS_TypePropsToOption$h<T> = {
|
|
2957
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2958
|
-
type: vue.PropType<__VLS_NonUndefinedable$h<T[K]>>;
|
|
2959
|
-
} : {
|
|
2960
|
-
type: vue.PropType<T[K]>;
|
|
2961
|
-
required: true;
|
|
2962
|
-
};
|
|
2963
|
-
};
|
|
2465
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2964
2466
|
|
|
2965
|
-
declare const _default$h: vue.DefineComponent<
|
|
2966
|
-
change: (value: string) =>
|
|
2967
|
-
input: (value: string) =>
|
|
2968
|
-
}, string, vue.PublicProps, Readonly<
|
|
2467
|
+
declare const _default$h: vue.DefineComponent<FieldProps<TextareaConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2468
|
+
change: (value: string) => any;
|
|
2469
|
+
input: (value: string) => any;
|
|
2470
|
+
}, string, vue.PublicProps, Readonly<FieldProps<TextareaConfig>> & Readonly<{
|
|
2969
2471
|
onChange?: ((value: string) => any) | undefined;
|
|
2970
2472
|
onInput?: ((value: string) => any) | undefined;
|
|
2971
|
-
}, {}, {}>;
|
|
2972
|
-
|
|
2973
|
-
type __VLS_NonUndefinedable$g<T> = T extends undefined ? never : T;
|
|
2974
|
-
type __VLS_TypePropsToOption$g<T> = {
|
|
2975
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
2976
|
-
type: vue.PropType<__VLS_NonUndefinedable$g<T[K]>>;
|
|
2977
|
-
} : {
|
|
2978
|
-
type: vue.PropType<T[K]>;
|
|
2979
|
-
required: true;
|
|
2980
|
-
};
|
|
2981
|
-
};
|
|
2473
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2982
2474
|
|
|
2983
|
-
declare const _default$g: vue.DefineComponent<
|
|
2475
|
+
declare const _default$g: vue.DefineComponent<FieldProps<HiddenConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldProps<HiddenConfig>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
2984
2476
|
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
type: vue.PropType<__VLS_NonUndefinedable$f<T[K]>>;
|
|
2989
|
-
} : {
|
|
2990
|
-
type: vue.PropType<T[K]>;
|
|
2991
|
-
required: true;
|
|
2992
|
-
};
|
|
2993
|
-
};
|
|
2994
|
-
|
|
2995
|
-
declare const _default$f: vue.DefineComponent<__VLS_TypePropsToOption$e<FieldProps<DateConfig>>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2996
|
-
change: (value: string) => void;
|
|
2997
|
-
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<__VLS_TypePropsToOption$e<FieldProps<DateConfig>>>> & {
|
|
2477
|
+
declare const _default$f: vue.DefineComponent<FieldProps<DateConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2478
|
+
change: (value: string) => any;
|
|
2479
|
+
}, string, vue.PublicProps, Readonly<FieldProps<DateConfig>> & Readonly<{
|
|
2998
2480
|
onChange?: ((value: string) => any) | undefined;
|
|
2999
|
-
}, {}, {}>;
|
|
3000
|
-
|
|
3001
|
-
type __VLS_NonUndefinedable$e<T> = T extends undefined ? never : T;
|
|
3002
|
-
type __VLS_TypePropsToOption$e<T> = {
|
|
3003
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3004
|
-
type: vue.PropType<__VLS_NonUndefinedable$e<T[K]>>;
|
|
3005
|
-
} : {
|
|
3006
|
-
type: vue.PropType<T[K]>;
|
|
3007
|
-
required: true;
|
|
3008
|
-
};
|
|
3009
|
-
};
|
|
2481
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3010
2482
|
|
|
3011
|
-
declare const _default$e: vue.DefineComponent<
|
|
3012
|
-
change: (value: string) =>
|
|
3013
|
-
}, string, vue.PublicProps, Readonly<
|
|
2483
|
+
declare const _default$e: vue.DefineComponent<FieldProps<DateTimeConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2484
|
+
change: (value: string) => any;
|
|
2485
|
+
}, string, vue.PublicProps, Readonly<FieldProps<DateTimeConfig>> & Readonly<{
|
|
3014
2486
|
onChange?: ((value: string) => any) | undefined;
|
|
3015
|
-
}, {}, {}>;
|
|
3016
|
-
|
|
3017
|
-
type __VLS_NonUndefinedable$d<T> = T extends undefined ? never : T;
|
|
3018
|
-
type __VLS_TypePropsToOption$d<T> = {
|
|
3019
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3020
|
-
type: vue.PropType<__VLS_NonUndefinedable$d<T[K]>>;
|
|
3021
|
-
} : {
|
|
3022
|
-
type: vue.PropType<T[K]>;
|
|
3023
|
-
required: true;
|
|
3024
|
-
};
|
|
3025
|
-
};
|
|
2487
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3026
2488
|
|
|
3027
|
-
declare const _default$d: vue.DefineComponent<
|
|
3028
|
-
change: (value: string) =>
|
|
3029
|
-
}, string, vue.PublicProps, Readonly<
|
|
2489
|
+
declare const _default$d: vue.DefineComponent<FieldProps<TimeConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2490
|
+
change: (value: string) => any;
|
|
2491
|
+
}, string, vue.PublicProps, Readonly<FieldProps<TimeConfig>> & Readonly<{
|
|
3030
2492
|
onChange?: ((value: string) => any) | undefined;
|
|
3031
|
-
}, {}, {}>;
|
|
3032
|
-
|
|
3033
|
-
type __VLS_NonUndefinedable$c<T> = T extends undefined ? never : T;
|
|
3034
|
-
type __VLS_TypePropsToOption$c<T> = {
|
|
3035
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3036
|
-
type: vue.PropType<__VLS_NonUndefinedable$c<T[K]>>;
|
|
3037
|
-
} : {
|
|
3038
|
-
type: vue.PropType<T[K]>;
|
|
3039
|
-
required: true;
|
|
3040
|
-
};
|
|
3041
|
-
};
|
|
2493
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3042
2494
|
|
|
3043
|
-
declare const _default$c: vue.DefineComponent<
|
|
2495
|
+
declare const _default$c: vue.DefineComponent<FieldProps<CheckboxConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3044
2496
|
change: (...args: any[]) => void;
|
|
3045
|
-
}, string, vue.PublicProps, Readonly<
|
|
2497
|
+
}, string, vue.PublicProps, Readonly<FieldProps<CheckboxConfig>> & Readonly<{
|
|
3046
2498
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3047
|
-
}, {}, {}>;
|
|
2499
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3048
2500
|
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
type: vue.PropType<__VLS_NonUndefinedable$b<T[K]>>;
|
|
3053
|
-
} : {
|
|
3054
|
-
type: vue.PropType<T[K]>;
|
|
3055
|
-
required: true;
|
|
3056
|
-
};
|
|
3057
|
-
};
|
|
3058
|
-
|
|
3059
|
-
declare const _default$b: vue.DefineComponent<__VLS_TypePropsToOption$a<FieldProps<SwitchConfig>>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3060
|
-
change: (value: any) => void;
|
|
3061
|
-
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<__VLS_TypePropsToOption$a<FieldProps<SwitchConfig>>>> & {
|
|
2501
|
+
declare const _default$b: vue.DefineComponent<FieldProps<SwitchConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2502
|
+
change: (value: any) => any;
|
|
2503
|
+
}, string, vue.PublicProps, Readonly<FieldProps<SwitchConfig>> & Readonly<{
|
|
3062
2504
|
onChange?: ((value: any) => any) | undefined;
|
|
3063
|
-
}, {}, {}>;
|
|
3064
|
-
|
|
3065
|
-
type __VLS_NonUndefinedable$a<T> = T extends undefined ? never : T;
|
|
3066
|
-
type __VLS_TypePropsToOption$a<T> = {
|
|
3067
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3068
|
-
type: vue.PropType<__VLS_NonUndefinedable$a<T[K]>>;
|
|
3069
|
-
} : {
|
|
3070
|
-
type: vue.PropType<T[K]>;
|
|
3071
|
-
required: true;
|
|
3072
|
-
};
|
|
3073
|
-
};
|
|
2505
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3074
2506
|
|
|
3075
|
-
declare const _default$a: vue.DefineComponent<
|
|
2507
|
+
declare const _default$a: vue.DefineComponent<FieldProps<DaterangeConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3076
2508
|
change: (...args: any[]) => void;
|
|
3077
|
-
}, string, vue.PublicProps, Readonly<
|
|
2509
|
+
}, string, vue.PublicProps, Readonly<FieldProps<DaterangeConfig>> & Readonly<{
|
|
3078
2510
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3079
|
-
}, {}, {}>;
|
|
3080
|
-
|
|
3081
|
-
type __VLS_NonUndefinedable$9<T> = T extends undefined ? never : T;
|
|
3082
|
-
type __VLS_TypePropsToOption$9<T> = {
|
|
3083
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3084
|
-
type: vue.PropType<__VLS_NonUndefinedable$9<T[K]>>;
|
|
3085
|
-
} : {
|
|
3086
|
-
type: vue.PropType<T[K]>;
|
|
3087
|
-
required: true;
|
|
3088
|
-
};
|
|
3089
|
-
};
|
|
2511
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3090
2512
|
|
|
3091
|
-
declare const _default$9: vue.DefineComponent<
|
|
2513
|
+
declare const _default$9: vue.DefineComponent<FieldProps<DaterangeConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3092
2514
|
change: (...args: any[]) => void;
|
|
3093
|
-
}, string, vue.PublicProps, Readonly<
|
|
2515
|
+
}, string, vue.PublicProps, Readonly<FieldProps<DaterangeConfig>> & Readonly<{
|
|
3094
2516
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3095
|
-
}, {}, {}>;
|
|
3096
|
-
|
|
3097
|
-
type __VLS_NonUndefinedable$8<T> = T extends undefined ? never : T;
|
|
3098
|
-
type __VLS_TypePropsToOption$8<T> = {
|
|
3099
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3100
|
-
type: vue.PropType<__VLS_NonUndefinedable$8<T[K]>>;
|
|
3101
|
-
} : {
|
|
3102
|
-
type: vue.PropType<T[K]>;
|
|
3103
|
-
required: true;
|
|
3104
|
-
};
|
|
3105
|
-
};
|
|
2517
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3106
2518
|
|
|
3107
|
-
declare const _default$8: vue.DefineComponent<
|
|
3108
|
-
change: (value: string) =>
|
|
3109
|
-
}, string, vue.PublicProps, Readonly<
|
|
2519
|
+
declare const _default$8: vue.DefineComponent<FieldProps<ColorPickConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2520
|
+
change: (value: string) => any;
|
|
2521
|
+
}, string, vue.PublicProps, Readonly<FieldProps<ColorPickConfig>> & Readonly<{
|
|
3110
2522
|
onChange?: ((value: string) => any) | undefined;
|
|
3111
|
-
}, {}, {}>;
|
|
2523
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3112
2524
|
|
|
3113
|
-
|
|
3114
|
-
type __VLS_TypePropsToOption$7<T> = {
|
|
3115
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3116
|
-
type: vue.PropType<__VLS_NonUndefinedable$7<T[K]>>;
|
|
3117
|
-
} : {
|
|
3118
|
-
type: vue.PropType<T[K]>;
|
|
3119
|
-
required: true;
|
|
3120
|
-
};
|
|
3121
|
-
};
|
|
3122
|
-
|
|
3123
|
-
declare const _default$7: vue.DefineComponent<__VLS_TypePropsToOption$6<FieldProps<CheckboxGroupConfig>>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2525
|
+
declare const _default$7: vue.DefineComponent<FieldProps<CheckboxGroupConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3124
2526
|
change: (...args: any[]) => void;
|
|
3125
|
-
}, string, vue.PublicProps, Readonly<
|
|
2527
|
+
}, string, vue.PublicProps, Readonly<FieldProps<CheckboxGroupConfig>> & Readonly<{
|
|
3126
2528
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3127
|
-
}, {}, {}>;
|
|
3128
|
-
|
|
3129
|
-
type __VLS_NonUndefinedable$6<T> = T extends undefined ? never : T;
|
|
3130
|
-
type __VLS_TypePropsToOption$6<T> = {
|
|
3131
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3132
|
-
type: vue.PropType<__VLS_NonUndefinedable$6<T[K]>>;
|
|
3133
|
-
} : {
|
|
3134
|
-
type: vue.PropType<T[K]>;
|
|
3135
|
-
required: true;
|
|
3136
|
-
};
|
|
3137
|
-
};
|
|
2529
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3138
2530
|
|
|
3139
|
-
declare const _default$6: vue.DefineComponent<
|
|
2531
|
+
declare const _default$6: vue.DefineComponent<FieldProps<RadioGroupConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3140
2532
|
change: (...args: any[]) => void;
|
|
3141
|
-
}, string, vue.PublicProps, Readonly<
|
|
2533
|
+
}, string, vue.PublicProps, Readonly<FieldProps<RadioGroupConfig>> & Readonly<{
|
|
3142
2534
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3143
|
-
}, {}, {}>;
|
|
3144
|
-
|
|
3145
|
-
type __VLS_NonUndefinedable$5<T> = T extends undefined ? never : T;
|
|
3146
|
-
type __VLS_TypePropsToOption$5<T> = {
|
|
3147
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3148
|
-
type: vue.PropType<__VLS_NonUndefinedable$5<T[K]>>;
|
|
3149
|
-
} : {
|
|
3150
|
-
type: vue.PropType<T[K]>;
|
|
3151
|
-
required: true;
|
|
3152
|
-
};
|
|
3153
|
-
};
|
|
3154
|
-
|
|
3155
|
-
declare const _default$5: vue.DefineComponent<__VLS_TypePropsToOption$4<FieldProps<DisplayConfig>>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<__VLS_TypePropsToOption$4<FieldProps<DisplayConfig>>>>, {}, {}>;
|
|
2535
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3156
2536
|
|
|
3157
|
-
|
|
3158
|
-
type __VLS_TypePropsToOption$4<T> = {
|
|
3159
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3160
|
-
type: vue.PropType<__VLS_NonUndefinedable$4<T[K]>>;
|
|
3161
|
-
} : {
|
|
3162
|
-
type: vue.PropType<T[K]>;
|
|
3163
|
-
required: true;
|
|
3164
|
-
};
|
|
3165
|
-
};
|
|
2537
|
+
declare const _default$5: vue.DefineComponent<FieldProps<DisplayConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldProps<DisplayConfig>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3166
2538
|
|
|
3167
|
-
declare const _default$4: vue.DefineComponent<
|
|
2539
|
+
declare const _default$4: vue.DefineComponent<FieldProps<LinkConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3168
2540
|
change: (...args: any[]) => void;
|
|
3169
|
-
}, string, vue.PublicProps, Readonly<
|
|
2541
|
+
}, string, vue.PublicProps, Readonly<FieldProps<LinkConfig>> & Readonly<{
|
|
3170
2542
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3171
|
-
}, {}, {}>;
|
|
2543
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3172
2544
|
|
|
3173
|
-
|
|
3174
|
-
type __VLS_TypePropsToOption$3<T> = {
|
|
3175
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3176
|
-
type: vue.PropType<__VLS_NonUndefinedable$3<T[K]>>;
|
|
3177
|
-
} : {
|
|
3178
|
-
type: vue.PropType<T[K]>;
|
|
3179
|
-
required: true;
|
|
3180
|
-
};
|
|
3181
|
-
};
|
|
3182
|
-
|
|
3183
|
-
declare const _default$3: vue.DefineComponent<__VLS_TypePropsToOption$2<FieldProps<SelectConfig>>, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2545
|
+
declare const _default$3: vue.DefineComponent<FieldProps<SelectConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3184
2546
|
change: (...args: any[]) => void;
|
|
3185
|
-
}, string, vue.PublicProps, Readonly<
|
|
2547
|
+
}, string, vue.PublicProps, Readonly<FieldProps<SelectConfig>> & Readonly<{
|
|
3186
2548
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3187
|
-
}, {}, {}>;
|
|
3188
|
-
|
|
3189
|
-
type __VLS_NonUndefinedable$2<T> = T extends undefined ? never : T;
|
|
3190
|
-
type __VLS_TypePropsToOption$2<T> = {
|
|
3191
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3192
|
-
type: vue.PropType<__VLS_NonUndefinedable$2<T[K]>>;
|
|
3193
|
-
} : {
|
|
3194
|
-
type: vue.PropType<T[K]>;
|
|
3195
|
-
required: true;
|
|
3196
|
-
};
|
|
3197
|
-
};
|
|
2549
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3198
2550
|
|
|
3199
|
-
declare const _default$2: vue.DefineComponent<
|
|
2551
|
+
declare const _default$2: vue.DefineComponent<FieldProps<CascaderConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3200
2552
|
change: (...args: any[]) => void;
|
|
3201
|
-
}, string, vue.PublicProps, Readonly<
|
|
2553
|
+
}, string, vue.PublicProps, Readonly<FieldProps<CascaderConfig>> & Readonly<{
|
|
3202
2554
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3203
|
-
}, {}, {}>;
|
|
3204
|
-
|
|
3205
|
-
type __VLS_NonUndefinedable$1<T> = T extends undefined ? never : T;
|
|
3206
|
-
type __VLS_TypePropsToOption$1<T> = {
|
|
3207
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3208
|
-
type: vue.PropType<__VLS_NonUndefinedable$1<T[K]>>;
|
|
3209
|
-
} : {
|
|
3210
|
-
type: vue.PropType<T[K]>;
|
|
3211
|
-
required: true;
|
|
3212
|
-
};
|
|
3213
|
-
};
|
|
2555
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3214
2556
|
|
|
3215
|
-
declare const _default$1: vue.DefineComponent<
|
|
2557
|
+
declare const _default$1: vue.DefineComponent<FieldProps<DynamicFieldConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3216
2558
|
change: (...args: any[]) => void;
|
|
3217
|
-
}, string, vue.PublicProps, Readonly<
|
|
2559
|
+
}, string, vue.PublicProps, Readonly<FieldProps<DynamicFieldConfig>> & Readonly<{
|
|
3218
2560
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3219
|
-
}, {}, {}>;
|
|
3220
|
-
|
|
3221
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
3222
|
-
type __VLS_TypePropsToOption<T> = {
|
|
3223
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
3224
|
-
type: vue.PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
3225
|
-
} : {
|
|
3226
|
-
type: vue.PropType<T[K]>;
|
|
3227
|
-
required: true;
|
|
3228
|
-
};
|
|
3229
|
-
};
|
|
2561
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
|
|
3230
2562
|
|
|
3231
2563
|
declare const createForm: <T extends [] = []>(config: FormConfig | T) => FormConfig | T;
|
|
3232
|
-
interface
|
|
2564
|
+
interface FormInstallOptions {
|
|
3233
2565
|
[key: string]: any;
|
|
3234
2566
|
}
|
|
3235
2567
|
declare const _default: {
|
|
3236
|
-
install(app: App, opt?:
|
|
2568
|
+
install(app: App, opt?: FormInstallOptions): void;
|
|
3237
2569
|
};
|
|
3238
2570
|
|
|
3239
|
-
export { type CascaderConfig, type CascaderOption, type CheckboxConfig, type CheckboxGroupConfig, type CheckboxGroupOption, type ChildConfig, type ColorPickConfig, type
|
|
2571
|
+
export { type CascaderConfig, type CascaderOption, type CheckboxConfig, type CheckboxGroupConfig, type CheckboxGroupOption, type ChildConfig, type ColorPickConfig, type ComponentConfig, type ContainerCommonConfig, type DateConfig, type DateTimeConfig, type DaterangeConfig, type DisplayConfig, type DynamicFieldConfig, type FieldProps, type FieldsetConfig, type FilterFunction, type FormConfig, type FormInstallOptions, type FormItem, type FormState, type FormValue, type GroupListConfig, type HiddenConfig, type HtmlField, type Input, type LinkConfig, _default$2 as MCascader, _default$c as MCheckbox, _default$7 as MCheckboxGroup, _default$8 as MColorPicker, _default$r as MContainer, _default$f as MDate, _default$e as MDateTime, _default$a as MDaterange, _default$5 as MDisplay, _default$1 as MDynamicField, _default$q as MFieldset, _default$v as MForm, _default$s as MFormBox, _default$u as MFormDialog, _default$t as MFormDrawer, _default$l as MGroupList, _default$g as MHidden, _default$4 as MLink, _default$j as MNumber, _default$i as MNumberRange, _default$p as MPanel, _default$6 as MRadioGroup, _default$o as MRow, _default$3 as MSelect, _default$b as MSwitch, _default$m as MTable, _default$n as MTabs, _default$k as MText, _default$h as MTextarea, _default$d as MTime, _default$9 as MTimerange, type NumberConfig, type NumberRangeConfig, type PanelConfig, type RadioGroupConfig, type RowConfig, type Rule, type SelectConfig, type SelectConfigGroupOption, type SelectConfigOption, type SelectGroupOption, type SelectOption, type SortProp, type StepConfig, type SwitchConfig, type TabConfig, type TabPaneConfig, type TableColumnConfig, type TableConfig, type TextConfig, type TextareaConfig, type TimeConfig, type TypeFunction, type ValidateError, createForm, createValues, datetimeFormatter, _default as default, display, filterFunction, getRules, initValue, useAddField };
|