@vunk/form 2.11.0 → 2.12.0
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/components/button/src/ctx.d.ts +1 -1
- package/components/button/src/index.vue.d.ts +15 -15
- package/components/card-input-collection/src/index.vue.d.ts +12 -12
- package/components/cascader/src/ctx.d.ts +4 -11
- package/components/cascader/src/index.vue.d.ts +10 -24
- package/components/checkbox/src/index.vue.d.ts +27 -27
- package/components/cloneDeep.cjs +269 -37
- package/components/cloneDeep.mjs +269 -37
- package/components/color-picker/src/ctx.d.ts +17 -1
- package/components/color-picker/src/index.vue.d.ts +36 -2
- package/components/date-picker/src/ctx.d.ts +2 -1
- package/components/date-picker/src/index.vue.d.ts +10 -0
- package/components/date-picker-range/src/ctx.d.ts +1 -0
- package/components/date-picker-range/src/index.vue.d.ts +3 -0
- package/components/dialog-input-collection/index.cjs +560 -0
- package/components/dialog-input-collection/index.css +21 -0
- package/components/dialog-input-collection/index.d.ts +4 -0
- package/components/dialog-input-collection/index.mjs +554 -0
- package/components/dialog-input-collection/src/ctx.d.ts +142 -0
- package/components/dialog-input-collection/src/dialog-form.vue.d.ts +647 -0
- package/components/dialog-input-collection/src/index.vue.d.ts +1972 -0
- package/components/dialog-input-collection/src/layout.vue.d.ts +85 -0
- package/components/dialog-input-collection/src/types.d.ts +28 -0
- package/components/download-plus/index.cjs +2 -2
- package/components/download-plus/index.mjs +2 -2
- package/components/download-plus/src/index.vue.d.ts +48 -18
- package/components/editable-text/index.cjs +1 -1
- package/components/editable-text/index.mjs +1 -1
- package/components/editable-text/src/index.vue.d.ts +6 -6
- package/components/esri-input-geojson/index.cjs +1 -1
- package/components/esri-input-geojson/index.mjs +1 -1
- package/components/esri-input-geojson/src/append.vue.d.ts +21 -21
- package/components/esri-input-geojson/src/ctx.d.ts +10 -1
- package/components/esri-input-geojson/src/index.vue.d.ts +21 -0
- package/components/form/src/index.vue.d.ts +8 -2853
- package/components/form-item/index.cjs +1 -1
- package/components/form-item/index.mjs +1 -1
- package/components/form-item/src/index.vue.d.ts +15 -15
- package/components/index.cjs +397 -11
- package/components/index.mjs +378 -11
- package/components/index2.cjs +11 -397
- package/components/index2.mjs +11 -378
- package/components/information/index.cjs +3 -4
- package/components/information/index.mjs +3 -4
- package/components/information-collection/index.cjs +2 -2
- package/components/information-collection/index.mjs +2 -2
- package/components/information-collection/src/ctx.d.ts +2 -2
- package/components/information-collection/src/index.vue.d.ts +4 -4
- package/components/information-renderer/index.cjs +16 -0
- package/components/information-renderer/index.d.ts +73 -0
- package/components/information-renderer/index.mjs +10 -0
- package/components/information-tag/src/ctx.d.ts +1 -1
- package/components/information-tag/src/index.vue.d.ts +3 -3
- package/components/information-templates-default/index.cjs +25 -7
- package/components/information-templates-default/index.mjs +25 -7
- package/components/input/src/ctx.d.ts +10 -1
- package/components/input/src/index.vue.d.ts +51 -0
- package/components/input-collection/index.cjs +12 -1
- package/components/input-collection/index.mjs +12 -1
- package/components/input-collection/src/index.vue.d.ts +12 -12
- package/components/input-collection/src/types.d.ts +2 -2
- package/components/input-link/index.cjs +1 -1
- package/components/input-link/index.mjs +1 -1
- package/components/input-link/src/ctx.d.ts +9 -0
- package/components/input-link/src/index.vue.d.ts +19 -0
- package/components/input-number/src/ctx.d.ts +9 -1
- package/components/input-number/src/index.vue.d.ts +45 -0
- package/components/input-tag/src/ctx.d.ts +3 -10
- package/components/input-tag/src/index.vue.d.ts +25 -60
- package/components/select/src/ctx.d.ts +1 -1
- package/components/select/src/index.vue.d.ts +4 -4
- package/components/templates-element-plus/src/index.vue.d.ts +6 -6
- package/components/upload/index.cjs +1 -1
- package/components/upload/index.mjs +1 -1
- package/components/upload/src/index.vue.d.ts +9 -9
- package/components/upload-plus/index.cjs +2 -2
- package/components/upload-plus/index.mjs +2 -2
- package/components/upload-plus/src/index.vue.d.ts +49 -19
- package/components/van-cascader/src/ctx.d.ts +4 -11
- package/components/van-cascader/src/index.vue.d.ts +27 -41
- package/components/var-datetime-picker/src/index.vue.d.ts +15 -3
- package/components/vditor/src/index.vue.d.ts +1 -1
- package/index.css +22 -0
- package/package.json +14 -1
- package/shared/element-plus/ctx.d.ts +4 -4
- package/shared/element-plus/instances.d.ts +2 -1
|
@@ -842,9 +842,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
842
842
|
readonly onProgress: (evt: import("element-plus").UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
843
843
|
readonly method: string;
|
|
844
844
|
readonly action: string;
|
|
845
|
+
readonly accept: string;
|
|
845
846
|
readonly withCredentials: boolean;
|
|
846
847
|
readonly showFileList: boolean;
|
|
847
|
-
readonly accept: string;
|
|
848
848
|
readonly fileList: import("element-plus").UploadUserFile[];
|
|
849
849
|
readonly autoUpload: boolean;
|
|
850
850
|
readonly listType: "text" | "picture" | "picture-card";
|
|
@@ -1046,9 +1046,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1046
1046
|
readonly onProgress: (evt: import("element-plus").UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1047
1047
|
readonly method: string;
|
|
1048
1048
|
readonly action: string;
|
|
1049
|
+
readonly accept: string;
|
|
1049
1050
|
readonly withCredentials: boolean;
|
|
1050
1051
|
readonly showFileList: boolean;
|
|
1051
|
-
readonly accept: string;
|
|
1052
1052
|
readonly fileList: import("element-plus").UploadUserFile[];
|
|
1053
1053
|
readonly autoUpload: boolean;
|
|
1054
1054
|
readonly listType: "text" | "picture" | "picture-card";
|
|
@@ -1247,9 +1247,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1247
1247
|
readonly onProgress: (evt: import("element-plus").UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1248
1248
|
readonly method: string;
|
|
1249
1249
|
readonly action: string;
|
|
1250
|
+
readonly accept: string;
|
|
1250
1251
|
readonly withCredentials: boolean;
|
|
1251
1252
|
readonly showFileList: boolean;
|
|
1252
|
-
readonly accept: string;
|
|
1253
1253
|
readonly fileList: import("element-plus").UploadUserFile[];
|
|
1254
1254
|
readonly autoUpload: boolean;
|
|
1255
1255
|
readonly listType: "text" | "picture" | "picture-card";
|
|
@@ -1768,7 +1768,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1768
1768
|
ElLink: {
|
|
1769
1769
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1770
1770
|
readonly type: {
|
|
1771
|
-
readonly type: import("vue").PropType<"default" | "
|
|
1771
|
+
readonly type: import("vue").PropType<"default" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1772
1772
|
readonly required: false;
|
|
1773
1773
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1774
1774
|
__epPropKey: true;
|
|
@@ -1813,7 +1813,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1813
1813
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
1814
1814
|
readonly disabled: boolean;
|
|
1815
1815
|
readonly underline: boolean | "hover" | "always" | "never";
|
|
1816
|
-
readonly type: "default" | "
|
|
1816
|
+
readonly type: "default" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1817
1817
|
readonly target: string;
|
|
1818
1818
|
readonly href: string;
|
|
1819
1819
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
@@ -1825,7 +1825,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1825
1825
|
Defaults: {};
|
|
1826
1826
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
1827
1827
|
readonly type: {
|
|
1828
|
-
readonly type: import("vue").PropType<"default" | "
|
|
1828
|
+
readonly type: import("vue").PropType<"default" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1829
1829
|
readonly required: false;
|
|
1830
1830
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1831
1831
|
__epPropKey: true;
|
|
@@ -1868,7 +1868,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1868
1868
|
}, {}, {}, {}, {}, {
|
|
1869
1869
|
readonly disabled: boolean;
|
|
1870
1870
|
readonly underline: boolean | "hover" | "always" | "never";
|
|
1871
|
-
readonly type: "default" | "
|
|
1871
|
+
readonly type: "default" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1872
1872
|
readonly target: string;
|
|
1873
1873
|
readonly href: string;
|
|
1874
1874
|
}>;
|
|
@@ -1877,7 +1877,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1877
1877
|
__isSuspense?: never;
|
|
1878
1878
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1879
1879
|
readonly type: {
|
|
1880
|
-
readonly type: import("vue").PropType<"default" | "
|
|
1880
|
+
readonly type: import("vue").PropType<"default" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1881
1881
|
readonly required: false;
|
|
1882
1882
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1883
1883
|
__epPropKey: true;
|
|
@@ -1922,7 +1922,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1922
1922
|
}, string, {
|
|
1923
1923
|
readonly disabled: boolean;
|
|
1924
1924
|
readonly underline: boolean | "hover" | "always" | "never";
|
|
1925
|
-
readonly type: "default" | "
|
|
1925
|
+
readonly type: "default" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1926
1926
|
readonly target: string;
|
|
1927
1927
|
readonly href: string;
|
|
1928
1928
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -9,9 +9,9 @@ var upload$1 = require('@vunk/form/shared/upload');
|
|
|
9
9
|
var utilsFetch = require('@vunk/core/shared/utils-fetch');
|
|
10
10
|
require('@vunk/core/shared/utils-promise');
|
|
11
11
|
var utilsObject = require('@vunk/core/shared/utils-object');
|
|
12
|
-
var index = require('../
|
|
12
|
+
var index = require('../index2.cjs');
|
|
13
13
|
var platform = require('@skzz/platform/shared/fetch/platform');
|
|
14
|
-
var index$1 = require('../
|
|
14
|
+
var index$1 = require('../index.cjs');
|
|
15
15
|
var composables = require('@vunk/core/composables');
|
|
16
16
|
var _class = require('@vunk/shared/class');
|
|
17
17
|
var _pluginVue_exportHelper = require('../_plugin-vue_export-helper.cjs');
|
|
@@ -5,9 +5,9 @@ import { createFileChunk, calculateFileHashSample } from '@vunk/form/shared/uplo
|
|
|
5
5
|
import { RestFetch } from '@vunk/core/shared/utils-fetch';
|
|
6
6
|
import '@vunk/core/shared/utils-promise';
|
|
7
7
|
import { isPlainObject as isPlainObject$1 } from '@vunk/core/shared/utils-object';
|
|
8
|
-
import { g as getToken } from '../
|
|
8
|
+
import { g as getToken } from '../index2.mjs';
|
|
9
9
|
import { restFetch as restFetch$1 } from '@skzz/platform/shared/fetch/platform';
|
|
10
|
-
import { l as success_filled_default, c as circle_close_filled_default, n as upload_filled_default } from '../
|
|
10
|
+
import { l as success_filled_default, c as circle_close_filled_default, n as upload_filled_default } from '../index.mjs';
|
|
11
11
|
import { useModelComputed } from '@vunk/core/composables';
|
|
12
12
|
import { ToggleHandler } from '@vunk/shared/class';
|
|
13
13
|
import { _ as _export_sfc } from '../_plugin-vue_export-helper.mjs';
|
|
@@ -460,6 +460,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
460
460
|
};
|
|
461
461
|
readonly ElInput: {
|
|
462
462
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
463
|
+
readonly inputmode: {
|
|
464
|
+
readonly type: import("vue").PropType<"none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal">;
|
|
465
|
+
readonly required: false;
|
|
466
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
467
|
+
__epPropKey: true;
|
|
468
|
+
} & {
|
|
469
|
+
readonly default: undefined;
|
|
470
|
+
};
|
|
471
|
+
readonly name: StringConstructor;
|
|
463
472
|
readonly ariaLabel: StringConstructor;
|
|
464
473
|
readonly id: {
|
|
465
474
|
readonly type: import("vue").PropType<string>;
|
|
@@ -658,6 +667,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
658
667
|
readonly validateEvent: boolean;
|
|
659
668
|
readonly inputStyle: import("vue").StyleValue;
|
|
660
669
|
readonly rows: number;
|
|
670
|
+
readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal";
|
|
661
671
|
readonly clearable: boolean;
|
|
662
672
|
readonly showPassword: boolean;
|
|
663
673
|
readonly showWordLimit: boolean;
|
|
@@ -670,6 +680,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
670
680
|
M: {};
|
|
671
681
|
Defaults: {};
|
|
672
682
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
683
|
+
readonly inputmode: {
|
|
684
|
+
readonly type: import("vue").PropType<"none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal">;
|
|
685
|
+
readonly required: false;
|
|
686
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
687
|
+
__epPropKey: true;
|
|
688
|
+
} & {
|
|
689
|
+
readonly default: undefined;
|
|
690
|
+
};
|
|
691
|
+
readonly name: StringConstructor;
|
|
673
692
|
readonly ariaLabel: StringConstructor;
|
|
674
693
|
readonly id: {
|
|
675
694
|
readonly type: import("vue").PropType<string>;
|
|
@@ -855,6 +874,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
855
874
|
readonly validateEvent: boolean;
|
|
856
875
|
readonly inputStyle: import("vue").StyleValue;
|
|
857
876
|
readonly rows: number;
|
|
877
|
+
readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal";
|
|
858
878
|
readonly clearable: boolean;
|
|
859
879
|
readonly showPassword: boolean;
|
|
860
880
|
readonly showWordLimit: boolean;
|
|
@@ -864,6 +884,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
864
884
|
__isTeleport?: never;
|
|
865
885
|
__isSuspense?: never;
|
|
866
886
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
887
|
+
readonly inputmode: {
|
|
888
|
+
readonly type: import("vue").PropType<"none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal">;
|
|
889
|
+
readonly required: false;
|
|
890
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
891
|
+
__epPropKey: true;
|
|
892
|
+
} & {
|
|
893
|
+
readonly default: undefined;
|
|
894
|
+
};
|
|
895
|
+
readonly name: StringConstructor;
|
|
867
896
|
readonly ariaLabel: StringConstructor;
|
|
868
897
|
readonly id: {
|
|
869
898
|
readonly type: import("vue").PropType<string>;
|
|
@@ -1062,6 +1091,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1062
1091
|
readonly validateEvent: boolean;
|
|
1063
1092
|
readonly inputStyle: import("vue").StyleValue;
|
|
1064
1093
|
readonly rows: number;
|
|
1094
|
+
readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal";
|
|
1065
1095
|
readonly clearable: boolean;
|
|
1066
1096
|
readonly showPassword: boolean;
|
|
1067
1097
|
readonly showWordLimit: boolean;
|
|
@@ -1083,7 +1113,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1083
1113
|
__epPropKey: true;
|
|
1084
1114
|
};
|
|
1085
1115
|
readonly type: {
|
|
1086
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1116
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1087
1117
|
readonly required: false;
|
|
1088
1118
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1089
1119
|
__epPropKey: true;
|
|
@@ -1091,7 +1121,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1091
1121
|
readonly default: "";
|
|
1092
1122
|
};
|
|
1093
1123
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
1094
|
-
readonly type: "" | "default" | "text" | "
|
|
1124
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1095
1125
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1096
1126
|
P: {};
|
|
1097
1127
|
B: {};
|
|
@@ -1107,7 +1137,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1107
1137
|
__epPropKey: true;
|
|
1108
1138
|
};
|
|
1109
1139
|
readonly type: {
|
|
1110
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1140
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1111
1141
|
readonly required: false;
|
|
1112
1142
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1113
1143
|
__epPropKey: true;
|
|
@@ -1115,7 +1145,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1115
1145
|
readonly default: "";
|
|
1116
1146
|
};
|
|
1117
1147
|
}>>, {}, {}, {}, {}, {
|
|
1118
|
-
readonly type: "" | "default" | "text" | "
|
|
1148
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1119
1149
|
}>;
|
|
1120
1150
|
__isFragment?: never;
|
|
1121
1151
|
__isTeleport?: never;
|
|
@@ -1128,7 +1158,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1128
1158
|
__epPropKey: true;
|
|
1129
1159
|
};
|
|
1130
1160
|
readonly type: {
|
|
1131
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1161
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1132
1162
|
readonly required: false;
|
|
1133
1163
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1134
1164
|
__epPropKey: true;
|
|
@@ -1136,7 +1166,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1136
1166
|
readonly default: "";
|
|
1137
1167
|
};
|
|
1138
1168
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
1139
|
-
readonly type: "" | "default" | "text" | "
|
|
1169
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1140
1170
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1141
1171
|
$slots: {
|
|
1142
1172
|
default?(_: {}): any;
|
|
@@ -1152,7 +1182,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1152
1182
|
};
|
|
1153
1183
|
readonly disabled: BooleanConstructor;
|
|
1154
1184
|
readonly type: {
|
|
1155
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1185
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1156
1186
|
readonly required: false;
|
|
1157
1187
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1158
1188
|
__epPropKey: true;
|
|
@@ -1238,7 +1268,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1238
1268
|
readonly disabled: boolean;
|
|
1239
1269
|
readonly round: boolean;
|
|
1240
1270
|
readonly dark: boolean;
|
|
1241
|
-
readonly type: "" | "default" | "text" | "
|
|
1271
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1242
1272
|
readonly bg: boolean;
|
|
1243
1273
|
readonly loading: boolean;
|
|
1244
1274
|
readonly autofocus: boolean;
|
|
@@ -1263,7 +1293,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1263
1293
|
};
|
|
1264
1294
|
readonly disabled: BooleanConstructor;
|
|
1265
1295
|
readonly type: {
|
|
1266
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1296
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1267
1297
|
readonly required: false;
|
|
1268
1298
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1269
1299
|
__epPropKey: true;
|
|
@@ -1347,7 +1377,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1347
1377
|
readonly disabled: boolean;
|
|
1348
1378
|
readonly round: boolean;
|
|
1349
1379
|
readonly dark: boolean;
|
|
1350
|
-
readonly type: "" | "default" | "text" | "
|
|
1380
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1351
1381
|
readonly bg: boolean;
|
|
1352
1382
|
readonly loading: boolean;
|
|
1353
1383
|
readonly autofocus: boolean;
|
|
@@ -1369,7 +1399,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1369
1399
|
};
|
|
1370
1400
|
readonly disabled: BooleanConstructor;
|
|
1371
1401
|
readonly type: {
|
|
1372
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1402
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1373
1403
|
readonly required: false;
|
|
1374
1404
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1375
1405
|
__epPropKey: true;
|
|
@@ -1455,7 +1485,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1455
1485
|
readonly disabled: boolean;
|
|
1456
1486
|
readonly round: boolean;
|
|
1457
1487
|
readonly dark: boolean;
|
|
1458
|
-
readonly type: "" | "default" | "text" | "
|
|
1488
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1459
1489
|
readonly bg: boolean;
|
|
1460
1490
|
readonly loading: boolean;
|
|
1461
1491
|
readonly autofocus: boolean;
|
|
@@ -1480,7 +1510,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1480
1510
|
__epPropKey: true;
|
|
1481
1511
|
};
|
|
1482
1512
|
readonly type: {
|
|
1483
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1513
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1484
1514
|
readonly required: false;
|
|
1485
1515
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1486
1516
|
__epPropKey: true;
|
|
@@ -1488,7 +1518,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1488
1518
|
readonly default: "";
|
|
1489
1519
|
};
|
|
1490
1520
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
1491
|
-
readonly type: "" | "default" | "text" | "
|
|
1521
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1492
1522
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1493
1523
|
P: {};
|
|
1494
1524
|
B: {};
|
|
@@ -1504,7 +1534,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1504
1534
|
__epPropKey: true;
|
|
1505
1535
|
};
|
|
1506
1536
|
readonly type: {
|
|
1507
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1537
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1508
1538
|
readonly required: false;
|
|
1509
1539
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1510
1540
|
__epPropKey: true;
|
|
@@ -1512,7 +1542,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1512
1542
|
readonly default: "";
|
|
1513
1543
|
};
|
|
1514
1544
|
}>>, {}, {}, {}, {}, {
|
|
1515
|
-
readonly type: "" | "default" | "text" | "
|
|
1545
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1516
1546
|
}>;
|
|
1517
1547
|
__isFragment?: never;
|
|
1518
1548
|
__isTeleport?: never;
|
|
@@ -1525,7 +1555,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1525
1555
|
__epPropKey: true;
|
|
1526
1556
|
};
|
|
1527
1557
|
readonly type: {
|
|
1528
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "
|
|
1558
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1529
1559
|
readonly required: false;
|
|
1530
1560
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1531
1561
|
__epPropKey: true;
|
|
@@ -1533,7 +1563,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1533
1563
|
readonly default: "";
|
|
1534
1564
|
};
|
|
1535
1565
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
1536
|
-
readonly type: "" | "default" | "text" | "
|
|
1566
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1537
1567
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1538
1568
|
$slots: {
|
|
1539
1569
|
default?(_: {}): any;
|
|
@@ -1743,9 +1773,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1743
1773
|
labelPosition: "" | "top" | "left" | "right";
|
|
1744
1774
|
inlineMessage: string | boolean;
|
|
1745
1775
|
showMessage: boolean;
|
|
1776
|
+
url: string;
|
|
1746
1777
|
accept: string;
|
|
1747
1778
|
file: File;
|
|
1748
|
-
url: string;
|
|
1749
1779
|
chunkSize: number;
|
|
1750
1780
|
fileServiceType: import("./types").FileServiceType;
|
|
1751
1781
|
fileStatus: Status;
|
|
@@ -157,14 +157,7 @@ export declare const props: {
|
|
|
157
157
|
} & {
|
|
158
158
|
readonly default: number;
|
|
159
159
|
};
|
|
160
|
-
collapseTagsTooltip:
|
|
161
|
-
readonly type: import("vue").PropType<boolean>;
|
|
162
|
-
readonly required: false;
|
|
163
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
164
|
-
__epPropKey: true;
|
|
165
|
-
} & {
|
|
166
|
-
readonly default: boolean;
|
|
167
|
-
};
|
|
160
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
168
161
|
maxCollapseTagsTooltipHeight: {
|
|
169
162
|
readonly type: import("vue").PropType<string | number>;
|
|
170
163
|
readonly required: false;
|
|
@@ -221,7 +214,7 @@ export declare const props: {
|
|
|
221
214
|
};
|
|
222
215
|
tagType: {
|
|
223
216
|
default: string;
|
|
224
|
-
type: import("vue").PropType<"
|
|
217
|
+
type: import("vue").PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
225
218
|
required: false;
|
|
226
219
|
validator: ((val: unknown) => boolean) | undefined;
|
|
227
220
|
__epPropKey: true;
|
|
@@ -273,8 +266,8 @@ export declare const props: {
|
|
|
273
266
|
};
|
|
274
267
|
};
|
|
275
268
|
export declare const emits: {
|
|
276
|
-
"update:modelValue": (
|
|
277
|
-
change: (
|
|
269
|
+
"update:modelValue": (value: import("element-plus").CascaderValue) => boolean;
|
|
270
|
+
change: (value: import("element-plus").CascaderValue) => boolean;
|
|
278
271
|
focus: (evt: FocusEvent) => boolean;
|
|
279
272
|
blur: (evt: FocusEvent) => boolean;
|
|
280
273
|
clear: () => boolean;
|
|
@@ -159,14 +159,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
159
159
|
} & {
|
|
160
160
|
readonly default: number;
|
|
161
161
|
};
|
|
162
|
-
collapseTagsTooltip:
|
|
163
|
-
readonly type: import("vue").PropType<boolean>;
|
|
164
|
-
readonly required: false;
|
|
165
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
166
|
-
__epPropKey: true;
|
|
167
|
-
} & {
|
|
168
|
-
readonly default: boolean;
|
|
169
|
-
};
|
|
162
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
170
163
|
maxCollapseTagsTooltipHeight: {
|
|
171
164
|
readonly type: import("vue").PropType<string | number>;
|
|
172
165
|
readonly required: false;
|
|
@@ -223,7 +216,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
223
216
|
};
|
|
224
217
|
tagType: {
|
|
225
218
|
default: string;
|
|
226
|
-
type: import("vue").PropType<"
|
|
219
|
+
type: import("vue").PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
227
220
|
required: false;
|
|
228
221
|
validator: ((val: unknown) => boolean) | undefined;
|
|
229
222
|
__epPropKey: true;
|
|
@@ -284,8 +277,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
284
277
|
options: import("vue").ComputedRef<import("element-plus").CascaderOption[]>;
|
|
285
278
|
preInput: () => void;
|
|
286
279
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
287
|
-
"update:modelValue": (
|
|
288
|
-
change: (
|
|
280
|
+
"update:modelValue": (value: import("element-plus").CascaderValue) => boolean;
|
|
281
|
+
change: (value: import("element-plus").CascaderValue) => boolean;
|
|
289
282
|
focus: (evt: FocusEvent) => boolean;
|
|
290
283
|
blur: (evt: FocusEvent) => boolean;
|
|
291
284
|
clear: () => boolean;
|
|
@@ -451,14 +444,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
451
444
|
} & {
|
|
452
445
|
readonly default: number;
|
|
453
446
|
};
|
|
454
|
-
collapseTagsTooltip:
|
|
455
|
-
readonly type: import("vue").PropType<boolean>;
|
|
456
|
-
readonly required: false;
|
|
457
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
458
|
-
__epPropKey: true;
|
|
459
|
-
} & {
|
|
460
|
-
readonly default: boolean;
|
|
461
|
-
};
|
|
447
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
462
448
|
maxCollapseTagsTooltipHeight: {
|
|
463
449
|
readonly type: import("vue").PropType<string | number>;
|
|
464
450
|
readonly required: false;
|
|
@@ -515,7 +501,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
515
501
|
};
|
|
516
502
|
tagType: {
|
|
517
503
|
default: string;
|
|
518
|
-
type: import("vue").PropType<"
|
|
504
|
+
type: import("vue").PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
519
505
|
required: false;
|
|
520
506
|
validator: ((val: unknown) => boolean) | undefined;
|
|
521
507
|
__epPropKey: true;
|
|
@@ -568,8 +554,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
568
554
|
}>> & Readonly<{
|
|
569
555
|
onFocus?: (evt: FocusEvent) => any;
|
|
570
556
|
onClear?: () => any;
|
|
571
|
-
"onUpdate:modelValue"?: (
|
|
572
|
-
onChange?: (
|
|
557
|
+
"onUpdate:modelValue"?: (value: import("element-plus").CascaderValue) => any;
|
|
558
|
+
onChange?: (value: import("element-plus").CascaderValue) => any;
|
|
573
559
|
onBlur?: (evt: FocusEvent) => any;
|
|
574
560
|
onVisibleChange?: (val: boolean) => any;
|
|
575
561
|
onExpandChange?: (val: import("element-plus").CascaderValue) => any;
|
|
@@ -602,7 +588,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
602
588
|
filterable: boolean;
|
|
603
589
|
collapseTags: boolean;
|
|
604
590
|
collapseTagsTooltip: boolean;
|
|
605
|
-
tagType: "
|
|
591
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
606
592
|
valueOnClear: string | number | boolean | Function;
|
|
607
593
|
separator: string;
|
|
608
594
|
showAllLevels: boolean;
|
|
@@ -949,7 +935,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
949
935
|
};
|
|
950
936
|
tagType: {
|
|
951
937
|
default: string;
|
|
952
|
-
type: import("vue").PropType<"
|
|
938
|
+
type: import("vue").PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
953
939
|
required: false;
|
|
954
940
|
validator: ((val: unknown) => boolean) | undefined;
|
|
955
941
|
__epPropKey: true;
|
|
@@ -1072,8 +1058,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1072
1058
|
};
|
|
1073
1059
|
states: {
|
|
1074
1060
|
inputValue: string;
|
|
1075
|
-
options: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy
|
|
1076
|
-
cachedOptions: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy
|
|
1061
|
+
options: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy> & Omit<Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy>, keyof Map<any, any>>;
|
|
1062
|
+
cachedOptions: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy> & Omit<Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy>, keyof Map<any, any>>;
|
|
1077
1063
|
optionValues: (string | number | boolean | Record<string, any>)[];
|
|
1078
1064
|
selected: {
|
|
1079
1065
|
value: string | number | boolean | Record<string, any>;
|
|
@@ -1112,13 +1098,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1112
1098
|
showClose: import("vue").ComputedRef<boolean>;
|
|
1113
1099
|
iconComponent: import("vue").ComputedRef<unknown | undefined>;
|
|
1114
1100
|
iconReverse: import("vue").ComputedRef<string>;
|
|
1115
|
-
validateState: import("vue").ComputedRef<"" | "error" | "
|
|
1101
|
+
validateState: import("vue").ComputedRef<"" | "error" | "success" | "validating">;
|
|
1116
1102
|
validateIcon: import("vue").ComputedRef<"" | import("vue").Component>;
|
|
1117
1103
|
showNewOption: import("vue").ComputedRef<boolean>;
|
|
1118
1104
|
updateOptions: () => void;
|
|
1119
1105
|
collapseTagSize: import("vue").ComputedRef<"default" | "small">;
|
|
1120
1106
|
setSelected: () => void;
|
|
1121
|
-
selectDisabled: import("vue").ComputedRef<boolean
|
|
1107
|
+
selectDisabled: import("vue").ComputedRef<boolean>;
|
|
1122
1108
|
emptyText: import("vue").ComputedRef<string | null>;
|
|
1123
1109
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1124
1110
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -1194,7 +1180,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1194
1180
|
collapseTags: boolean;
|
|
1195
1181
|
maxCollapseTags: number;
|
|
1196
1182
|
collapseTagsTooltip: boolean;
|
|
1197
|
-
tagType: "
|
|
1183
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
1198
1184
|
tagEffect: "dark" | "light" | "plain";
|
|
1199
1185
|
automaticDropdown: boolean;
|
|
1200
1186
|
allowCreate: boolean;
|
|
@@ -1354,7 +1340,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1354
1340
|
};
|
|
1355
1341
|
tagType: {
|
|
1356
1342
|
default: string;
|
|
1357
|
-
type: import("vue").PropType<"
|
|
1343
|
+
type: import("vue").PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
1358
1344
|
required: false;
|
|
1359
1345
|
validator: ((val: unknown) => boolean) | undefined;
|
|
1360
1346
|
__epPropKey: true;
|
|
@@ -1477,8 +1463,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1477
1463
|
};
|
|
1478
1464
|
states: {
|
|
1479
1465
|
inputValue: string;
|
|
1480
|
-
options: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy
|
|
1481
|
-
cachedOptions: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy
|
|
1466
|
+
options: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy> & Omit<Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy>, keyof Map<any, any>>;
|
|
1467
|
+
cachedOptions: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy> & Omit<Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy>, keyof Map<any, any>>;
|
|
1482
1468
|
optionValues: (string | number | boolean | Record<string, any>)[];
|
|
1483
1469
|
selected: {
|
|
1484
1470
|
value: string | number | boolean | Record<string, any>;
|
|
@@ -1517,13 +1503,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1517
1503
|
showClose: import("vue").ComputedRef<boolean>;
|
|
1518
1504
|
iconComponent: import("vue").ComputedRef<unknown | undefined>;
|
|
1519
1505
|
iconReverse: import("vue").ComputedRef<string>;
|
|
1520
|
-
validateState: import("vue").ComputedRef<"" | "error" | "
|
|
1506
|
+
validateState: import("vue").ComputedRef<"" | "error" | "success" | "validating">;
|
|
1521
1507
|
validateIcon: import("vue").ComputedRef<"" | import("vue").Component>;
|
|
1522
1508
|
showNewOption: import("vue").ComputedRef<boolean>;
|
|
1523
1509
|
updateOptions: () => void;
|
|
1524
1510
|
collapseTagSize: import("vue").ComputedRef<"default" | "small">;
|
|
1525
1511
|
setSelected: () => void;
|
|
1526
|
-
selectDisabled: import("vue").ComputedRef<boolean
|
|
1512
|
+
selectDisabled: import("vue").ComputedRef<boolean>;
|
|
1527
1513
|
emptyText: import("vue").ComputedRef<string | null>;
|
|
1528
1514
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1529
1515
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -1599,7 +1585,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1599
1585
|
collapseTags: boolean;
|
|
1600
1586
|
maxCollapseTags: number;
|
|
1601
1587
|
collapseTagsTooltip: boolean;
|
|
1602
|
-
tagType: "
|
|
1588
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
1603
1589
|
tagEffect: "dark" | "light" | "plain";
|
|
1604
1590
|
automaticDropdown: boolean;
|
|
1605
1591
|
allowCreate: boolean;
|
|
@@ -1756,7 +1742,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1756
1742
|
};
|
|
1757
1743
|
tagType: {
|
|
1758
1744
|
default: string;
|
|
1759
|
-
type: import("vue").PropType<"
|
|
1745
|
+
type: import("vue").PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
1760
1746
|
required: false;
|
|
1761
1747
|
validator: ((val: unknown) => boolean) | undefined;
|
|
1762
1748
|
__epPropKey: true;
|
|
@@ -1879,8 +1865,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1879
1865
|
};
|
|
1880
1866
|
states: {
|
|
1881
1867
|
inputValue: string;
|
|
1882
|
-
options: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy
|
|
1883
|
-
cachedOptions: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy
|
|
1868
|
+
options: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy> & Omit<Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy>, keyof Map<any, any>>;
|
|
1869
|
+
cachedOptions: Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy> & Omit<Map<string | number | boolean | Record<string, any>, import("element-plus").SelectOptionProxy>, keyof Map<any, any>>;
|
|
1884
1870
|
optionValues: (string | number | boolean | Record<string, any>)[];
|
|
1885
1871
|
selected: {
|
|
1886
1872
|
value: string | number | boolean | Record<string, any>;
|
|
@@ -1919,13 +1905,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1919
1905
|
showClose: import("vue").ComputedRef<boolean>;
|
|
1920
1906
|
iconComponent: import("vue").ComputedRef<unknown | undefined>;
|
|
1921
1907
|
iconReverse: import("vue").ComputedRef<string>;
|
|
1922
|
-
validateState: import("vue").ComputedRef<"" | "error" | "
|
|
1908
|
+
validateState: import("vue").ComputedRef<"" | "error" | "success" | "validating">;
|
|
1923
1909
|
validateIcon: import("vue").ComputedRef<"" | import("vue").Component>;
|
|
1924
1910
|
showNewOption: import("vue").ComputedRef<boolean>;
|
|
1925
1911
|
updateOptions: () => void;
|
|
1926
1912
|
collapseTagSize: import("vue").ComputedRef<"default" | "small">;
|
|
1927
1913
|
setSelected: () => void;
|
|
1928
|
-
selectDisabled: import("vue").ComputedRef<boolean
|
|
1914
|
+
selectDisabled: import("vue").ComputedRef<boolean>;
|
|
1929
1915
|
emptyText: import("vue").ComputedRef<string | null>;
|
|
1930
1916
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1931
1917
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -2001,7 +1987,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2001
1987
|
collapseTags: boolean;
|
|
2002
1988
|
maxCollapseTags: number;
|
|
2003
1989
|
collapseTagsTooltip: boolean;
|
|
2004
|
-
tagType: "
|
|
1990
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
2005
1991
|
tagEffect: "dark" | "light" | "plain";
|
|
2006
1992
|
automaticDropdown: boolean;
|
|
2007
1993
|
allowCreate: boolean;
|