geekplus-digital-ui 0.1.37 → 0.1.39

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.
Files changed (31) hide show
  1. package/components/copy/index.d.ts +437 -92
  2. package/components/copy/src/copy.js +29 -29
  3. package/components/copy/src/copy.vue.d.ts +182 -116
  4. package/components/copy/src/copy.vue_vue_type_style_index_0_scoped_80dabae9_lang.css +1 -0
  5. package/components/editor/index.d.ts +11 -11
  6. package/components/editor/src/code-collapse.js +14 -14
  7. package/components/editor/src/code-collapse.vue.d.ts +2 -2
  8. package/components/editor/src/{code-collapse.vue_vue_type_style_index_0_scoped_788021d6_lang.css → code-collapse.vue_vue_type_style_index_0_scoped_44e188d6_lang.css} +1 -1
  9. package/components/editor/src/editor.vue.d.ts +11 -11
  10. package/components/editor/src/editor.vue_vue_type_style_index_0_scoped_9103e51e_lang.css +1 -0
  11. package/components/editor/src/editor2.js +70 -70
  12. package/components/fold-text/index.d.ts +6 -6
  13. package/components/fold-text/src/fold-text.js +22 -22
  14. package/components/fold-text/src/fold-text.vue.d.ts +2 -2
  15. package/components/fold-text/src/fold-text.vue_vue_type_style_index_0_scoped_cc699234_lang.css +1 -0
  16. package/components/icon-tip/index.d.ts +18 -18
  17. package/components/icon-tip/src/icon-tip.vue.d.ts +6 -6
  18. package/components/inline-edit/index.d.ts +24 -24
  19. package/components/inline-edit/src/inline-edit.js +32 -32
  20. package/components/inline-edit/src/inline-edit.vue.d.ts +8 -8
  21. package/components/inline-edit/src/inline-edit.vue_vue_type_style_index_0_scoped_fc1016d4_lang.css +1 -0
  22. package/components/upload/index.d.ts +338 -280
  23. package/components/upload/src/upload.js +145 -145
  24. package/components/upload/src/upload.vue.d.ts +338 -280
  25. package/components/upload/src/upload.vue_vue_type_style_index_0_scoped_c4e16833_lang.css +1 -0
  26. package/package.json +2 -2
  27. package/components/copy/src/copy.vue_vue_type_style_index_0_scoped_e06a10af_lang.css +0 -1
  28. package/components/editor/src/editor.vue_vue_type_style_index_0_scoped_290537fe_lang.css +0 -1
  29. package/components/fold-text/src/fold-text.vue_vue_type_style_index_0_scoped_53a3b28a_lang.css +0 -1
  30. package/components/inline-edit/src/inline-edit.vue_vue_type_style_index_0_scoped_db4be4cc_lang.css +0 -1
  31. package/components/upload/src/upload.vue_vue_type_style_index_0_scoped_ddbeb9ca_lang.css +0 -1
