x-next 0.0.0-alpha.74 → 0.0.0-alpha.76
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/_utils/config.d.ts +5 -0
- package/dist/_utils/date.d.ts +40 -0
- package/dist/_utils/pad.d.ts +2 -0
- package/dist/components/_components/render-function/index.d.ts +14 -0
- package/dist/components/button/Button.d.ts +2 -2
- package/dist/components/button/index.d.ts +4 -4
- package/dist/components/drawer/index.d.ts +8 -8
- package/dist/components/drawer/src/Drawer.vue.d.ts +4 -4
- package/dist/components/dropdown/DropdownButton.vue.d.ts +4 -4
- package/dist/components/dropdown/index.d.ts +8 -8
- package/dist/components/form-select/Select.d.ts +5 -5
- package/dist/components/form-select/SelectDropdown.vue.d.ts +11 -11
- package/dist/components/form-textarea/Textarea.vue.d.ts +390 -0
- package/dist/components/form-textarea/index.d.ts +525 -0
- package/dist/components/form-textarea/utils.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/popconfirm/src/popup.vue.d.ts +4 -4
- package/dist/icons/_ui/alone-left.d.ts +50 -0
- package/dist/icons/_ui/alone-margin-left.d.ts +50 -0
- package/dist/icons/_ui/alone-margin-right.d.ts +50 -0
- package/dist/icons/_ui/alone-right.d.ts +50 -0
- package/dist/icons/_ui/calendar.d.ts +50 -0
- package/dist/icons/_ui/time.d.ts +50 -0
- package/dist/index.es.js +5362 -5002
- package/dist/index.umd.js +3 -2
- package/dist/style.css +1 -1
- package/dist/types.d.ts +1 -0
- package/package.json +4 -3
- package/volar.d.ts +3 -0
- /package/dist/_container/{resize-observer-2.d.ts → resize-observer-v2.d.ts} +0 -0
@@ -0,0 +1,525 @@
|
|
1
|
+
export declare const Textarea: {
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
3
|
+
modelValue: StringConstructor;
|
4
|
+
defaultValue: {
|
5
|
+
type: StringConstructor;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
placeholder: StringConstructor;
|
9
|
+
disabled: {
|
10
|
+
type: BooleanConstructor;
|
11
|
+
default: boolean;
|
12
|
+
};
|
13
|
+
error: {
|
14
|
+
type: BooleanConstructor;
|
15
|
+
default: boolean;
|
16
|
+
};
|
17
|
+
maxLength: {
|
18
|
+
type: import('vue').PropType<number | {
|
19
|
+
length: number;
|
20
|
+
errorOnly?: boolean;
|
21
|
+
}>;
|
22
|
+
default: number;
|
23
|
+
};
|
24
|
+
showWordLimit: {
|
25
|
+
type: BooleanConstructor;
|
26
|
+
default: boolean;
|
27
|
+
};
|
28
|
+
allowClear: {
|
29
|
+
type: BooleanConstructor;
|
30
|
+
default: boolean;
|
31
|
+
};
|
32
|
+
autoSize: {
|
33
|
+
type: import('vue').PropType<boolean | {
|
34
|
+
minRows?: number;
|
35
|
+
maxRows?: number;
|
36
|
+
}>;
|
37
|
+
default: boolean;
|
38
|
+
};
|
39
|
+
wordLength: {
|
40
|
+
type: import('vue').PropType<(value: string) => number>;
|
41
|
+
};
|
42
|
+
wordSlice: {
|
43
|
+
type: import('vue').PropType<(value: string, maxLength: number) => string>;
|
44
|
+
};
|
45
|
+
textareaAttrs: {
|
46
|
+
type: import('vue').PropType<Record<string, any>>;
|
47
|
+
};
|
48
|
+
}>> & Readonly<{
|
49
|
+
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
50
|
+
onInput?: ((value: string, ev: Event) => any) | undefined;
|
51
|
+
onClear?: ((ev: MouseEvent) => any) | undefined;
|
52
|
+
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
53
|
+
onChange?: ((value: string, ev: Event) => any) | undefined;
|
54
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
55
|
+
}>, {
|
56
|
+
className: {
|
57
|
+
block: string;
|
58
|
+
element: (className: string) => string;
|
59
|
+
modifier: (className: string) => string;
|
60
|
+
is: (className: string) => string;
|
61
|
+
};
|
62
|
+
wrapperCls: import('vue').ComputedRef<(string | {
|
63
|
+
[x: string]: boolean;
|
64
|
+
})[]>;
|
65
|
+
textareaRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
66
|
+
textareaStyle: import('vue').Ref<import('vue').CSSProperties | undefined, import('vue').CSSProperties | undefined>;
|
67
|
+
mirrorRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
68
|
+
mirrorStyle: import('vue').Ref<import('vue').CSSProperties | undefined, import('vue').CSSProperties | undefined>;
|
69
|
+
computedValue: import('vue').ComputedRef<string>;
|
70
|
+
showClearBtn: import('vue').ComputedRef<string | false>;
|
71
|
+
valueLength: import('vue').ComputedRef<number>;
|
72
|
+
computedMaxLength: import('vue').ComputedRef<number>;
|
73
|
+
mergedDisabled: import('vue').ComputedRef<boolean>;
|
74
|
+
mergeTextareaAttrs: import('vue').ComputedRef<{
|
75
|
+
[x: string]: any;
|
76
|
+
}>;
|
77
|
+
getWrapperAttrs: (attr: Record<string, any>) => Omit<{
|
78
|
+
[x: string]: unknown;
|
79
|
+
}, string>;
|
80
|
+
getTextareaAttrs: (attr: Record<string, any>) => Pick<{
|
81
|
+
[x: string]: unknown;
|
82
|
+
}, string>;
|
83
|
+
handleInput: (e: Event) => void;
|
84
|
+
handleFocus: (ev: FocusEvent) => void;
|
85
|
+
handleBlur: (ev: FocusEvent) => void;
|
86
|
+
handleComposition: (e: CompositionEvent) => void;
|
87
|
+
handleClear: (ev: MouseEvent) => void;
|
88
|
+
handleResize: () => void;
|
89
|
+
handleMousedown: (e: MouseEvent) => void;
|
90
|
+
}, {}, {}, {
|
91
|
+
focus(): void;
|
92
|
+
blur(): void;
|
93
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
94
|
+
'update:modelValue': (value: string) => true;
|
95
|
+
input: (value: string, ev: Event) => true;
|
96
|
+
change: (value: string, ev: Event) => true;
|
97
|
+
clear: (ev: MouseEvent) => true;
|
98
|
+
focus: (ev: FocusEvent) => true;
|
99
|
+
blur: (ev: FocusEvent) => true;
|
100
|
+
}, import('vue').PublicProps, {
|
101
|
+
error: boolean;
|
102
|
+
disabled: boolean;
|
103
|
+
defaultValue: string;
|
104
|
+
maxLength: number | {
|
105
|
+
length: number;
|
106
|
+
errorOnly?: boolean;
|
107
|
+
};
|
108
|
+
allowClear: boolean;
|
109
|
+
showWordLimit: boolean;
|
110
|
+
autoSize: boolean | {
|
111
|
+
minRows?: number;
|
112
|
+
maxRows?: number;
|
113
|
+
};
|
114
|
+
}, true, {}, {}, {
|
115
|
+
ResizeObserver: import('vue').DefineComponent<{}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
116
|
+
[key: string]: any;
|
117
|
+
}>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "resize"[], "resize", import('vue').PublicProps, Readonly<{}> & Readonly<{
|
118
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
119
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
120
|
+
IconHover: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
121
|
+
prefix: {
|
122
|
+
type: StringConstructor;
|
123
|
+
};
|
124
|
+
size: {
|
125
|
+
type: import('vue').PropType<"mini" | "small" | "medium" | "large" | "huge">;
|
126
|
+
default: string;
|
127
|
+
};
|
128
|
+
disabled: {
|
129
|
+
type: BooleanConstructor;
|
130
|
+
default: boolean;
|
131
|
+
};
|
132
|
+
}>, {
|
133
|
+
className: {
|
134
|
+
block: string;
|
135
|
+
element: (className: string) => string;
|
136
|
+
modifier: (className: string) => string;
|
137
|
+
is: (className: string) => string;
|
138
|
+
};
|
139
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
140
|
+
prefix: {
|
141
|
+
type: StringConstructor;
|
142
|
+
};
|
143
|
+
size: {
|
144
|
+
type: import('vue').PropType<"mini" | "small" | "medium" | "large" | "huge">;
|
145
|
+
default: string;
|
146
|
+
};
|
147
|
+
disabled: {
|
148
|
+
type: BooleanConstructor;
|
149
|
+
default: boolean;
|
150
|
+
};
|
151
|
+
}>> & Readonly<{}>, {
|
152
|
+
size: "mini" | "small" | "medium" | "large" | "huge";
|
153
|
+
disabled: boolean;
|
154
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
155
|
+
IconClose: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
156
|
+
size: {
|
157
|
+
type: (StringConstructor | NumberConstructor)[];
|
158
|
+
default: undefined;
|
159
|
+
};
|
160
|
+
rotate: {
|
161
|
+
type: NumberConstructor;
|
162
|
+
default: undefined;
|
163
|
+
};
|
164
|
+
spin: {
|
165
|
+
type: BooleanConstructor;
|
166
|
+
default: boolean;
|
167
|
+
};
|
168
|
+
color: {
|
169
|
+
type: StringConstructor;
|
170
|
+
default: undefined;
|
171
|
+
};
|
172
|
+
fillColor: {
|
173
|
+
type: ArrayConstructor;
|
174
|
+
default: undefined;
|
175
|
+
};
|
176
|
+
}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
177
|
+
size: {
|
178
|
+
type: (StringConstructor | NumberConstructor)[];
|
179
|
+
default: undefined;
|
180
|
+
};
|
181
|
+
rotate: {
|
182
|
+
type: NumberConstructor;
|
183
|
+
default: undefined;
|
184
|
+
};
|
185
|
+
spin: {
|
186
|
+
type: BooleanConstructor;
|
187
|
+
default: boolean;
|
188
|
+
};
|
189
|
+
color: {
|
190
|
+
type: StringConstructor;
|
191
|
+
default: undefined;
|
192
|
+
};
|
193
|
+
fillColor: {
|
194
|
+
type: ArrayConstructor;
|
195
|
+
default: undefined;
|
196
|
+
};
|
197
|
+
}>> & Readonly<{}>, {
|
198
|
+
size: string | number;
|
199
|
+
rotate: number;
|
200
|
+
spin: boolean;
|
201
|
+
color: string;
|
202
|
+
fillColor: unknown[];
|
203
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
204
|
+
} & import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
205
|
+
P: {};
|
206
|
+
B: {};
|
207
|
+
D: {};
|
208
|
+
C: {};
|
209
|
+
M: {};
|
210
|
+
Defaults: {};
|
211
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
212
|
+
modelValue: StringConstructor;
|
213
|
+
defaultValue: {
|
214
|
+
type: StringConstructor;
|
215
|
+
default: string;
|
216
|
+
};
|
217
|
+
placeholder: StringConstructor;
|
218
|
+
disabled: {
|
219
|
+
type: BooleanConstructor;
|
220
|
+
default: boolean;
|
221
|
+
};
|
222
|
+
error: {
|
223
|
+
type: BooleanConstructor;
|
224
|
+
default: boolean;
|
225
|
+
};
|
226
|
+
maxLength: {
|
227
|
+
type: import('vue').PropType<number | {
|
228
|
+
length: number;
|
229
|
+
errorOnly?: boolean;
|
230
|
+
}>;
|
231
|
+
default: number;
|
232
|
+
};
|
233
|
+
showWordLimit: {
|
234
|
+
type: BooleanConstructor;
|
235
|
+
default: boolean;
|
236
|
+
};
|
237
|
+
allowClear: {
|
238
|
+
type: BooleanConstructor;
|
239
|
+
default: boolean;
|
240
|
+
};
|
241
|
+
autoSize: {
|
242
|
+
type: import('vue').PropType<boolean | {
|
243
|
+
minRows?: number;
|
244
|
+
maxRows?: number;
|
245
|
+
}>;
|
246
|
+
default: boolean;
|
247
|
+
};
|
248
|
+
wordLength: {
|
249
|
+
type: import('vue').PropType<(value: string) => number>;
|
250
|
+
};
|
251
|
+
wordSlice: {
|
252
|
+
type: import('vue').PropType<(value: string, maxLength: number) => string>;
|
253
|
+
};
|
254
|
+
textareaAttrs: {
|
255
|
+
type: import('vue').PropType<Record<string, any>>;
|
256
|
+
};
|
257
|
+
}>> & Readonly<{
|
258
|
+
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
259
|
+
onInput?: ((value: string, ev: Event) => any) | undefined;
|
260
|
+
onClear?: ((ev: MouseEvent) => any) | undefined;
|
261
|
+
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
262
|
+
onChange?: ((value: string, ev: Event) => any) | undefined;
|
263
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
264
|
+
}>, {
|
265
|
+
className: {
|
266
|
+
block: string;
|
267
|
+
element: (className: string) => string;
|
268
|
+
modifier: (className: string) => string;
|
269
|
+
is: (className: string) => string;
|
270
|
+
};
|
271
|
+
wrapperCls: import('vue').ComputedRef<(string | {
|
272
|
+
[x: string]: boolean;
|
273
|
+
})[]>;
|
274
|
+
textareaRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
275
|
+
textareaStyle: import('vue').Ref<import('vue').CSSProperties | undefined, import('vue').CSSProperties | undefined>;
|
276
|
+
mirrorRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
277
|
+
mirrorStyle: import('vue').Ref<import('vue').CSSProperties | undefined, import('vue').CSSProperties | undefined>;
|
278
|
+
computedValue: import('vue').ComputedRef<string>;
|
279
|
+
showClearBtn: import('vue').ComputedRef<string | false>;
|
280
|
+
valueLength: import('vue').ComputedRef<number>;
|
281
|
+
computedMaxLength: import('vue').ComputedRef<number>;
|
282
|
+
mergedDisabled: import('vue').ComputedRef<boolean>;
|
283
|
+
mergeTextareaAttrs: import('vue').ComputedRef<{
|
284
|
+
[x: string]: any;
|
285
|
+
}>;
|
286
|
+
getWrapperAttrs: (attr: Record<string, any>) => Omit<{
|
287
|
+
[x: string]: unknown;
|
288
|
+
}, string>;
|
289
|
+
getTextareaAttrs: (attr: Record<string, any>) => Pick<{
|
290
|
+
[x: string]: unknown;
|
291
|
+
}, string>;
|
292
|
+
handleInput: (e: Event) => void;
|
293
|
+
handleFocus: (ev: FocusEvent) => void;
|
294
|
+
handleBlur: (ev: FocusEvent) => void;
|
295
|
+
handleComposition: (e: CompositionEvent) => void;
|
296
|
+
handleClear: (ev: MouseEvent) => void;
|
297
|
+
handleResize: () => void;
|
298
|
+
handleMousedown: (e: MouseEvent) => void;
|
299
|
+
}, {}, {}, {
|
300
|
+
focus(): void;
|
301
|
+
blur(): void;
|
302
|
+
}, {
|
303
|
+
error: boolean;
|
304
|
+
disabled: boolean;
|
305
|
+
defaultValue: string;
|
306
|
+
maxLength: number | {
|
307
|
+
length: number;
|
308
|
+
errorOnly?: boolean;
|
309
|
+
};
|
310
|
+
allowClear: boolean;
|
311
|
+
showWordLimit: boolean;
|
312
|
+
autoSize: boolean | {
|
313
|
+
minRows?: number;
|
314
|
+
maxRows?: number;
|
315
|
+
};
|
316
|
+
}>;
|
317
|
+
__isFragment?: never;
|
318
|
+
__isTeleport?: never;
|
319
|
+
__isSuspense?: never;
|
320
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
321
|
+
modelValue: StringConstructor;
|
322
|
+
defaultValue: {
|
323
|
+
type: StringConstructor;
|
324
|
+
default: string;
|
325
|
+
};
|
326
|
+
placeholder: StringConstructor;
|
327
|
+
disabled: {
|
328
|
+
type: BooleanConstructor;
|
329
|
+
default: boolean;
|
330
|
+
};
|
331
|
+
error: {
|
332
|
+
type: BooleanConstructor;
|
333
|
+
default: boolean;
|
334
|
+
};
|
335
|
+
maxLength: {
|
336
|
+
type: import('vue').PropType<number | {
|
337
|
+
length: number;
|
338
|
+
errorOnly?: boolean;
|
339
|
+
}>;
|
340
|
+
default: number;
|
341
|
+
};
|
342
|
+
showWordLimit: {
|
343
|
+
type: BooleanConstructor;
|
344
|
+
default: boolean;
|
345
|
+
};
|
346
|
+
allowClear: {
|
347
|
+
type: BooleanConstructor;
|
348
|
+
default: boolean;
|
349
|
+
};
|
350
|
+
autoSize: {
|
351
|
+
type: import('vue').PropType<boolean | {
|
352
|
+
minRows?: number;
|
353
|
+
maxRows?: number;
|
354
|
+
}>;
|
355
|
+
default: boolean;
|
356
|
+
};
|
357
|
+
wordLength: {
|
358
|
+
type: import('vue').PropType<(value: string) => number>;
|
359
|
+
};
|
360
|
+
wordSlice: {
|
361
|
+
type: import('vue').PropType<(value: string, maxLength: number) => string>;
|
362
|
+
};
|
363
|
+
textareaAttrs: {
|
364
|
+
type: import('vue').PropType<Record<string, any>>;
|
365
|
+
};
|
366
|
+
}>> & Readonly<{
|
367
|
+
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
368
|
+
onInput?: ((value: string, ev: Event) => any) | undefined;
|
369
|
+
onClear?: ((ev: MouseEvent) => any) | undefined;
|
370
|
+
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
371
|
+
onChange?: ((value: string, ev: Event) => any) | undefined;
|
372
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
373
|
+
}>, {
|
374
|
+
className: {
|
375
|
+
block: string;
|
376
|
+
element: (className: string) => string;
|
377
|
+
modifier: (className: string) => string;
|
378
|
+
is: (className: string) => string;
|
379
|
+
};
|
380
|
+
wrapperCls: import('vue').ComputedRef<(string | {
|
381
|
+
[x: string]: boolean;
|
382
|
+
})[]>;
|
383
|
+
textareaRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
384
|
+
textareaStyle: import('vue').Ref<import('vue').CSSProperties | undefined, import('vue').CSSProperties | undefined>;
|
385
|
+
mirrorRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
386
|
+
mirrorStyle: import('vue').Ref<import('vue').CSSProperties | undefined, import('vue').CSSProperties | undefined>;
|
387
|
+
computedValue: import('vue').ComputedRef<string>;
|
388
|
+
showClearBtn: import('vue').ComputedRef<string | false>;
|
389
|
+
valueLength: import('vue').ComputedRef<number>;
|
390
|
+
computedMaxLength: import('vue').ComputedRef<number>;
|
391
|
+
mergedDisabled: import('vue').ComputedRef<boolean>;
|
392
|
+
mergeTextareaAttrs: import('vue').ComputedRef<{
|
393
|
+
[x: string]: any;
|
394
|
+
}>;
|
395
|
+
getWrapperAttrs: (attr: Record<string, any>) => Omit<{
|
396
|
+
[x: string]: unknown;
|
397
|
+
}, string>;
|
398
|
+
getTextareaAttrs: (attr: Record<string, any>) => Pick<{
|
399
|
+
[x: string]: unknown;
|
400
|
+
}, string>;
|
401
|
+
handleInput: (e: Event) => void;
|
402
|
+
handleFocus: (ev: FocusEvent) => void;
|
403
|
+
handleBlur: (ev: FocusEvent) => void;
|
404
|
+
handleComposition: (e: CompositionEvent) => void;
|
405
|
+
handleClear: (ev: MouseEvent) => void;
|
406
|
+
handleResize: () => void;
|
407
|
+
handleMousedown: (e: MouseEvent) => void;
|
408
|
+
}, {}, {}, {
|
409
|
+
focus(): void;
|
410
|
+
blur(): void;
|
411
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
412
|
+
'update:modelValue': (value: string) => true;
|
413
|
+
input: (value: string, ev: Event) => true;
|
414
|
+
change: (value: string, ev: Event) => true;
|
415
|
+
clear: (ev: MouseEvent) => true;
|
416
|
+
focus: (ev: FocusEvent) => true;
|
417
|
+
blur: (ev: FocusEvent) => true;
|
418
|
+
}, string, {
|
419
|
+
error: boolean;
|
420
|
+
disabled: boolean;
|
421
|
+
defaultValue: string;
|
422
|
+
maxLength: number | {
|
423
|
+
length: number;
|
424
|
+
errorOnly?: boolean;
|
425
|
+
};
|
426
|
+
allowClear: boolean;
|
427
|
+
showWordLimit: boolean;
|
428
|
+
autoSize: boolean | {
|
429
|
+
minRows?: number;
|
430
|
+
maxRows?: number;
|
431
|
+
};
|
432
|
+
}, {}, string, {}, {
|
433
|
+
ResizeObserver: import('vue').DefineComponent<{}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
434
|
+
[key: string]: any;
|
435
|
+
}>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "resize"[], "resize", import('vue').PublicProps, Readonly<{}> & Readonly<{
|
436
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
437
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
438
|
+
IconHover: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
439
|
+
prefix: {
|
440
|
+
type: StringConstructor;
|
441
|
+
};
|
442
|
+
size: {
|
443
|
+
type: import('vue').PropType<"mini" | "small" | "medium" | "large" | "huge">;
|
444
|
+
default: string;
|
445
|
+
};
|
446
|
+
disabled: {
|
447
|
+
type: BooleanConstructor;
|
448
|
+
default: boolean;
|
449
|
+
};
|
450
|
+
}>, {
|
451
|
+
className: {
|
452
|
+
block: string;
|
453
|
+
element: (className: string) => string;
|
454
|
+
modifier: (className: string) => string;
|
455
|
+
is: (className: string) => string;
|
456
|
+
};
|
457
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
458
|
+
prefix: {
|
459
|
+
type: StringConstructor;
|
460
|
+
};
|
461
|
+
size: {
|
462
|
+
type: import('vue').PropType<"mini" | "small" | "medium" | "large" | "huge">;
|
463
|
+
default: string;
|
464
|
+
};
|
465
|
+
disabled: {
|
466
|
+
type: BooleanConstructor;
|
467
|
+
default: boolean;
|
468
|
+
};
|
469
|
+
}>> & Readonly<{}>, {
|
470
|
+
size: "mini" | "small" | "medium" | "large" | "huge";
|
471
|
+
disabled: boolean;
|
472
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
473
|
+
IconClose: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
474
|
+
size: {
|
475
|
+
type: (StringConstructor | NumberConstructor)[];
|
476
|
+
default: undefined;
|
477
|
+
};
|
478
|
+
rotate: {
|
479
|
+
type: NumberConstructor;
|
480
|
+
default: undefined;
|
481
|
+
};
|
482
|
+
spin: {
|
483
|
+
type: BooleanConstructor;
|
484
|
+
default: boolean;
|
485
|
+
};
|
486
|
+
color: {
|
487
|
+
type: StringConstructor;
|
488
|
+
default: undefined;
|
489
|
+
};
|
490
|
+
fillColor: {
|
491
|
+
type: ArrayConstructor;
|
492
|
+
default: undefined;
|
493
|
+
};
|
494
|
+
}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
495
|
+
size: {
|
496
|
+
type: (StringConstructor | NumberConstructor)[];
|
497
|
+
default: undefined;
|
498
|
+
};
|
499
|
+
rotate: {
|
500
|
+
type: NumberConstructor;
|
501
|
+
default: undefined;
|
502
|
+
};
|
503
|
+
spin: {
|
504
|
+
type: BooleanConstructor;
|
505
|
+
default: boolean;
|
506
|
+
};
|
507
|
+
color: {
|
508
|
+
type: StringConstructor;
|
509
|
+
default: undefined;
|
510
|
+
};
|
511
|
+
fillColor: {
|
512
|
+
type: ArrayConstructor;
|
513
|
+
default: undefined;
|
514
|
+
};
|
515
|
+
}>> & Readonly<{}>, {
|
516
|
+
size: string | number;
|
517
|
+
rotate: number;
|
518
|
+
spin: boolean;
|
519
|
+
color: string;
|
520
|
+
fillColor: unknown[];
|
521
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
522
|
+
} & import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
523
|
+
install(app: import('vue').App): void;
|
524
|
+
};
|
525
|
+
export { Textarea as default };
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const getSizeStyles: (styleDeclaration: CSSStyleDeclaration) => Record<string, any>;
|
@@ -240,8 +240,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
240
240
|
narrow: boolean;
|
241
241
|
}, true, {}, import('vue').SlotsType<{
|
242
242
|
default: () => any;
|
243
|
-
prefix: any;
|
244
|
-
suffix: any;
|
243
|
+
prefix: () => any;
|
244
|
+
suffix: () => any;
|
245
245
|
icon: any;
|
246
246
|
}>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
247
247
|
P: {};
|
@@ -382,8 +382,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
382
382
|
narrow: boolean;
|
383
383
|
}, {}, string, import('vue').SlotsType<{
|
384
384
|
default: () => any;
|
385
|
-
prefix: any;
|
386
|
-
suffix: any;
|
385
|
+
prefix: () => any;
|
386
|
+
suffix: () => any;
|
387
387
|
icon: any;
|
388
388
|
}>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
389
389
|
install(app: import('vue').App): void;
|
@@ -0,0 +1,50 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
|
+
size: {
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
4
|
+
default: undefined;
|
5
|
+
};
|
6
|
+
rotate: {
|
7
|
+
type: NumberConstructor;
|
8
|
+
default: undefined;
|
9
|
+
};
|
10
|
+
spin: {
|
11
|
+
type: BooleanConstructor;
|
12
|
+
default: boolean;
|
13
|
+
};
|
14
|
+
color: {
|
15
|
+
type: StringConstructor;
|
16
|
+
default: undefined;
|
17
|
+
};
|
18
|
+
fillColor: {
|
19
|
+
type: ArrayConstructor;
|
20
|
+
default: undefined;
|
21
|
+
};
|
22
|
+
}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
23
|
+
size: {
|
24
|
+
type: (StringConstructor | NumberConstructor)[];
|
25
|
+
default: undefined;
|
26
|
+
};
|
27
|
+
rotate: {
|
28
|
+
type: NumberConstructor;
|
29
|
+
default: undefined;
|
30
|
+
};
|
31
|
+
spin: {
|
32
|
+
type: BooleanConstructor;
|
33
|
+
default: boolean;
|
34
|
+
};
|
35
|
+
color: {
|
36
|
+
type: StringConstructor;
|
37
|
+
default: undefined;
|
38
|
+
};
|
39
|
+
fillColor: {
|
40
|
+
type: ArrayConstructor;
|
41
|
+
default: undefined;
|
42
|
+
};
|
43
|
+
}>> & Readonly<{}>, {
|
44
|
+
size: string | number;
|
45
|
+
rotate: number;
|
46
|
+
spin: boolean;
|
47
|
+
color: string;
|
48
|
+
fillColor: unknown[];
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
50
|
+
export default _default;
|
@@ -0,0 +1,50 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
|
+
size: {
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
4
|
+
default: undefined;
|
5
|
+
};
|
6
|
+
rotate: {
|
7
|
+
type: NumberConstructor;
|
8
|
+
default: undefined;
|
9
|
+
};
|
10
|
+
spin: {
|
11
|
+
type: BooleanConstructor;
|
12
|
+
default: boolean;
|
13
|
+
};
|
14
|
+
color: {
|
15
|
+
type: StringConstructor;
|
16
|
+
default: undefined;
|
17
|
+
};
|
18
|
+
fillColor: {
|
19
|
+
type: ArrayConstructor;
|
20
|
+
default: undefined;
|
21
|
+
};
|
22
|
+
}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
23
|
+
size: {
|
24
|
+
type: (StringConstructor | NumberConstructor)[];
|
25
|
+
default: undefined;
|
26
|
+
};
|
27
|
+
rotate: {
|
28
|
+
type: NumberConstructor;
|
29
|
+
default: undefined;
|
30
|
+
};
|
31
|
+
spin: {
|
32
|
+
type: BooleanConstructor;
|
33
|
+
default: boolean;
|
34
|
+
};
|
35
|
+
color: {
|
36
|
+
type: StringConstructor;
|
37
|
+
default: undefined;
|
38
|
+
};
|
39
|
+
fillColor: {
|
40
|
+
type: ArrayConstructor;
|
41
|
+
default: undefined;
|
42
|
+
};
|
43
|
+
}>> & Readonly<{}>, {
|
44
|
+
size: string | number;
|
45
|
+
rotate: number;
|
46
|
+
spin: boolean;
|
47
|
+
color: string;
|
48
|
+
fillColor: unknown[];
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
50
|
+
export default _default;
|