@funcho/ui 1.1.14 → 1.1.16
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/cjs/business/DataTable/DataTable.vue.js +5 -0
- package/dist/cjs/business/EditFormCard/EditFormCard.vue.js +238 -0
- package/dist/cjs/business/EditFormCard/EditFormCard.vue3.js +10 -0
- package/dist/cjs/business/EditFormCard/index.js +12 -0
- package/dist/cjs/business/FormDialog/FormDialog.vue.js +129 -0
- package/dist/cjs/business/FormDialog/FormDialog.vue3.js +10 -0
- package/dist/cjs/business/FormDialog/index.js +12 -0
- package/dist/cjs/business/ProForm/ProForm.vue.js +44 -8
- package/dist/cjs/business/index.js +4 -0
- package/dist/cjs/components/Button/DangerButton.vue.js +2 -2
- package/dist/cjs/index.js +10 -6
- package/dist/cjs/packages/ui/package.json.js +1 -1
- package/dist/esm/business/DataTable/DataTable.vue.mjs +5 -0
- package/dist/esm/business/EditFormCard/EditFormCard.vue.mjs +234 -0
- package/dist/esm/business/EditFormCard/EditFormCard.vue3.mjs +6 -0
- package/dist/esm/business/EditFormCard/index.mjs +7 -0
- package/dist/esm/business/FormDialog/FormDialog.vue.mjs +125 -0
- package/dist/esm/business/FormDialog/FormDialog.vue3.mjs +6 -0
- package/dist/esm/business/FormDialog/index.mjs +7 -0
- package/dist/esm/business/ProForm/ProForm.vue.mjs +45 -9
- package/dist/esm/business/index.mjs +2 -0
- package/dist/esm/components/Button/DangerButton.vue.mjs +2 -2
- package/dist/esm/index.mjs +2 -0
- package/dist/esm/packages/ui/package.json.mjs +1 -1
- package/dist/style.css +14 -3
- package/dist/types/business/DataTable/DataTable.vue.d.ts +438 -1208
- package/dist/types/business/DataTable/index.d.ts +438 -1208
- package/dist/types/business/EditFormCard/EditFormCard.types.d.ts +1 -0
- package/dist/types/business/EditFormCard/EditFormCard.vue.d.ts +1169 -0
- package/dist/types/business/EditFormCard/index.d.ts +1569 -0
- package/dist/types/business/FormDialog/FormDialog.types.d.ts +1 -0
- package/dist/types/business/FormDialog/FormDialog.vue.d.ts +1006 -0
- package/dist/types/business/FormDialog/index.d.ts +1077 -0
- package/dist/types/business/ProForm/ProForm.types.d.ts +9 -0
- package/dist/types/business/ProForm/ProForm.vue.d.ts +37 -422
- package/dist/types/business/ProForm/index.d.ts +236 -1391
- package/dist/types/business/index.d.ts +2 -0
- package/dist/types/components/DatePicker/BzDatePicker.vue.d.ts +9 -1
- package/dist/types/components/DatePicker/DatePicker.vue.d.ts +4 -0
- package/dist/types/components/DatePicker/DatePickerRanger.vue.d.ts +27 -3
- package/dist/types/components/DatePicker/DateTimePicker.vue.d.ts +26 -2
- package/dist/types/components/DatePicker/DateTimePickerRanger.vue.d.ts +27 -3
- package/dist/types/components/DatePicker/index.d.ts +126 -10
- package/dist/types/components/Menu/Menu.vue.d.ts +4 -0
- package/dist/types/components/Menu/index.d.ts +12 -0
- package/dist/types/components/Table/Table.vue.d.ts +6 -6
- package/dist/types/components/Text/Text.vue.d.ts +1 -81
- package/dist/types/components/Text/index.d.ts +3 -243
- package/dist/types/components/TimePicker/TimePicker.vue.d.ts +4 -0
- package/dist/types/components/TimePicker/index.d.ts +12 -0
- package/dist/types/components/TreeSelect/TreeSelect.vue.d.ts +2 -500
- package/dist/types/components/TreeSelect/index.d.ts +27 -1521
- package/package.json +4 -2
|
@@ -105,87 +105,7 @@ declare function __VLS_template(): {
|
|
|
105
105
|
rootEl: any;
|
|
106
106
|
};
|
|
107
107
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
108
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
109
|
-
$: import('vue').ComponentInternalInstance;
|
|
110
|
-
$data: {};
|
|
111
|
-
$props: Partial<{
|
|
112
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
113
|
-
size: import('element-plus').ComponentSize;
|
|
114
|
-
tag: string;
|
|
115
|
-
}> & Omit<{
|
|
116
|
-
readonly size: import('element-plus').ComponentSize;
|
|
117
|
-
readonly type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
118
|
-
readonly tag: string;
|
|
119
|
-
readonly truncated?: boolean | undefined;
|
|
120
|
-
readonly lineClamp?: number | string | undefined;
|
|
121
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "size" | "type" | "tag">;
|
|
122
|
-
$attrs: {
|
|
123
|
-
[x: string]: unknown;
|
|
124
|
-
};
|
|
125
|
-
$refs: {
|
|
126
|
-
[x: string]: unknown;
|
|
127
|
-
};
|
|
128
|
-
$slots: Readonly<{
|
|
129
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
130
|
-
}> & {
|
|
131
|
-
default?: (props: {}) => any;
|
|
132
|
-
};
|
|
133
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
134
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
135
|
-
$host: Element | null;
|
|
136
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
137
|
-
$el: any;
|
|
138
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
139
|
-
size: {
|
|
140
|
-
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
141
|
-
default: string;
|
|
142
|
-
};
|
|
143
|
-
type: {
|
|
144
|
-
type: import('vue').PropType<"" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
145
|
-
default: string;
|
|
146
|
-
};
|
|
147
|
-
tag: {
|
|
148
|
-
type: import('vue').PropType<string>;
|
|
149
|
-
default: string;
|
|
150
|
-
};
|
|
151
|
-
truncated: {
|
|
152
|
-
type: import('vue').PropType<boolean>;
|
|
153
|
-
};
|
|
154
|
-
lineClamp: {
|
|
155
|
-
type: import('vue').PropType<string | number>;
|
|
156
|
-
};
|
|
157
|
-
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
158
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
159
|
-
size: import('element-plus').ComponentSize;
|
|
160
|
-
tag: string;
|
|
161
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
162
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
163
|
-
created?: (() => void) | (() => void)[];
|
|
164
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
165
|
-
mounted?: (() => void) | (() => void)[];
|
|
166
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
167
|
-
updated?: (() => void) | (() => void)[];
|
|
168
|
-
activated?: (() => void) | (() => void)[];
|
|
169
|
-
deactivated?: (() => void) | (() => void)[];
|
|
170
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
171
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
172
|
-
destroyed?: (() => void) | (() => void)[];
|
|
173
|
-
unmounted?: (() => void) | (() => void)[];
|
|
174
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
175
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
176
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
177
|
-
};
|
|
178
|
-
$forceUpdate: () => void;
|
|
179
|
-
$nextTick: typeof import('vue').nextTick;
|
|
180
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
181
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
182
|
-
size: import('element-plus').ComponentSize;
|
|
183
|
-
tag: string;
|
|
184
|
-
truncated?: boolean;
|
|
185
|
-
lineClamp?: number | string;
|
|
186
|
-
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
187
|
-
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
188
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
108
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
189
109
|
elRef: ({
|
|
190
110
|
$: import('vue').ComponentInternalInstance;
|
|
191
111
|
$data: {};
|
|
@@ -1,85 +1,5 @@
|
|
|
1
1
|
export declare const FcText: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3
|
-
$: import('vue').ComponentInternalInstance;
|
|
4
|
-
$data: {};
|
|
5
|
-
$props: Partial<{
|
|
6
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
7
|
-
size: import('element-plus').ComponentSize;
|
|
8
|
-
tag: string;
|
|
9
|
-
}> & Omit<{
|
|
10
|
-
readonly size: import('element-plus').ComponentSize;
|
|
11
|
-
readonly type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
12
|
-
readonly tag: string;
|
|
13
|
-
readonly truncated?: boolean | undefined;
|
|
14
|
-
readonly lineClamp?: number | string | undefined;
|
|
15
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "size" | "type" | "tag">;
|
|
16
|
-
$attrs: {
|
|
17
|
-
[x: string]: unknown;
|
|
18
|
-
};
|
|
19
|
-
$refs: {
|
|
20
|
-
[x: string]: unknown;
|
|
21
|
-
};
|
|
22
|
-
$slots: Readonly<{
|
|
23
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
24
|
-
}> & {
|
|
25
|
-
default?: (props: {}) => any;
|
|
26
|
-
};
|
|
27
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
28
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
29
|
-
$host: Element | null;
|
|
30
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
31
|
-
$el: any;
|
|
32
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
33
|
-
size: {
|
|
34
|
-
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
35
|
-
default: string;
|
|
36
|
-
};
|
|
37
|
-
type: {
|
|
38
|
-
type: import('vue').PropType<"" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
39
|
-
default: string;
|
|
40
|
-
};
|
|
41
|
-
tag: {
|
|
42
|
-
type: import('vue').PropType<string>;
|
|
43
|
-
default: string;
|
|
44
|
-
};
|
|
45
|
-
truncated: {
|
|
46
|
-
type: import('vue').PropType<boolean>;
|
|
47
|
-
};
|
|
48
|
-
lineClamp: {
|
|
49
|
-
type: import('vue').PropType<string | number>;
|
|
50
|
-
};
|
|
51
|
-
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
52
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
53
|
-
size: import('element-plus').ComponentSize;
|
|
54
|
-
tag: string;
|
|
55
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
56
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
57
|
-
created?: (() => void) | (() => void)[];
|
|
58
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
59
|
-
mounted?: (() => void) | (() => void)[];
|
|
60
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
61
|
-
updated?: (() => void) | (() => void)[];
|
|
62
|
-
activated?: (() => void) | (() => void)[];
|
|
63
|
-
deactivated?: (() => void) | (() => void)[];
|
|
64
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
65
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
66
|
-
destroyed?: (() => void) | (() => void)[];
|
|
67
|
-
unmounted?: (() => void) | (() => void)[];
|
|
68
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
69
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
70
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
71
|
-
};
|
|
72
|
-
$forceUpdate: () => void;
|
|
73
|
-
$nextTick: typeof import('vue').nextTick;
|
|
74
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
75
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
76
|
-
size: import('element-plus').ComponentSize;
|
|
77
|
-
tag: string;
|
|
78
|
-
truncated?: boolean;
|
|
79
|
-
lineClamp?: number | string;
|
|
80
|
-
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
81
|
-
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
82
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
83
3
|
elRef: ({
|
|
84
4
|
$: import('vue').ComponentInternalInstance;
|
|
85
5
|
$data: {};
|
|
@@ -186,171 +106,11 @@ export declare const FcText: {
|
|
|
186
106
|
C: {};
|
|
187
107
|
M: {};
|
|
188
108
|
Defaults: {};
|
|
189
|
-
}, Readonly<{}> & Readonly<{}>, {
|
|
190
|
-
$: import('vue').ComponentInternalInstance;
|
|
191
|
-
$data: {};
|
|
192
|
-
$props: Partial<{
|
|
193
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
194
|
-
size: import('element-plus').ComponentSize;
|
|
195
|
-
tag: string;
|
|
196
|
-
}> & Omit<{
|
|
197
|
-
readonly size: import('element-plus').ComponentSize;
|
|
198
|
-
readonly type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
199
|
-
readonly tag: string;
|
|
200
|
-
readonly truncated?: boolean | undefined;
|
|
201
|
-
readonly lineClamp?: number | string | undefined;
|
|
202
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "size" | "type" | "tag">;
|
|
203
|
-
$attrs: {
|
|
204
|
-
[x: string]: unknown;
|
|
205
|
-
};
|
|
206
|
-
$refs: {
|
|
207
|
-
[x: string]: unknown;
|
|
208
|
-
};
|
|
209
|
-
$slots: Readonly<{
|
|
210
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
211
|
-
}> & {
|
|
212
|
-
default?: (props: {}) => any;
|
|
213
|
-
};
|
|
214
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
215
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
216
|
-
$host: Element | null;
|
|
217
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
218
|
-
$el: any;
|
|
219
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
220
|
-
size: {
|
|
221
|
-
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
222
|
-
default: string;
|
|
223
|
-
};
|
|
224
|
-
type: {
|
|
225
|
-
type: import('vue').PropType<"" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
226
|
-
default: string;
|
|
227
|
-
};
|
|
228
|
-
tag: {
|
|
229
|
-
type: import('vue').PropType<string>;
|
|
230
|
-
default: string;
|
|
231
|
-
};
|
|
232
|
-
truncated: {
|
|
233
|
-
type: import('vue').PropType<boolean>;
|
|
234
|
-
};
|
|
235
|
-
lineClamp: {
|
|
236
|
-
type: import('vue').PropType<string | number>;
|
|
237
|
-
};
|
|
238
|
-
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
239
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
240
|
-
size: import('element-plus').ComponentSize;
|
|
241
|
-
tag: string;
|
|
242
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
243
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
244
|
-
created?: (() => void) | (() => void)[];
|
|
245
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
246
|
-
mounted?: (() => void) | (() => void)[];
|
|
247
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
248
|
-
updated?: (() => void) | (() => void)[];
|
|
249
|
-
activated?: (() => void) | (() => void)[];
|
|
250
|
-
deactivated?: (() => void) | (() => void)[];
|
|
251
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
252
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
253
|
-
destroyed?: (() => void) | (() => void)[];
|
|
254
|
-
unmounted?: (() => void) | (() => void)[];
|
|
255
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
256
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
257
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
258
|
-
};
|
|
259
|
-
$forceUpdate: () => void;
|
|
260
|
-
$nextTick: typeof import('vue').nextTick;
|
|
261
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
262
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
263
|
-
size: import('element-plus').ComponentSize;
|
|
264
|
-
tag: string;
|
|
265
|
-
truncated?: boolean;
|
|
266
|
-
lineClamp?: number | string;
|
|
267
|
-
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
268
|
-
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
269
|
-
}, {}, {}, {}, {}>;
|
|
109
|
+
}, Readonly<{}> & Readonly<{}>, any, {}, {}, {}, {}>;
|
|
270
110
|
__isFragment?: never;
|
|
271
111
|
__isTeleport?: never;
|
|
272
112
|
__isSuspense?: never;
|
|
273
|
-
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
274
|
-
$: import('vue').ComponentInternalInstance;
|
|
275
|
-
$data: {};
|
|
276
|
-
$props: Partial<{
|
|
277
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
278
|
-
size: import('element-plus').ComponentSize;
|
|
279
|
-
tag: string;
|
|
280
|
-
}> & Omit<{
|
|
281
|
-
readonly size: import('element-plus').ComponentSize;
|
|
282
|
-
readonly type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
283
|
-
readonly tag: string;
|
|
284
|
-
readonly truncated?: boolean | undefined;
|
|
285
|
-
readonly lineClamp?: number | string | undefined;
|
|
286
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "size" | "type" | "tag">;
|
|
287
|
-
$attrs: {
|
|
288
|
-
[x: string]: unknown;
|
|
289
|
-
};
|
|
290
|
-
$refs: {
|
|
291
|
-
[x: string]: unknown;
|
|
292
|
-
};
|
|
293
|
-
$slots: Readonly<{
|
|
294
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
295
|
-
}> & {
|
|
296
|
-
default?: (props: {}) => any;
|
|
297
|
-
};
|
|
298
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
299
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
300
|
-
$host: Element | null;
|
|
301
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
302
|
-
$el: any;
|
|
303
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
304
|
-
size: {
|
|
305
|
-
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
306
|
-
default: string;
|
|
307
|
-
};
|
|
308
|
-
type: {
|
|
309
|
-
type: import('vue').PropType<"" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
310
|
-
default: string;
|
|
311
|
-
};
|
|
312
|
-
tag: {
|
|
313
|
-
type: import('vue').PropType<string>;
|
|
314
|
-
default: string;
|
|
315
|
-
};
|
|
316
|
-
truncated: {
|
|
317
|
-
type: import('vue').PropType<boolean>;
|
|
318
|
-
};
|
|
319
|
-
lineClamp: {
|
|
320
|
-
type: import('vue').PropType<string | number>;
|
|
321
|
-
};
|
|
322
|
-
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
323
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
324
|
-
size: import('element-plus').ComponentSize;
|
|
325
|
-
tag: string;
|
|
326
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
327
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
328
|
-
created?: (() => void) | (() => void)[];
|
|
329
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
330
|
-
mounted?: (() => void) | (() => void)[];
|
|
331
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
332
|
-
updated?: (() => void) | (() => void)[];
|
|
333
|
-
activated?: (() => void) | (() => void)[];
|
|
334
|
-
deactivated?: (() => void) | (() => void)[];
|
|
335
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
336
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
337
|
-
destroyed?: (() => void) | (() => void)[];
|
|
338
|
-
unmounted?: (() => void) | (() => void)[];
|
|
339
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
340
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
341
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
342
|
-
};
|
|
343
|
-
$forceUpdate: () => void;
|
|
344
|
-
$nextTick: typeof import('vue').nextTick;
|
|
345
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
346
|
-
type: "primary" | "success" | "info" | "warning" | "danger" | "";
|
|
347
|
-
size: import('element-plus').ComponentSize;
|
|
348
|
-
tag: string;
|
|
349
|
-
truncated?: boolean;
|
|
350
|
-
lineClamp?: number | string;
|
|
351
|
-
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
352
|
-
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
353
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
113
|
+
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
354
114
|
$slots: any;
|
|
355
115
|
}) & import('vue').Plugin;
|
|
356
116
|
export default FcText;
|
|
@@ -1082,6 +1082,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1082
1082
|
defaultTime?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown> | undefined;
|
|
1083
1083
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
1084
1084
|
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
1085
|
+
focus: () => void;
|
|
1086
|
+
blur: () => void;
|
|
1087
|
+
handleOpen: () => void;
|
|
1088
|
+
handleClose: () => void;
|
|
1085
1089
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
1086
1090
|
placeholder: string;
|
|
1087
1091
|
startPlaceholder: string;
|
|
@@ -594,6 +594,10 @@ export declare const FcTimePicker: {
|
|
|
594
594
|
defaultTime?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown> | undefined;
|
|
595
595
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
596
596
|
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
597
|
+
focus: () => void;
|
|
598
|
+
blur: () => void;
|
|
599
|
+
handleOpen: () => void;
|
|
600
|
+
handleClose: () => void;
|
|
597
601
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
598
602
|
placeholder: string;
|
|
599
603
|
startPlaceholder: string;
|
|
@@ -1683,6 +1687,10 @@ export declare const FcTimePicker: {
|
|
|
1683
1687
|
defaultTime?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown> | undefined;
|
|
1684
1688
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
1685
1689
|
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
1690
|
+
focus: () => void;
|
|
1691
|
+
blur: () => void;
|
|
1692
|
+
handleOpen: () => void;
|
|
1693
|
+
handleClose: () => void;
|
|
1686
1694
|
}, {}, {}, {}, {
|
|
1687
1695
|
placeholder: string;
|
|
1688
1696
|
startPlaceholder: string;
|
|
@@ -2288,6 +2296,10 @@ export declare const FcTimePicker: {
|
|
|
2288
2296
|
defaultTime?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown> | undefined;
|
|
2289
2297
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
2290
2298
|
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
2299
|
+
focus: () => void;
|
|
2300
|
+
blur: () => void;
|
|
2301
|
+
handleOpen: () => void;
|
|
2302
|
+
handleClose: () => void;
|
|
2291
2303
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
2292
2304
|
placeholder: string;
|
|
2293
2305
|
startPlaceholder: string;
|