@@ -1,78 +1,37 @@
1
1
  export const DCopy: {
2
2
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
3
- rootRef: import('vue').Ref<any, any>;
4
- handleCopy: () => void;
5
- type: string;
6
- text?: string;
7
- icon?: string;
8
- triggerElement?: string;
9
- $props: {
10
- readonly type?: string;
11
- readonly text?: string;
12
- readonly icon?: string;
13
- readonly triggerElement?: string;
14
- };
15
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
16
- rootRef: {
3
+ rootRef: Readonly<import('vue').ShallowRef<({
17
4
  $: import('vue').ComponentInternalInstance;
18
5
  $data: {};
19
- $props: Partial<{
20
- target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
21
- type: "primary" | "success" | "warning" | "info" | "danger" | "default";
22
- underline: boolean | "always" | "never" | "hover";
23
- href: string;
24
- }> & Omit<{
25
- readonly href: string;
26
- readonly target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
27
- readonly type?: "primary" | "success" | "warning" | "info" | "danger" | "default";
28
- readonly icon?: unknown;
29
- readonly underline?: boolean | "always" | "never" | "hover";
30
- readonly disabled?: boolean;
31
- onClick?: ((evt: MouseEvent) => any) | undefined;
32
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "underline" | "href" | "target">;
6
+ $props: {
7
+ readonly type?: "primary" | "success" | "warning" | "info" | "danger" | "default" | undefined;
8
+ readonly underline?: boolean | "always" | "never" | "hover" | undefined;
9
+ readonly disabled?: boolean | undefined;
10
+ readonly href?: string | undefined;
11
+ readonly target?: ("_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>)) | undefined;
12
+ readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
13
+ readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
14
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
33
15
  $attrs: import('vue').Attrs;
34
16
  $refs: {
35
17
  [x: string]: unknown;
36
18
  };
37
19
  $slots: Readonly<{
38
- [name: string]: import('vue').Slot<any>;
20
+ [name: string]: import('vue').Slot<any> | undefined;
39
21
  }>;
40
22
  $root: import('vue').ComponentPublicInstance | null;
41
23
  $parent: import('vue').ComponentPublicInstance | null;
42
24
  $host: Element | null;
43
25
  $emit: (event: "click", evt: MouseEvent) => void;
44
26
  $el: any;
45
- $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
46
- type: {
47
- type: import('vue').PropType<"default" | "primary" | "success" | "warning" | "info" | "danger">;
48
- default: undefined;
49
- };
50
- icon: {
51
- type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
52
- };
53
- underline: {
54
- type: import('vue').PropType<boolean | "always" | "never" | "hover">;
55
- default: undefined;
56
- };
57
- disabled: {
58
- type: import('vue').PropType<boolean>;
59
- };
60
- href: {
61
- type: import('vue').PropType<string>;
62
- default: string;
63
- };
64
- target: {
65
- type: import('vue').PropType<"_blank" | "_parent" | "_self" | "_top" | (string & {})>;
66
- default: string;
67
- };
68
- }>> & {
27
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').LinkProps> & Readonly<{
69
28
  onClick?: ((evt: MouseEvent) => any) | undefined;
70
- }, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
71
30
  click: (evt: MouseEvent) => void;
72
31
  }, string, {
73
- target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
74
32
  type: "primary" | "success" | "warning" | "info" | "danger" | "default";
75
33
  underline: boolean | "always" | "never" | "hover";
34
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
76
35
  href: string;
77
36
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
78
37
  beforeCreate?: (() => void) | (() => void)[];
@@ -95,42 +54,164 @@ export const DCopy: {
95
54
  $nextTick: typeof import('vue').nextTick;
96
55
  $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;
97
56
  } & Readonly<{
98
- target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
99
57
  type: "primary" | "success" | "warning" | "info" | "danger" | "default";
100
58
  underline: boolean | "always" | "never" | "hover";
59
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
101
60
  href: string;
102
- }> & Omit<Readonly<import('vue').ExtractPropTypes<{
103
- type: {
104
- type: import('vue').PropType<"default" | "primary" | "success" | "warning" | "info" | "danger">;
105
- default: undefined;
61
+ }> & Omit<Readonly<import('element-plus').LinkProps> & Readonly<{
62
+ onClick?: ((evt: MouseEvent) => any) | undefined;
63
+ }>, "type" | "underline" | "href" | "target"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
64
+ $slots: {
65
+ default?: (props: {}) => any;
66
+ } & {
67
+ icon?: (props: {}) => any;
106
68
  };
107
- icon: {
108
- type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
69
+ }) | null, ({
70
+ $: import('vue').ComponentInternalInstance;
71
+ $data: {};
72
+ $props: {
73
+ readonly type?: "primary" | "success" | "warning" | "info" | "danger" | "default" | undefined;
74
+ readonly underline?: boolean | "always" | "never" | "hover" | undefined;
75
+ readonly disabled?: boolean | undefined;
76
+ readonly href?: string | undefined;
77
+ readonly target?: ("_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>)) | undefined;
78
+ readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
79
+ readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
80
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
81
+ $attrs: import('vue').Attrs;
82
+ $refs: {
83
+ [x: string]: unknown;
109
84
  };
110
- underline: {
111
- type: import('vue').PropType<boolean | "always" | "never" | "hover">;
112
- default: undefined;
85
+ $slots: Readonly<{
86
+ [name: string]: import('vue').Slot<any> | undefined;
87
+ }>;
88
+ $root: import('vue').ComponentPublicInstance | null;
89
+ $parent: import('vue').ComponentPublicInstance | null;
90
+ $host: Element | null;
91
+ $emit: (event: "click", evt: MouseEvent) => void;
92
+ $el: any;
93
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').LinkProps> & Readonly<{
94
+ onClick?: ((evt: MouseEvent) => any) | undefined;
95
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
96
+ click: (evt: MouseEvent) => void;
97
+ }, string, {
98
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
99
+ underline: boolean | "always" | "never" | "hover";
100
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
101
+ href: string;
102
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
103
+ beforeCreate?: (() => void) | (() => void)[];
104
+ created?: (() => void) | (() => void)[];
105
+ beforeMount?: (() => void) | (() => void)[];
106
+ mounted?: (() => void) | (() => void)[];
107
+ beforeUpdate?: (() => void) | (() => void)[];
108
+ updated?: (() => void) | (() => void)[];
109
+ activated?: (() => void) | (() => void)[];
110
+ deactivated?: (() => void) | (() => void)[];
111
+ beforeDestroy?: (() => void) | (() => void)[];
112
+ beforeUnmount?: (() => void) | (() => void)[];
113
+ destroyed?: (() => void) | (() => void)[];
114
+ unmounted?: (() => void) | (() => void)[];
115
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
116
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
117
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
113
118
  };
114
- disabled: {
115
- type: import('vue').PropType<boolean>;
119
+ $forceUpdate: () => void;
120
+ $nextTick: typeof import('vue').nextTick;
121
+ $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;
122
+ } & Readonly<{
123
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
124
+ underline: boolean | "always" | "never" | "hover";
125
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
126
+ href: string;
127
+ }> & Omit<Readonly<import('element-plus').LinkProps> & Readonly<{
128
+ onClick?: ((evt: MouseEvent) => any) | undefined;
129
+ }>, "type" | "underline" | "href" | "target"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
130
+ $slots: {
131
+ default?: (props: {}) => any;
132
+ } & {
133
+ icon?: (props: {}) => any;
116
134
  };
117
- href: {
118
- type: import('vue').PropType<string>;
119
- default: string;
135
+ }) | null>>;
136
+ handleCopy: () => void;
137
+ type: string;
138
+ text?: string | undefined;
139
+ icon?: string | undefined;
140
+ triggerElement?: string | undefined;
141
+ $props: {
142
+ readonly type?: string | undefined;
143
+ readonly text?: string | undefined;
144
+ readonly icon?: string | undefined;
145
+ readonly triggerElement?: string | undefined;
146
+ };
147
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
148
+ rootRef: ({
149
+ $: import('vue').ComponentInternalInstance;
150
+ $data: {};
151
+ $props: {
152
+ readonly type?: "primary" | "success" | "warning" | "info" | "danger" | "default" | undefined;
153
+ readonly underline?: boolean | "always" | "never" | "hover" | undefined;
154
+ readonly disabled?: boolean | undefined;
155
+ readonly href?: string | undefined;
156
+ readonly target?: ("_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>)) | undefined;
157
+ readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
158
+ readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
159
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
160
+ $attrs: import('vue').Attrs;
161
+ $refs: {
162
+ [x: string]: unknown;
120
163
  };
121
- target: {
122
- type: import('vue').PropType<"_blank" | "_parent" | "_self" | "_top" | (string & {})>;
123
- default: string;
164
+ $slots: Readonly<{
165
+ [name: string]: import('vue').Slot<any> | undefined;
166
+ }>;
167
+ $root: import('vue').ComponentPublicInstance | null;
168
+ $parent: import('vue').ComponentPublicInstance | null;
169
+ $host: Element | null;
170
+ $emit: (event: "click", evt: MouseEvent) => void;
171
+ $el: any;
172
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').LinkProps> & Readonly<{
173
+ onClick?: ((evt: MouseEvent) => any) | undefined;
174
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
175
+ click: (evt: MouseEvent) => void;
176
+ }, string, {
177
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
178
+ underline: boolean | "always" | "never" | "hover";
179
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
180
+ href: string;
181
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
182
+ beforeCreate?: (() => void) | (() => void)[];
183
+ created?: (() => void) | (() => void)[];
184
+ beforeMount?: (() => void) | (() => void)[];
185
+ mounted?: (() => void) | (() => void)[];
186
+ beforeUpdate?: (() => void) | (() => void)[];
187
+ updated?: (() => void) | (() => void)[];
188
+ activated?: (() => void) | (() => void)[];
189
+ deactivated?: (() => void) | (() => void)[];
190
+ beforeDestroy?: (() => void) | (() => void)[];
191
+ beforeUnmount?: (() => void) | (() => void)[];
192
+ destroyed?: (() => void) | (() => void)[];
193
+ unmounted?: (() => void) | (() => void)[];
194
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
195
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
196
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
124
197
  };
125
- }>> & {
198
+ $forceUpdate: () => void;
199
+ $nextTick: typeof import('vue').nextTick;
200
+ $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;
201
+ } & Readonly<{
202
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
203
+ underline: boolean | "always" | "never" | "hover";
204
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
205
+ href: string;
206
+ }> & Omit<Readonly<import('element-plus').LinkProps> & Readonly<{
126
207
  onClick?: ((evt: MouseEvent) => any) | undefined;
127
- }, "type" | "underline" | "href" | "target"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
208
+ }>, "type" | "underline" | "href" | "target"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
128
209
  $slots: {
129
210
  default?: (props: {}) => any;
130
211
  } & {
131
212
  icon?: (props: {}) => any;
132
213
  };
133
- };
214
+ }) | null;
134
215
  }, any, import('vue').ComponentProvideOptions, {
135
216
  P: {};
136
217
  B: {};
@@ -139,34 +220,298 @@ export const DCopy: {
139
220
  M: {};
140
221
  Defaults: {};
141
222
  }, Readonly<{}> & Readonly<{}>, {
142
- rootRef: import('vue').Ref<any, any>;
223
+ rootRef: Readonly<import('vue').ShallowRef<({
224
+ $: import('vue').ComponentInternalInstance;
225
+ $data: {};
226
+ $props: {
227
+ readonly type?: "primary" | "success" | "warning" | "info" | "danger" | "default" | undefined;
228
+ readonly underline?: boolean | "always" | "never" | "hover" | undefined;
229
+ readonly disabled?: boolean | undefined;
230
+ readonly href?: string | undefined;
231
+ readonly target?: ("_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>)) | undefined;
232
+ readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
233
+ readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
234
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
235
+ $attrs: import('vue').Attrs;
236
+ $refs: {
237
+ [x: string]: unknown;
238
+ };
239
+ $slots: Readonly<{
240
+ [name: string]: import('vue').Slot<any> | undefined;
241
+ }>;
242
+ $root: import('vue').ComponentPublicInstance | null;
243
+ $parent: import('vue').ComponentPublicInstance | null;
244
+ $host: Element | null;
245
+ $emit: (event: "click", evt: MouseEvent) => void;
246
+ $el: any;
247
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').LinkProps> & Readonly<{
248
+ onClick?: ((evt: MouseEvent) => any) | undefined;
249
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
250
+ click: (evt: MouseEvent) => void;
251
+ }, string, {
252
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
253
+ underline: boolean | "always" | "never" | "hover";
254
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
255
+ href: string;
256
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
257
+ beforeCreate?: (() => void) | (() => void)[];
258
+ created?: (() => void) | (() => void)[];
259
+ beforeMount?: (() => void) | (() => void)[];
260
+ mounted?: (() => void) | (() => void)[];
261
+ beforeUpdate?: (() => void) | (() => void)[];
262
+ updated?: (() => void) | (() => void)[];
263
+ activated?: (() => void) | (() => void)[];
264
+ deactivated?: (() => void) | (() => void)[];
265
+ beforeDestroy?: (() => void) | (() => void)[];
266
+ beforeUnmount?: (() => void) | (() => void)[];
267
+ destroyed?: (() => void) | (() => void)[];
268
+ unmounted?: (() => void) | (() => void)[];
269
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
270
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
271
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
272
+ };
273
+ $forceUpdate: () => void;
274
+ $nextTick: typeof import('vue').nextTick;
275
+ $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;
276
+ } & Readonly<{
277
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
278
+ underline: boolean | "always" | "never" | "hover";
279
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
280
+ href: string;
281
+ }> & Omit<Readonly<import('element-plus').LinkProps> & Readonly<{
282
+ onClick?: ((evt: MouseEvent) => any) | undefined;
283
+ }>, "type" | "underline" | "href" | "target"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
284
+ $slots: {
285
+ default?: (props: {}) => any;
286
+ } & {
287
+ icon?: (props: {}) => any;
288
+ };
289
+ }) | null, ({
290
+ $: import('vue').ComponentInternalInstance;
291
+ $data: {};
292
+ $props: {
293
+ readonly type?: "primary" | "success" | "warning" | "info" | "danger" | "default" | undefined;
294
+ readonly underline?: boolean | "always" | "never" | "hover" | undefined;
295
+ readonly disabled?: boolean | undefined;
296
+ readonly href?: string | undefined;
297
+ readonly target?: ("_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>)) | undefined;
298
+ readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
299
+ readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
300
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
301
+ $attrs: import('vue').Attrs;
302
+ $refs: {
303
+ [x: string]: unknown;
304
+ };
305
+ $slots: Readonly<{
306
+ [name: string]: import('vue').Slot<any> | undefined;
307
+ }>;
308
+ $root: import('vue').ComponentPublicInstance | null;
309
+ $parent: import('vue').ComponentPublicInstance | null;
310
+ $host: Element | null;
311
+ $emit: (event: "click", evt: MouseEvent) => void;
312
+ $el: any;
313
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').LinkProps> & Readonly<{
314
+ onClick?: ((evt: MouseEvent) => any) | undefined;
315
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
316
+ click: (evt: MouseEvent) => void;
317
+ }, string, {
318
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
319
+ underline: boolean | "always" | "never" | "hover";
320
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
321
+ href: string;
322
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
323
+ beforeCreate?: (() => void) | (() => void)[];
324
+ created?: (() => void) | (() => void)[];
325
+ beforeMount?: (() => void) | (() => void)[];
326
+ mounted?: (() => void) | (() => void)[];
327
+ beforeUpdate?: (() => void) | (() => void)[];
328
+ updated?: (() => void) | (() => void)[];
329
+ activated?: (() => void) | (() => void)[];
330
+ deactivated?: (() => void) | (() => void)[];
331
+ beforeDestroy?: (() => void) | (() => void)[];
332
+ beforeUnmount?: (() => void) | (() => void)[];
333
+ destroyed?: (() => void) | (() => void)[];
334
+ unmounted?: (() => void) | (() => void)[];
335
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
336
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
337
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
338
+ };
339
+ $forceUpdate: () => void;
340
+ $nextTick: typeof import('vue').nextTick;
341
+ $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;
342
+ } & Readonly<{
343
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
344
+ underline: boolean | "always" | "never" | "hover";
345
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
346
+ href: string;
347
+ }> & Omit<Readonly<import('element-plus').LinkProps> & Readonly<{
348
+ onClick?: ((evt: MouseEvent) => any) | undefined;
349
+ }>, "type" | "underline" | "href" | "target"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
350
+ $slots: {
351
+ default?: (props: {}) => any;
352
+ } & {
353
+ icon?: (props: {}) => any;
354
+ };
355
+ }) | null>>;
143
356
  handleCopy: () => void;
144
357
  type: string;
145
- text?: string;
146
- icon?: string;
147
- triggerElement?: string;
358
+ text?: string | undefined;
359
+ icon?: string | undefined;
360
+ triggerElement?: string | undefined;
148
361
  $props: {
149
- readonly type?: string;
150
- readonly text?: string;
151
- readonly icon?: string;
152
- readonly triggerElement?: string;
362
+ readonly type?: string | undefined;
363
+ readonly text?: string | undefined;
364
+ readonly icon?: string | undefined;
365
+ readonly triggerElement?: string | undefined;
153
366
  };
154
367
  }, {}, {}, {}, {}>;
155
368
  __isFragment?: never;
156
369
  __isTeleport?: never;
157
370
  __isSuspense?: never;
158
371
  } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
159
- rootRef: import('vue').Ref<any, any>;
372
+ rootRef: Readonly<import('vue').ShallowRef<({
373
+ $: import('vue').ComponentInternalInstance;
374
+ $data: {};
375
+ $props: {
376
+ readonly type?: "primary" | "success" | "warning" | "info" | "danger" | "default" | undefined;
377
+ readonly underline?: boolean | "always" | "never" | "hover" | undefined;
378
+ readonly disabled?: boolean | undefined;
379
+ readonly href?: string | undefined;
380
+ readonly target?: ("_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>)) | undefined;
381
+ readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
382
+ readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
383
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
384
+ $attrs: import('vue').Attrs;
385
+ $refs: {
386
+ [x: string]: unknown;
387
+ };
388
+ $slots: Readonly<{
389
+ [name: string]: import('vue').Slot<any> | undefined;
390
+ }>;
391
+ $root: import('vue').ComponentPublicInstance | null;
392
+ $parent: import('vue').ComponentPublicInstance | null;
393
+ $host: Element | null;
394
+ $emit: (event: "click", evt: MouseEvent) => void;
395
+ $el: any;
396
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').LinkProps> & Readonly<{
397
+ onClick?: ((evt: MouseEvent) => any) | undefined;
398
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
399
+ click: (evt: MouseEvent) => void;
400
+ }, string, {
401
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
402
+ underline: boolean | "always" | "never" | "hover";
403
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
404
+ href: string;
405
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
406
+ beforeCreate?: (() => void) | (() => void)[];
407
+ created?: (() => void) | (() => void)[];
408
+ beforeMount?: (() => void) | (() => void)[];
409
+ mounted?: (() => void) | (() => void)[];
410
+ beforeUpdate?: (() => void) | (() => void)[];
411
+ updated?: (() => void) | (() => void)[];
412
+ activated?: (() => void) | (() => void)[];
413
+ deactivated?: (() => void) | (() => void)[];
414
+ beforeDestroy?: (() => void) | (() => void)[];
415
+ beforeUnmount?: (() => void) | (() => void)[];
416
+ destroyed?: (() => void) | (() => void)[];
417
+ unmounted?: (() => void) | (() => void)[];
418
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
419
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
420
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
421
+ };
422
+ $forceUpdate: () => void;
423
+ $nextTick: typeof import('vue').nextTick;
424
+ $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;
425
+ } & Readonly<{
426
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
427
+ underline: boolean | "always" | "never" | "hover";
428
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
429
+ href: string;
430
+ }> & Omit<Readonly<import('element-plus').LinkProps> & Readonly<{
431
+ onClick?: ((evt: MouseEvent) => any) | undefined;
432
+ }>, "type" | "underline" | "href" | "target"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
433
+ $slots: {
434
+ default?: (props: {}) => any;
435
+ } & {
436
+ icon?: (props: {}) => any;
437
+ };
438
+ }) | null, ({
439
+ $: import('vue').ComponentInternalInstance;
440
+ $data: {};
441
+ $props: {
442
+ readonly type?: "primary" | "success" | "warning" | "info" | "danger" | "default" | undefined;
443
+ readonly underline?: boolean | "always" | "never" | "hover" | undefined;
444
+ readonly disabled?: boolean | undefined;
445
+ readonly href?: string | undefined;
446
+ readonly target?: ("_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>)) | undefined;
447
+ readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
448
+ readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
449
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
450
+ $attrs: import('vue').Attrs;
451
+ $refs: {
452
+ [x: string]: unknown;
453
+ };
454
+ $slots: Readonly<{
455
+ [name: string]: import('vue').Slot<any> | undefined;
456
+ }>;
457
+ $root: import('vue').ComponentPublicInstance | null;
458
+ $parent: import('vue').ComponentPublicInstance | null;
459
+ $host: Element | null;
460
+ $emit: (event: "click", evt: MouseEvent) => void;
461
+ $el: any;
462
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').LinkProps> & Readonly<{
463
+ onClick?: ((evt: MouseEvent) => any) | undefined;
464
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
465
+ click: (evt: MouseEvent) => void;
466
+ }, string, {
467
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
468
+ underline: boolean | "always" | "never" | "hover";
469
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
470
+ href: string;
471
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
472
+ beforeCreate?: (() => void) | (() => void)[];
473
+ created?: (() => void) | (() => void)[];
474
+ beforeMount?: (() => void) | (() => void)[];
475
+ mounted?: (() => void) | (() => void)[];
476
+ beforeUpdate?: (() => void) | (() => void)[];
477
+ updated?: (() => void) | (() => void)[];
478
+ activated?: (() => void) | (() => void)[];
479
+ deactivated?: (() => void) | (() => void)[];
480
+ beforeDestroy?: (() => void) | (() => void)[];
481
+ beforeUnmount?: (() => void) | (() => void)[];
482
+ destroyed?: (() => void) | (() => void)[];
483
+ unmounted?: (() => void) | (() => void)[];
484
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
485
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
486
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
487
+ };
488
+ $forceUpdate: () => void;
489
+ $nextTick: typeof import('vue').nextTick;
490
+ $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;
491
+ } & Readonly<{
492
+ type: "primary" | "success" | "warning" | "info" | "danger" | "default";
493
+ underline: boolean | "always" | "never" | "hover";
494
+ target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
495
+ href: string;
496
+ }> & Omit<Readonly<import('element-plus').LinkProps> & Readonly<{
497
+ onClick?: ((evt: MouseEvent) => any) | undefined;
498
+ }>, "type" | "underline" | "href" | "target"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
499
+ $slots: {
500
+ default?: (props: {}) => any;
501
+ } & {
502
+ icon?: (props: {}) => any;
503
+ };
504
+ }) | null>>;
160
505
  handleCopy: () => void;
161
506
  type: string;
162
- text?: string;
163
- icon?: string;
164
- triggerElement?: string;
507
+ text?: string | undefined;
508
+ icon?: string | undefined;
509
+ triggerElement?: string | undefined;
165
510
  $props: {
166
- readonly type?: string;
167
- readonly text?: string;
168
- readonly icon?: string;
169
- readonly triggerElement?: string;
511
+ readonly type?: string | undefined;
512
+ readonly text?: string | undefined;
513
+ readonly icon?: string | undefined;
514
+ readonly triggerElement?: string | undefined;
170
515
  };
171
516
  }, {}, {}, {}, 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 () => {
172
517
  $slots: {