@deot/vc 1.0.49 → 1.0.51
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/index.cjs +6 -4
- package/dist/index.d.ts +602 -0
- package/dist/index.iife.js +278 -221
- package/dist/index.js +7 -5
- package/dist/index.umd.cjs +278 -221
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -69,8 +69,8 @@ const Components = {
|
|
|
69
69
|
MDropdownMenu: vcComponents.MDropdownMenu,
|
|
70
70
|
Editor: vcComponents.Editor,
|
|
71
71
|
MEditor: vcComponents.MEditor,
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
EditorView: vcComponents.EditorView,
|
|
73
|
+
MEditorView: vcComponents.MEditorView,
|
|
74
74
|
Expand: vcComponents.Expand,
|
|
75
75
|
MExpand: vcComponents.MExpand,
|
|
76
76
|
Form: vcComponents.Form,
|
|
@@ -130,7 +130,9 @@ const Components = {
|
|
|
130
130
|
Progress: vcComponents.Progress,
|
|
131
131
|
MProgress: vcComponents.MProgress,
|
|
132
132
|
Radio: vcComponents.Radio,
|
|
133
|
+
RadioButton: vcComponents.RadioButton,
|
|
133
134
|
MRadio: vcComponents.MRadio,
|
|
135
|
+
MRadioButton: vcComponents.MRadioButton,
|
|
134
136
|
RadioGroup: vcComponents.RadioGroup,
|
|
135
137
|
MRadioGroup: vcComponents.MRadioGroup,
|
|
136
138
|
Rate: vcComponents.Rate,
|
|
@@ -195,8 +197,8 @@ const Components = {
|
|
|
195
197
|
MTransitionCollapse: vcComponents.MTransitionCollapse,
|
|
196
198
|
Tree: vcComponents.Tree,
|
|
197
199
|
MTree: vcComponents.MTree,
|
|
198
|
-
|
|
199
|
-
|
|
200
|
+
TreeSelect: vcComponents.TreeSelect,
|
|
201
|
+
MTreeSelect: vcComponents.MTreeSelect,
|
|
200
202
|
Upload: vcComponents.Upload,
|
|
201
203
|
MUpload: vcComponents.MUpload,
|
|
202
204
|
UploadPicker: vcComponents.UploadPicker,
|
package/dist/index.d.ts
CHANGED
|
@@ -3507,6 +3507,86 @@ export declare const Components: {
|
|
|
3507
3507
|
uploadOptions: Record<string, any>;
|
|
3508
3508
|
previewable: boolean;
|
|
3509
3509
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3510
|
+
EditorView: DefineComponent<ExtractPropTypes< {
|
|
3511
|
+
value: {
|
|
3512
|
+
type: StringConstructor;
|
|
3513
|
+
default: undefined;
|
|
3514
|
+
};
|
|
3515
|
+
fontSize: {
|
|
3516
|
+
type: PropType<string[]>;
|
|
3517
|
+
default: () => string[];
|
|
3518
|
+
};
|
|
3519
|
+
lineHeight: {
|
|
3520
|
+
type: PropType<string[]>;
|
|
3521
|
+
default: () => string[];
|
|
3522
|
+
};
|
|
3523
|
+
letterSpacing: {
|
|
3524
|
+
type: PropType<string[]>;
|
|
3525
|
+
default: () => string[];
|
|
3526
|
+
};
|
|
3527
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3528
|
+
value: {
|
|
3529
|
+
type: StringConstructor;
|
|
3530
|
+
default: undefined;
|
|
3531
|
+
};
|
|
3532
|
+
fontSize: {
|
|
3533
|
+
type: PropType<string[]>;
|
|
3534
|
+
default: () => string[];
|
|
3535
|
+
};
|
|
3536
|
+
lineHeight: {
|
|
3537
|
+
type: PropType<string[]>;
|
|
3538
|
+
default: () => string[];
|
|
3539
|
+
};
|
|
3540
|
+
letterSpacing: {
|
|
3541
|
+
type: PropType<string[]>;
|
|
3542
|
+
default: () => string[];
|
|
3543
|
+
};
|
|
3544
|
+
}>> & Readonly<{}>, {
|
|
3545
|
+
fontSize: string[];
|
|
3546
|
+
value: string;
|
|
3547
|
+
letterSpacing: string[];
|
|
3548
|
+
lineHeight: string[];
|
|
3549
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3550
|
+
MEditorView: DefineComponent<ExtractPropTypes< {
|
|
3551
|
+
value: {
|
|
3552
|
+
type: StringConstructor;
|
|
3553
|
+
default: undefined;
|
|
3554
|
+
};
|
|
3555
|
+
fontSize: {
|
|
3556
|
+
type: PropType<string[]>;
|
|
3557
|
+
default: () => string[];
|
|
3558
|
+
};
|
|
3559
|
+
lineHeight: {
|
|
3560
|
+
type: PropType<string[]>;
|
|
3561
|
+
default: () => string[];
|
|
3562
|
+
};
|
|
3563
|
+
letterSpacing: {
|
|
3564
|
+
type: PropType<string[]>;
|
|
3565
|
+
default: () => string[];
|
|
3566
|
+
};
|
|
3567
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3568
|
+
value: {
|
|
3569
|
+
type: StringConstructor;
|
|
3570
|
+
default: undefined;
|
|
3571
|
+
};
|
|
3572
|
+
fontSize: {
|
|
3573
|
+
type: PropType<string[]>;
|
|
3574
|
+
default: () => string[];
|
|
3575
|
+
};
|
|
3576
|
+
lineHeight: {
|
|
3577
|
+
type: PropType<string[]>;
|
|
3578
|
+
default: () => string[];
|
|
3579
|
+
};
|
|
3580
|
+
letterSpacing: {
|
|
3581
|
+
type: PropType<string[]>;
|
|
3582
|
+
default: () => string[];
|
|
3583
|
+
};
|
|
3584
|
+
}>> & Readonly<{}>, {
|
|
3585
|
+
fontSize: string[];
|
|
3586
|
+
value: string;
|
|
3587
|
+
letterSpacing: string[];
|
|
3588
|
+
lineHeight: string[];
|
|
3589
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3510
3590
|
Expand: DefineComponent<ExtractPropTypes< {
|
|
3511
3591
|
tag: {
|
|
3512
3592
|
type: StringConstructor;
|
|
@@ -7932,6 +8012,77 @@ export declare const Components: {
|
|
|
7932
8012
|
trueValue: string | number | boolean;
|
|
7933
8013
|
falseValue: string | number | boolean;
|
|
7934
8014
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8015
|
+
RadioButton: DefineComponent<ExtractPropTypes< {
|
|
8016
|
+
labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
8017
|
+
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
8018
|
+
disabled: {
|
|
8019
|
+
type: BooleanConstructor;
|
|
8020
|
+
default: boolean;
|
|
8021
|
+
};
|
|
8022
|
+
modelValue: {
|
|
8023
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8024
|
+
default: boolean;
|
|
8025
|
+
};
|
|
8026
|
+
value: {
|
|
8027
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8028
|
+
default: undefined;
|
|
8029
|
+
};
|
|
8030
|
+
label: {
|
|
8031
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8032
|
+
default: undefined;
|
|
8033
|
+
};
|
|
8034
|
+
name: {
|
|
8035
|
+
type: StringConstructor;
|
|
8036
|
+
};
|
|
8037
|
+
trueValue: {
|
|
8038
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8039
|
+
default: boolean;
|
|
8040
|
+
};
|
|
8041
|
+
falseValue: {
|
|
8042
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8043
|
+
default: boolean;
|
|
8044
|
+
};
|
|
8045
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
8046
|
+
labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
8047
|
+
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
8048
|
+
disabled: {
|
|
8049
|
+
type: BooleanConstructor;
|
|
8050
|
+
default: boolean;
|
|
8051
|
+
};
|
|
8052
|
+
modelValue: {
|
|
8053
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8054
|
+
default: boolean;
|
|
8055
|
+
};
|
|
8056
|
+
value: {
|
|
8057
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8058
|
+
default: undefined;
|
|
8059
|
+
};
|
|
8060
|
+
label: {
|
|
8061
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8062
|
+
default: undefined;
|
|
8063
|
+
};
|
|
8064
|
+
name: {
|
|
8065
|
+
type: StringConstructor;
|
|
8066
|
+
};
|
|
8067
|
+
trueValue: {
|
|
8068
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8069
|
+
default: boolean;
|
|
8070
|
+
};
|
|
8071
|
+
falseValue: {
|
|
8072
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8073
|
+
default: boolean;
|
|
8074
|
+
};
|
|
8075
|
+
}>> & Readonly<{
|
|
8076
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
8077
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8078
|
+
}>, {
|
|
8079
|
+
label: string | number | boolean;
|
|
8080
|
+
modelValue: string | number | boolean;
|
|
8081
|
+
disabled: boolean;
|
|
8082
|
+
value: string | number | boolean;
|
|
8083
|
+
trueValue: string | number | boolean;
|
|
8084
|
+
falseValue: string | number | boolean;
|
|
8085
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7935
8086
|
MRadio: DefineComponent<ExtractPropTypes< {
|
|
7936
8087
|
disabled: {
|
|
7937
8088
|
type: BooleanConstructor;
|
|
@@ -7999,6 +8150,73 @@ export declare const Components: {
|
|
|
7999
8150
|
trueValue: string | number | boolean;
|
|
8000
8151
|
falseValue: string | number | boolean;
|
|
8001
8152
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8153
|
+
MRadioButton: DefineComponent<ExtractPropTypes< {
|
|
8154
|
+
disabled: {
|
|
8155
|
+
type: BooleanConstructor;
|
|
8156
|
+
default: boolean;
|
|
8157
|
+
};
|
|
8158
|
+
modelValue: {
|
|
8159
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8160
|
+
default: boolean;
|
|
8161
|
+
};
|
|
8162
|
+
value: {
|
|
8163
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8164
|
+
default: undefined;
|
|
8165
|
+
};
|
|
8166
|
+
label: {
|
|
8167
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8168
|
+
default: undefined;
|
|
8169
|
+
};
|
|
8170
|
+
name: {
|
|
8171
|
+
type: StringConstructor;
|
|
8172
|
+
};
|
|
8173
|
+
trueValue: {
|
|
8174
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8175
|
+
default: boolean;
|
|
8176
|
+
};
|
|
8177
|
+
falseValue: {
|
|
8178
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8179
|
+
default: boolean;
|
|
8180
|
+
};
|
|
8181
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
8182
|
+
disabled: {
|
|
8183
|
+
type: BooleanConstructor;
|
|
8184
|
+
default: boolean;
|
|
8185
|
+
};
|
|
8186
|
+
modelValue: {
|
|
8187
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8188
|
+
default: boolean;
|
|
8189
|
+
};
|
|
8190
|
+
value: {
|
|
8191
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8192
|
+
default: undefined;
|
|
8193
|
+
};
|
|
8194
|
+
label: {
|
|
8195
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8196
|
+
default: undefined;
|
|
8197
|
+
};
|
|
8198
|
+
name: {
|
|
8199
|
+
type: StringConstructor;
|
|
8200
|
+
};
|
|
8201
|
+
trueValue: {
|
|
8202
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8203
|
+
default: boolean;
|
|
8204
|
+
};
|
|
8205
|
+
falseValue: {
|
|
8206
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8207
|
+
default: boolean;
|
|
8208
|
+
};
|
|
8209
|
+
}>> & Readonly<{
|
|
8210
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
8211
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8212
|
+
}>, {
|
|
8213
|
+
label: string | number | boolean;
|
|
8214
|
+
modelValue: string | number | boolean;
|
|
8215
|
+
disabled: boolean;
|
|
8216
|
+
value: string | number | boolean;
|
|
8217
|
+
trueValue: string | number | boolean;
|
|
8218
|
+
falseValue: string | number | boolean;
|
|
8219
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8002
8220
|
RadioGroup: DefineComponent<ExtractPropTypes< {
|
|
8003
8221
|
modelValue: {
|
|
8004
8222
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -12693,6 +12911,390 @@ export declare const Components: {
|
|
|
12693
12911
|
checkOnClickNode: boolean;
|
|
12694
12912
|
highlightCurrent: boolean;
|
|
12695
12913
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
12914
|
+
TreeSelect: DefineComponent<ExtractPropTypes< {
|
|
12915
|
+
data: {
|
|
12916
|
+
type: ArrayConstructor;
|
|
12917
|
+
default: () => never[];
|
|
12918
|
+
};
|
|
12919
|
+
max: {
|
|
12920
|
+
type: NumberConstructor;
|
|
12921
|
+
default: number;
|
|
12922
|
+
validator: (v: any) => boolean;
|
|
12923
|
+
};
|
|
12924
|
+
checkStrictly: {
|
|
12925
|
+
type: BooleanConstructor;
|
|
12926
|
+
default: boolean;
|
|
12927
|
+
};
|
|
12928
|
+
renderNodeLabel: Render;
|
|
12929
|
+
renderOption: Render;
|
|
12930
|
+
renderOptionGroup: Render;
|
|
12931
|
+
searchPlaceholder: {
|
|
12932
|
+
type: StringConstructor;
|
|
12933
|
+
default: string;
|
|
12934
|
+
};
|
|
12935
|
+
trigger: {
|
|
12936
|
+
type: StringConstructor;
|
|
12937
|
+
default: string;
|
|
12938
|
+
};
|
|
12939
|
+
tag: {
|
|
12940
|
+
type: StringConstructor;
|
|
12941
|
+
default: string;
|
|
12942
|
+
};
|
|
12943
|
+
placement: {
|
|
12944
|
+
type: StringConstructor;
|
|
12945
|
+
default: string;
|
|
12946
|
+
};
|
|
12947
|
+
arrow: {
|
|
12948
|
+
type: BooleanConstructor;
|
|
12949
|
+
default: boolean;
|
|
12950
|
+
};
|
|
12951
|
+
autoWidth: {
|
|
12952
|
+
type: BooleanConstructor;
|
|
12953
|
+
default: boolean;
|
|
12954
|
+
};
|
|
12955
|
+
maxTags: NumberConstructor;
|
|
12956
|
+
searchable: {
|
|
12957
|
+
type: BooleanConstructor;
|
|
12958
|
+
default: boolean;
|
|
12959
|
+
};
|
|
12960
|
+
loadData: {
|
|
12961
|
+
type: FunctionConstructor;
|
|
12962
|
+
};
|
|
12963
|
+
extra: {
|
|
12964
|
+
type: StringConstructor;
|
|
12965
|
+
default: string;
|
|
12966
|
+
};
|
|
12967
|
+
separator: {
|
|
12968
|
+
type: StringConstructor;
|
|
12969
|
+
default: string;
|
|
12970
|
+
};
|
|
12971
|
+
numerable: {
|
|
12972
|
+
type: BooleanConstructor;
|
|
12973
|
+
default: boolean;
|
|
12974
|
+
};
|
|
12975
|
+
nullValue: {
|
|
12976
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12977
|
+
default: undefined;
|
|
12978
|
+
};
|
|
12979
|
+
label: StringConstructor;
|
|
12980
|
+
id: {
|
|
12981
|
+
type: StringConstructor;
|
|
12982
|
+
};
|
|
12983
|
+
modelValue: PropType<string | number | any[]>;
|
|
12984
|
+
disabled: {
|
|
12985
|
+
type: BooleanConstructor;
|
|
12986
|
+
default: boolean;
|
|
12987
|
+
};
|
|
12988
|
+
clearable: {
|
|
12989
|
+
type: BooleanConstructor;
|
|
12990
|
+
default: boolean;
|
|
12991
|
+
};
|
|
12992
|
+
portal: {
|
|
12993
|
+
type: BooleanConstructor;
|
|
12994
|
+
default: boolean;
|
|
12995
|
+
};
|
|
12996
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
12997
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
12998
|
+
data: {
|
|
12999
|
+
type: ArrayConstructor;
|
|
13000
|
+
default: () => never[];
|
|
13001
|
+
};
|
|
13002
|
+
max: {
|
|
13003
|
+
type: NumberConstructor;
|
|
13004
|
+
default: number;
|
|
13005
|
+
validator: (v: any) => boolean;
|
|
13006
|
+
};
|
|
13007
|
+
checkStrictly: {
|
|
13008
|
+
type: BooleanConstructor;
|
|
13009
|
+
default: boolean;
|
|
13010
|
+
};
|
|
13011
|
+
renderNodeLabel: Render;
|
|
13012
|
+
renderOption: Render;
|
|
13013
|
+
renderOptionGroup: Render;
|
|
13014
|
+
searchPlaceholder: {
|
|
13015
|
+
type: StringConstructor;
|
|
13016
|
+
default: string;
|
|
13017
|
+
};
|
|
13018
|
+
trigger: {
|
|
13019
|
+
type: StringConstructor;
|
|
13020
|
+
default: string;
|
|
13021
|
+
};
|
|
13022
|
+
tag: {
|
|
13023
|
+
type: StringConstructor;
|
|
13024
|
+
default: string;
|
|
13025
|
+
};
|
|
13026
|
+
placement: {
|
|
13027
|
+
type: StringConstructor;
|
|
13028
|
+
default: string;
|
|
13029
|
+
};
|
|
13030
|
+
arrow: {
|
|
13031
|
+
type: BooleanConstructor;
|
|
13032
|
+
default: boolean;
|
|
13033
|
+
};
|
|
13034
|
+
autoWidth: {
|
|
13035
|
+
type: BooleanConstructor;
|
|
13036
|
+
default: boolean;
|
|
13037
|
+
};
|
|
13038
|
+
maxTags: NumberConstructor;
|
|
13039
|
+
searchable: {
|
|
13040
|
+
type: BooleanConstructor;
|
|
13041
|
+
default: boolean;
|
|
13042
|
+
};
|
|
13043
|
+
loadData: {
|
|
13044
|
+
type: FunctionConstructor;
|
|
13045
|
+
};
|
|
13046
|
+
extra: {
|
|
13047
|
+
type: StringConstructor;
|
|
13048
|
+
default: string;
|
|
13049
|
+
};
|
|
13050
|
+
separator: {
|
|
13051
|
+
type: StringConstructor;
|
|
13052
|
+
default: string;
|
|
13053
|
+
};
|
|
13054
|
+
numerable: {
|
|
13055
|
+
type: BooleanConstructor;
|
|
13056
|
+
default: boolean;
|
|
13057
|
+
};
|
|
13058
|
+
nullValue: {
|
|
13059
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
13060
|
+
default: undefined;
|
|
13061
|
+
};
|
|
13062
|
+
label: StringConstructor;
|
|
13063
|
+
id: {
|
|
13064
|
+
type: StringConstructor;
|
|
13065
|
+
};
|
|
13066
|
+
modelValue: PropType<string | number | any[]>;
|
|
13067
|
+
disabled: {
|
|
13068
|
+
type: BooleanConstructor;
|
|
13069
|
+
default: boolean;
|
|
13070
|
+
};
|
|
13071
|
+
clearable: {
|
|
13072
|
+
type: BooleanConstructor;
|
|
13073
|
+
default: boolean;
|
|
13074
|
+
};
|
|
13075
|
+
portal: {
|
|
13076
|
+
type: BooleanConstructor;
|
|
13077
|
+
default: boolean;
|
|
13078
|
+
};
|
|
13079
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
13080
|
+
}>> & Readonly<{
|
|
13081
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
13082
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13083
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
13084
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
13085
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
13086
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
13087
|
+
}>, {
|
|
13088
|
+
tag: string;
|
|
13089
|
+
data: unknown[];
|
|
13090
|
+
placement: string;
|
|
13091
|
+
disabled: boolean;
|
|
13092
|
+
extra: string;
|
|
13093
|
+
numerable: boolean;
|
|
13094
|
+
separator: string;
|
|
13095
|
+
max: number;
|
|
13096
|
+
nullValue: string | number | Record<string, any>;
|
|
13097
|
+
clearable: boolean;
|
|
13098
|
+
portal: boolean;
|
|
13099
|
+
arrow: boolean;
|
|
13100
|
+
autoWidth: boolean;
|
|
13101
|
+
trigger: string;
|
|
13102
|
+
searchPlaceholder: string;
|
|
13103
|
+
searchable: boolean;
|
|
13104
|
+
checkStrictly: boolean;
|
|
13105
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13106
|
+
MTreeSelect: DefineComponent<ExtractPropTypes< {
|
|
13107
|
+
data: {
|
|
13108
|
+
type: ArrayConstructor;
|
|
13109
|
+
default: () => never[];
|
|
13110
|
+
};
|
|
13111
|
+
max: {
|
|
13112
|
+
type: NumberConstructor;
|
|
13113
|
+
default: number;
|
|
13114
|
+
validator: (v: any) => boolean;
|
|
13115
|
+
};
|
|
13116
|
+
checkStrictly: {
|
|
13117
|
+
type: BooleanConstructor;
|
|
13118
|
+
default: boolean;
|
|
13119
|
+
};
|
|
13120
|
+
renderNodeLabel: Render;
|
|
13121
|
+
renderOption: Render;
|
|
13122
|
+
renderOptionGroup: Render;
|
|
13123
|
+
searchPlaceholder: {
|
|
13124
|
+
type: StringConstructor;
|
|
13125
|
+
default: string;
|
|
13126
|
+
};
|
|
13127
|
+
trigger: {
|
|
13128
|
+
type: StringConstructor;
|
|
13129
|
+
default: string;
|
|
13130
|
+
};
|
|
13131
|
+
tag: {
|
|
13132
|
+
type: StringConstructor;
|
|
13133
|
+
default: string;
|
|
13134
|
+
};
|
|
13135
|
+
placement: {
|
|
13136
|
+
type: StringConstructor;
|
|
13137
|
+
default: string;
|
|
13138
|
+
};
|
|
13139
|
+
arrow: {
|
|
13140
|
+
type: BooleanConstructor;
|
|
13141
|
+
default: boolean;
|
|
13142
|
+
};
|
|
13143
|
+
autoWidth: {
|
|
13144
|
+
type: BooleanConstructor;
|
|
13145
|
+
default: boolean;
|
|
13146
|
+
};
|
|
13147
|
+
maxTags: NumberConstructor;
|
|
13148
|
+
searchable: {
|
|
13149
|
+
type: BooleanConstructor;
|
|
13150
|
+
default: boolean;
|
|
13151
|
+
};
|
|
13152
|
+
loadData: {
|
|
13153
|
+
type: FunctionConstructor;
|
|
13154
|
+
};
|
|
13155
|
+
extra: {
|
|
13156
|
+
type: StringConstructor;
|
|
13157
|
+
default: string;
|
|
13158
|
+
};
|
|
13159
|
+
separator: {
|
|
13160
|
+
type: StringConstructor;
|
|
13161
|
+
default: string;
|
|
13162
|
+
};
|
|
13163
|
+
numerable: {
|
|
13164
|
+
type: BooleanConstructor;
|
|
13165
|
+
default: boolean;
|
|
13166
|
+
};
|
|
13167
|
+
nullValue: {
|
|
13168
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
13169
|
+
default: undefined;
|
|
13170
|
+
};
|
|
13171
|
+
label: StringConstructor;
|
|
13172
|
+
id: {
|
|
13173
|
+
type: StringConstructor;
|
|
13174
|
+
};
|
|
13175
|
+
modelValue: PropType<string | number | any[]>;
|
|
13176
|
+
disabled: {
|
|
13177
|
+
type: BooleanConstructor;
|
|
13178
|
+
default: boolean;
|
|
13179
|
+
};
|
|
13180
|
+
clearable: {
|
|
13181
|
+
type: BooleanConstructor;
|
|
13182
|
+
default: boolean;
|
|
13183
|
+
};
|
|
13184
|
+
portal: {
|
|
13185
|
+
type: BooleanConstructor;
|
|
13186
|
+
default: boolean;
|
|
13187
|
+
};
|
|
13188
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
13189
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
13190
|
+
data: {
|
|
13191
|
+
type: ArrayConstructor;
|
|
13192
|
+
default: () => never[];
|
|
13193
|
+
};
|
|
13194
|
+
max: {
|
|
13195
|
+
type: NumberConstructor;
|
|
13196
|
+
default: number;
|
|
13197
|
+
validator: (v: any) => boolean;
|
|
13198
|
+
};
|
|
13199
|
+
checkStrictly: {
|
|
13200
|
+
type: BooleanConstructor;
|
|
13201
|
+
default: boolean;
|
|
13202
|
+
};
|
|
13203
|
+
renderNodeLabel: Render;
|
|
13204
|
+
renderOption: Render;
|
|
13205
|
+
renderOptionGroup: Render;
|
|
13206
|
+
searchPlaceholder: {
|
|
13207
|
+
type: StringConstructor;
|
|
13208
|
+
default: string;
|
|
13209
|
+
};
|
|
13210
|
+
trigger: {
|
|
13211
|
+
type: StringConstructor;
|
|
13212
|
+
default: string;
|
|
13213
|
+
};
|
|
13214
|
+
tag: {
|
|
13215
|
+
type: StringConstructor;
|
|
13216
|
+
default: string;
|
|
13217
|
+
};
|
|
13218
|
+
placement: {
|
|
13219
|
+
type: StringConstructor;
|
|
13220
|
+
default: string;
|
|
13221
|
+
};
|
|
13222
|
+
arrow: {
|
|
13223
|
+
type: BooleanConstructor;
|
|
13224
|
+
default: boolean;
|
|
13225
|
+
};
|
|
13226
|
+
autoWidth: {
|
|
13227
|
+
type: BooleanConstructor;
|
|
13228
|
+
default: boolean;
|
|
13229
|
+
};
|
|
13230
|
+
maxTags: NumberConstructor;
|
|
13231
|
+
searchable: {
|
|
13232
|
+
type: BooleanConstructor;
|
|
13233
|
+
default: boolean;
|
|
13234
|
+
};
|
|
13235
|
+
loadData: {
|
|
13236
|
+
type: FunctionConstructor;
|
|
13237
|
+
};
|
|
13238
|
+
extra: {
|
|
13239
|
+
type: StringConstructor;
|
|
13240
|
+
default: string;
|
|
13241
|
+
};
|
|
13242
|
+
separator: {
|
|
13243
|
+
type: StringConstructor;
|
|
13244
|
+
default: string;
|
|
13245
|
+
};
|
|
13246
|
+
numerable: {
|
|
13247
|
+
type: BooleanConstructor;
|
|
13248
|
+
default: boolean;
|
|
13249
|
+
};
|
|
13250
|
+
nullValue: {
|
|
13251
|
+
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
13252
|
+
default: undefined;
|
|
13253
|
+
};
|
|
13254
|
+
label: StringConstructor;
|
|
13255
|
+
id: {
|
|
13256
|
+
type: StringConstructor;
|
|
13257
|
+
};
|
|
13258
|
+
modelValue: PropType<string | number | any[]>;
|
|
13259
|
+
disabled: {
|
|
13260
|
+
type: BooleanConstructor;
|
|
13261
|
+
default: boolean;
|
|
13262
|
+
};
|
|
13263
|
+
clearable: {
|
|
13264
|
+
type: BooleanConstructor;
|
|
13265
|
+
default: boolean;
|
|
13266
|
+
};
|
|
13267
|
+
portal: {
|
|
13268
|
+
type: BooleanConstructor;
|
|
13269
|
+
default: boolean;
|
|
13270
|
+
};
|
|
13271
|
+
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
13272
|
+
}>> & Readonly<{
|
|
13273
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
13274
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13275
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
13276
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
13277
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
13278
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
13279
|
+
}>, {
|
|
13280
|
+
tag: string;
|
|
13281
|
+
data: unknown[];
|
|
13282
|
+
placement: string;
|
|
13283
|
+
disabled: boolean;
|
|
13284
|
+
extra: string;
|
|
13285
|
+
numerable: boolean;
|
|
13286
|
+
separator: string;
|
|
13287
|
+
max: number;
|
|
13288
|
+
nullValue: string | number | Record<string, any>;
|
|
13289
|
+
clearable: boolean;
|
|
13290
|
+
portal: boolean;
|
|
13291
|
+
arrow: boolean;
|
|
13292
|
+
autoWidth: boolean;
|
|
13293
|
+
trigger: string;
|
|
13294
|
+
searchPlaceholder: string;
|
|
13295
|
+
searchable: boolean;
|
|
13296
|
+
checkStrictly: boolean;
|
|
13297
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
12696
13298
|
Upload: {
|
|
12697
13299
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
12698
13300
|
tag: {
|