@vunk/form 1.2.2 → 1.3.1
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/index.vue.d.ts +282 -6
- package/components/cascader/src/ctx.d.ts +1 -1
- package/components/cascader/src/index.vue.d.ts +13672 -8
- package/components/checkbox/src/ctx.d.ts +1 -1
- package/components/checkbox/src/index.vue.d.ts +906 -10
- package/components/color-picker/src/index.vue.d.ts +10950 -7
- package/components/date-picker/src/ctx.d.ts +1 -1
- package/components/date-picker/src/index.vue.d.ts +225 -11
- package/components/date-picker-range/src/ctx.d.ts +1 -1
- package/components/date-picker-range/src/index.vue.d.ts +24 -12
- package/components/download-plus/index.cjs +4 -4
- package/components/download-plus/index.mjs +4 -4
- package/components/download-plus/src/index.vue.d.ts +822 -8
- package/components/esri-input-geojson/src/append.vue.d.ts +2232 -5
- package/components/esri-input-geojson/src/ctx.d.ts +1 -1
- package/components/esri-input-geojson/src/default-view.vue.d.ts +3 -3
- package/components/esri-input-geojson/src/index.vue.d.ts +723 -23
- package/components/esri-input-geojson/src/viewer.vue.d.ts +141 -10
- package/components/form/src/ctx.d.ts +1 -1
- package/components/form/src/index.vue.d.ts +373 -39
- package/components/form-item/index.cjs +3 -4
- package/components/form-item/index.mjs +3 -4
- package/components/form-item/src/index.vue.d.ts +185 -5
- package/components/form-item-renderer/src/index.vue.d.ts +5 -5
- package/components/form-item-renderer-template/src/index.vue.d.ts +4 -4
- package/components/geoinput/src/index.vue.d.ts +40 -17
- package/components/geoinput-read/src/append.vue.d.ts +379 -2
- package/components/geoinput-read/src/core.vue.d.ts +176 -14
- package/components/geoinput-read/src/ctx.d.ts +1 -1
- package/components/geoinput-read/src/index.vue.d.ts +743 -15
- package/components/geoinput-update/src/append.vue.d.ts +2231 -5
- package/components/geoinput-update/src/ctx.d.ts +1 -1
- package/components/geoinput-update/src/index.vue.d.ts +814 -20
- package/components/input/index.cjs +2 -2
- package/components/input/index.mjs +2 -2
- package/components/input/src/index.vue.d.ts +479 -13
- package/components/input-link/src/index.vue.d.ts +25 -13
- package/components/input-number/src/ctx.d.ts +1 -1
- package/components/input-number/src/index.vue.d.ts +1579 -12
- package/components/monaco-editor/index.cjs +83 -0
- package/components/monaco-editor/index.css +3 -0
- package/components/monaco-editor/index.d.ts +4 -0
- package/components/monaco-editor/index.mjs +77 -0
- package/components/monaco-editor/src/ctx.d.ts +70 -0
- package/components/monaco-editor/src/index.vue.d.ts +209 -0
- package/components/monaco-editor/src/types.d.ts +7 -0
- package/components/radio/src/index.vue.d.ts +444 -10
- package/components/select/src/ctx.d.ts +3 -3
- package/components/select/src/index.vue.d.ts +12944 -31
- package/components/slider/index.cjs +3 -3
- package/components/slider/index.mjs +3 -3
- package/components/slider/src/index.vue.d.ts +25 -12
- package/components/switch/src/index.vue.d.ts +319 -8
- package/components/templates-default/index.cjs +41 -26
- package/components/templates-default/index.mjs +41 -26
- package/components/templates-default/src/index.vue.d.ts +162 -7
- package/components/templates-element-plus/src/index.vue.d.ts +193 -6
- package/components/templates-esri/src/index.vue.d.ts +30 -7
- package/components/templates-layout/src/index.vue.d.ts +148 -6
- package/components/templates-mapbox/src/index.vue.d.ts +30 -7
- package/components/templates-variant/src/index.vue.d.ts +30 -7
- package/components/upload/index.cjs +2 -2
- package/components/upload/index.mjs +2 -2
- package/components/upload/src/ctx.d.ts +1 -1
- package/components/upload/src/file.vue.d.ts +263 -6
- package/components/upload/src/index.vue.d.ts +2366 -9
- package/components/upload-plus/index.cjs +19 -20
- package/components/upload-plus/index.mjs +19 -20
- package/components/upload-plus/src/index.vue.d.ts +874 -12
- package/components/van-cascader/src/index.vue.d.ts +13048 -11
- package/components/var-datetime-picker/src/index.vue.d.ts +624 -10
- package/components/vditor/index.cjs +43 -408
- package/components/vditor/index.mjs +44 -409
- package/components/vditor/src/ctx.d.ts +52 -6
- package/components/vditor/src/index.vue.d.ts +274 -16
- package/components/vditor/src/types.d.ts +7 -9
- package/composables/useSourceManager.d.ts +1 -1
- package/index.css +4 -13
- package/package.json +9 -4
- package/shared/element-plus/ctx.d.ts +3 -3
- package/shared/element-plus/instances.d.ts +2 -2
- package/components/vditor/index.css +0 -12
- package/components/vditor/src/handle-fullscreen.vue.d.ts +0 -18
- package/components/vditor/src/handle-value.vue.d.ts +0 -18
- package/components/vditor/src/use.d.ts +0 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UploadFile } from 'element-plus';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
3
|
import { Func } from '@vunk/core';
|
|
4
|
-
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
5
|
listType: {
|
|
6
6
|
type: PropType<"picture" | "picture-card" | "text">;
|
|
7
7
|
default: string;
|
|
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
26
|
type: BooleanConstructor;
|
|
27
27
|
default: boolean;
|
|
28
28
|
};
|
|
29
|
-
}
|
|
29
|
+
}>, {
|
|
30
30
|
handleRemove: (file?: UploadFile) => void;
|
|
31
31
|
t: import("element-plus").Translator;
|
|
32
32
|
nsIcon: {
|
|
@@ -66,7 +66,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
66
66
|
cssVarBlockName: (name: string) => string;
|
|
67
67
|
};
|
|
68
68
|
handleDownload: (file?: UploadFile) => void;
|
|
69
|
-
},
|
|
69
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
70
70
|
remove: (e: UploadFile) => UploadFile;
|
|
71
71
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
72
72
|
listType: {
|
|
@@ -93,14 +93,271 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
93
|
type: BooleanConstructor;
|
|
94
94
|
default: boolean;
|
|
95
95
|
};
|
|
96
|
-
}>> & {
|
|
96
|
+
}>> & Readonly<{
|
|
97
97
|
onRemove?: (e: UploadFile) => any;
|
|
98
|
-
}
|
|
98
|
+
}>, {
|
|
99
99
|
disabled: boolean;
|
|
100
100
|
file: UploadFile;
|
|
101
101
|
onPreview: (arg: UploadFile) => any;
|
|
102
102
|
listType: "text" | "picture" | "picture-card";
|
|
103
103
|
onDownload: (arg: UploadFile) => any;
|
|
104
104
|
preview: boolean;
|
|
105
|
-
}, {}
|
|
105
|
+
}, {}, {
|
|
106
|
+
ElProgress: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
107
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "circle" | "line" | "dashboard", unknown, "line", boolean>;
|
|
108
|
+
readonly percentage: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
109
|
+
readonly status: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "warning" | "exception", unknown, "", boolean>;
|
|
110
|
+
readonly indeterminate: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
111
|
+
readonly duration: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
|
|
112
|
+
readonly strokeWidth: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 6, boolean>;
|
|
113
|
+
readonly strokeLinecap: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square") | ((new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square"))[], unknown, unknown, "round", boolean>;
|
|
114
|
+
readonly textInside: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
115
|
+
readonly width: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 126, boolean>;
|
|
116
|
+
readonly showText: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
117
|
+
readonly color: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) & {}) | (() => string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) | ((new (...args: any[]) => (string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) & {}) | (() => string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]))[], unknown, unknown, "", boolean>;
|
|
118
|
+
readonly striped: BooleanConstructor;
|
|
119
|
+
readonly stripedFlow: BooleanConstructor;
|
|
120
|
+
readonly format: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").ProgressFn) | (() => import("element-plus").ProgressFn) | {
|
|
121
|
+
(): import("element-plus").ProgressFn;
|
|
122
|
+
new (): any;
|
|
123
|
+
readonly prototype: any;
|
|
124
|
+
} | ((new (...args: any[]) => import("element-plus").ProgressFn) | (() => import("element-plus").ProgressFn) | {
|
|
125
|
+
(): import("element-plus").ProgressFn;
|
|
126
|
+
new (): any;
|
|
127
|
+
readonly prototype: any;
|
|
128
|
+
})[], unknown, unknown, (percentage: number) => string, boolean>;
|
|
129
|
+
}, {
|
|
130
|
+
STATUS_COLOR_MAP: Record<string, string>;
|
|
131
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
132
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "circle" | "line" | "dashboard", unknown, "line", boolean>;
|
|
133
|
+
readonly percentage: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
134
|
+
readonly status: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "warning" | "exception", unknown, "", boolean>;
|
|
135
|
+
readonly indeterminate: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
136
|
+
readonly duration: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
|
|
137
|
+
readonly strokeWidth: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 6, boolean>;
|
|
138
|
+
readonly strokeLinecap: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square") | ((new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square"))[], unknown, unknown, "round", boolean>;
|
|
139
|
+
readonly textInside: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
140
|
+
readonly width: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 126, boolean>;
|
|
141
|
+
readonly showText: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
142
|
+
readonly color: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) & {}) | (() => string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) | ((new (...args: any[]) => (string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) & {}) | (() => string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]))[], unknown, unknown, "", boolean>;
|
|
143
|
+
readonly striped: BooleanConstructor;
|
|
144
|
+
readonly stripedFlow: BooleanConstructor;
|
|
145
|
+
readonly format: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").ProgressFn) | (() => import("element-plus").ProgressFn) | {
|
|
146
|
+
(): import("element-plus").ProgressFn;
|
|
147
|
+
new (): any;
|
|
148
|
+
readonly prototype: any;
|
|
149
|
+
} | ((new (...args: any[]) => import("element-plus").ProgressFn) | (() => import("element-plus").ProgressFn) | {
|
|
150
|
+
(): import("element-plus").ProgressFn;
|
|
151
|
+
new (): any;
|
|
152
|
+
readonly prototype: any;
|
|
153
|
+
})[], unknown, unknown, (percentage: number) => string, boolean>;
|
|
154
|
+
}>> & {
|
|
155
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
156
|
+
}>>;
|
|
157
|
+
ns: {
|
|
158
|
+
namespace: import("vue").ComputedRef<string>;
|
|
159
|
+
b: (blockSuffix?: string) => string;
|
|
160
|
+
e: (element?: string | undefined) => string;
|
|
161
|
+
m: (modifier?: string | undefined) => string;
|
|
162
|
+
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
163
|
+
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
164
|
+
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
165
|
+
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
166
|
+
is: {
|
|
167
|
+
(name: string, state: boolean | undefined): string;
|
|
168
|
+
(name: string): string;
|
|
169
|
+
};
|
|
170
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
171
|
+
cssVarName: (name: string) => string;
|
|
172
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
173
|
+
cssVarBlockName: (name: string) => string;
|
|
174
|
+
};
|
|
175
|
+
barStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
176
|
+
relativeStrokeWidth: import("vue").ComputedRef<string>;
|
|
177
|
+
radius: import("vue").ComputedRef<number>;
|
|
178
|
+
trackPath: import("vue").ComputedRef<string>;
|
|
179
|
+
perimeter: import("vue").ComputedRef<number>;
|
|
180
|
+
rate: import("vue").ComputedRef<1 | 0.75>;
|
|
181
|
+
strokeDashoffset: import("vue").ComputedRef<string>;
|
|
182
|
+
trailPathStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
183
|
+
circlePathStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
184
|
+
stroke: import("vue").ComputedRef<string>;
|
|
185
|
+
statusIcon: import("vue").ComputedRef<any>;
|
|
186
|
+
progressTextSize: import("vue").ComputedRef<number>;
|
|
187
|
+
content: import("vue").ComputedRef<string>;
|
|
188
|
+
getColors: (color: import("element-plus/es/components/progress/src/progress").ProgressColor[]) => import("element-plus/es/components/progress/src/progress").ProgressColor[];
|
|
189
|
+
getCurrentColor: (percentage: number) => string;
|
|
190
|
+
ElIcon: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
191
|
+
readonly size: {
|
|
192
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
193
|
+
readonly required: false;
|
|
194
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
195
|
+
__epPropKey: true;
|
|
196
|
+
};
|
|
197
|
+
readonly color: {
|
|
198
|
+
readonly type: import("vue").PropType<string>;
|
|
199
|
+
readonly required: false;
|
|
200
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
201
|
+
__epPropKey: true;
|
|
202
|
+
};
|
|
203
|
+
}, {
|
|
204
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
205
|
+
readonly size: {
|
|
206
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
207
|
+
readonly required: false;
|
|
208
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
209
|
+
__epPropKey: true;
|
|
210
|
+
};
|
|
211
|
+
readonly color: {
|
|
212
|
+
readonly type: import("vue").PropType<string>;
|
|
213
|
+
readonly required: false;
|
|
214
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
215
|
+
__epPropKey: true;
|
|
216
|
+
};
|
|
217
|
+
}>> & {
|
|
218
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
219
|
+
}>>;
|
|
220
|
+
ns: {
|
|
221
|
+
namespace: import("vue").ComputedRef<string>;
|
|
222
|
+
b: (blockSuffix?: string) => string;
|
|
223
|
+
e: (element?: string | undefined) => string;
|
|
224
|
+
m: (modifier?: string | undefined) => string;
|
|
225
|
+
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
226
|
+
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
227
|
+
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
228
|
+
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
229
|
+
is: {
|
|
230
|
+
(name: string, state: boolean | undefined): string;
|
|
231
|
+
(name: string): string;
|
|
232
|
+
};
|
|
233
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
234
|
+
cssVarName: (name: string) => string;
|
|
235
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
236
|
+
cssVarBlockName: (name: string) => string;
|
|
237
|
+
};
|
|
238
|
+
style: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
239
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
240
|
+
readonly size: {
|
|
241
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
242
|
+
readonly required: false;
|
|
243
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
244
|
+
__epPropKey: true;
|
|
245
|
+
};
|
|
246
|
+
readonly color: {
|
|
247
|
+
readonly type: import("vue").PropType<string>;
|
|
248
|
+
readonly required: false;
|
|
249
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
250
|
+
__epPropKey: true;
|
|
251
|
+
};
|
|
252
|
+
}>>, {}>> & Record<string, any>;
|
|
253
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
254
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "circle" | "line" | "dashboard", unknown, "line", boolean>;
|
|
255
|
+
readonly percentage: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
256
|
+
readonly status: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "warning" | "exception", unknown, "", boolean>;
|
|
257
|
+
readonly indeterminate: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
258
|
+
readonly duration: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
|
|
259
|
+
readonly strokeWidth: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 6, boolean>;
|
|
260
|
+
readonly strokeLinecap: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square") | ((new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square"))[], unknown, unknown, "round", boolean>;
|
|
261
|
+
readonly textInside: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
262
|
+
readonly width: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 126, boolean>;
|
|
263
|
+
readonly showText: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
264
|
+
readonly color: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) & {}) | (() => string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) | ((new (...args: any[]) => (string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) & {}) | (() => string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]))[], unknown, unknown, "", boolean>;
|
|
265
|
+
readonly striped: BooleanConstructor;
|
|
266
|
+
readonly stripedFlow: BooleanConstructor;
|
|
267
|
+
readonly format: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").ProgressFn) | (() => import("element-plus").ProgressFn) | {
|
|
268
|
+
(): import("element-plus").ProgressFn;
|
|
269
|
+
new (): any;
|
|
270
|
+
readonly prototype: any;
|
|
271
|
+
} | ((new (...args: any[]) => import("element-plus").ProgressFn) | (() => import("element-plus").ProgressFn) | {
|
|
272
|
+
(): import("element-plus").ProgressFn;
|
|
273
|
+
new (): any;
|
|
274
|
+
readonly prototype: any;
|
|
275
|
+
})[], unknown, unknown, (percentage: number) => string, boolean>;
|
|
276
|
+
}>>, {
|
|
277
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "circle" | "line" | "dashboard", unknown>;
|
|
278
|
+
readonly width: number;
|
|
279
|
+
readonly color: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) & {}) | (() => string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) | ((new (...args: any[]) => (string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]) & {}) | (() => string | import("element-plus").ProgressFn | import("element-plus").ProgressColor[]))[], unknown, unknown>;
|
|
280
|
+
readonly duration: number;
|
|
281
|
+
readonly strokeLinecap: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square") | ((new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square"))[], unknown, unknown>;
|
|
282
|
+
readonly strokeWidth: number;
|
|
283
|
+
readonly indeterminate: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
284
|
+
readonly format: import("element-plus").ProgressFn;
|
|
285
|
+
readonly percentage: number;
|
|
286
|
+
readonly status: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "warning" | "exception", unknown>;
|
|
287
|
+
readonly textInside: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
288
|
+
readonly showText: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
289
|
+
readonly striped: boolean;
|
|
290
|
+
readonly stripedFlow: boolean;
|
|
291
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>> & Record<string, any>;
|
|
292
|
+
ElIcon: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
293
|
+
readonly size: {
|
|
294
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
295
|
+
readonly required: false;
|
|
296
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
297
|
+
__epPropKey: true;
|
|
298
|
+
};
|
|
299
|
+
readonly color: {
|
|
300
|
+
readonly type: import("vue").PropType<string>;
|
|
301
|
+
readonly required: false;
|
|
302
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
303
|
+
__epPropKey: true;
|
|
304
|
+
};
|
|
305
|
+
}, {
|
|
306
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
307
|
+
readonly size: {
|
|
308
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
309
|
+
readonly required: false;
|
|
310
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
311
|
+
__epPropKey: true;
|
|
312
|
+
};
|
|
313
|
+
readonly color: {
|
|
314
|
+
readonly type: import("vue").PropType<string>;
|
|
315
|
+
readonly required: false;
|
|
316
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
317
|
+
__epPropKey: true;
|
|
318
|
+
};
|
|
319
|
+
}>> & {
|
|
320
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
321
|
+
}>>;
|
|
322
|
+
ns: {
|
|
323
|
+
namespace: import("vue").ComputedRef<string>;
|
|
324
|
+
b: (blockSuffix?: string) => string;
|
|
325
|
+
e: (element?: string | undefined) => string;
|
|
326
|
+
m: (modifier?: string | undefined) => string;
|
|
327
|
+
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
328
|
+
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
329
|
+
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
330
|
+
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
331
|
+
is: {
|
|
332
|
+
(name: string, state: boolean | undefined): string;
|
|
333
|
+
(name: string): string;
|
|
334
|
+
};
|
|
335
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
336
|
+
cssVarName: (name: string) => string;
|
|
337
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
338
|
+
cssVarBlockName: (name: string) => string;
|
|
339
|
+
};
|
|
340
|
+
style: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
341
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
342
|
+
readonly size: {
|
|
343
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
344
|
+
readonly required: false;
|
|
345
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
346
|
+
__epPropKey: true;
|
|
347
|
+
};
|
|
348
|
+
readonly color: {
|
|
349
|
+
readonly type: import("vue").PropType<string>;
|
|
350
|
+
readonly required: false;
|
|
351
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
352
|
+
__epPropKey: true;
|
|
353
|
+
};
|
|
354
|
+
}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>> & Record<string, any>;
|
|
355
|
+
Check: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
356
|
+
ZoomIn: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
357
|
+
Delete: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
358
|
+
Close: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
359
|
+
CircleCheck: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
360
|
+
Document: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
361
|
+
Download: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
362
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
106
363
|
export default _default;
|