@factoringplus/pl-components-pack-v3 1.8.33-pre-multiselect → 1.8.33-pre-02
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/{crypto-pro-70fa9136.js → crypto-pro-0e2f53f2.js} +1 -1
- package/dist/{crypto-pro-9e09348d.cjs → crypto-pro-8f3fb822.cjs} +1 -1
- package/dist/{entry-97b00fcf.js → entry-1f17b920.js} +7603 -7555
- package/dist/entry-a22b77d8.cjs +115 -0
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +1 -1
- package/dist/src/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +9 -2
- package/dist/src/components/form/pl-autocomplete/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-date-picker-plus/common/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +9 -2
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +9 -2
- package/dist/src/components/form/pl-input-plus/index.d.ts +549 -145
- package/dist/src/components/form/pl-input-plus/pl-input-plus.vue.d.ts +9 -2
- package/dist/src/components/form/pl-input-plus/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-multi-select/pl-multi-select.vue.d.ts +9 -2
- package/dist/src/components/form/pl-multi-select/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-select-plus/pl-select-plus.vue.d.ts +9 -2
- package/dist/src/components/form/pl-select-plus/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-upload-plus/pl-upload-plus.vue.d.ts +10 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/entry-3a3f4fbd.cjs +0 -115
@@ -1,5 +1,536 @@
|
|
1
1
|
export type { IPlInputPlusProps } from './types';
|
2
|
-
export declare const PlInputPlus: import('../../../install-function').SFCInstallWithContext<
|
2
|
+
export declare const PlInputPlus: import('../../../install-function').SFCInstallWithContext<{
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
4
|
+
label: {
|
5
|
+
type: import('vue').PropType<string>;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
textarea: {
|
9
|
+
type: import('vue').PropType<boolean>;
|
10
|
+
default: boolean;
|
11
|
+
};
|
12
|
+
disabled: {
|
13
|
+
type: import('vue').PropType<boolean>;
|
14
|
+
default: boolean;
|
15
|
+
};
|
16
|
+
modelValue: {
|
17
|
+
type: import('vue').PropType<import('./types').TInputModelValue>;
|
18
|
+
required: true;
|
19
|
+
default: string;
|
20
|
+
};
|
21
|
+
width: {
|
22
|
+
type: import('vue').PropType<string>;
|
23
|
+
default: string;
|
24
|
+
};
|
25
|
+
placeholder: {
|
26
|
+
type: import('vue').PropType<string>;
|
27
|
+
default: string;
|
28
|
+
};
|
29
|
+
currency: {
|
30
|
+
type: import('vue').PropType<boolean>;
|
31
|
+
default: boolean;
|
32
|
+
};
|
33
|
+
leftIcon: {
|
34
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
35
|
+
default: string;
|
36
|
+
};
|
37
|
+
rightIcon: {
|
38
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
39
|
+
default: string;
|
40
|
+
};
|
41
|
+
prop: {
|
42
|
+
type: import('vue').PropType<string>;
|
43
|
+
default: string;
|
44
|
+
};
|
45
|
+
helpertext: {
|
46
|
+
type: import('vue').PropType<string>;
|
47
|
+
default: string;
|
48
|
+
};
|
49
|
+
optional: {
|
50
|
+
type: import('vue').PropType<string>;
|
51
|
+
default: string;
|
52
|
+
};
|
53
|
+
tooltip: {
|
54
|
+
type: import('vue').PropType<string>;
|
55
|
+
default: string;
|
56
|
+
};
|
57
|
+
clearable: {
|
58
|
+
type: import('vue').PropType<boolean>;
|
59
|
+
default: boolean;
|
60
|
+
};
|
61
|
+
tooltipWidth: {
|
62
|
+
type: import('vue').PropType<string>;
|
63
|
+
};
|
64
|
+
containerClass: {
|
65
|
+
type: import('vue').PropType<string>;
|
66
|
+
default: string;
|
67
|
+
};
|
68
|
+
round: {
|
69
|
+
type: import('vue').PropType<boolean>;
|
70
|
+
default: boolean;
|
71
|
+
};
|
72
|
+
showWordLimit: {
|
73
|
+
type: import('vue').PropType<boolean>;
|
74
|
+
default: boolean;
|
75
|
+
};
|
76
|
+
password: {
|
77
|
+
type: import('vue').PropType<boolean>;
|
78
|
+
default: boolean;
|
79
|
+
};
|
80
|
+
'show-word-limit': {
|
81
|
+
type: import('vue').PropType<boolean>;
|
82
|
+
default: boolean;
|
83
|
+
};
|
84
|
+
maxlength: {
|
85
|
+
type: import('vue').PropType<number>;
|
86
|
+
default: any;
|
87
|
+
};
|
88
|
+
currentPassword: {
|
89
|
+
type: import('vue').PropType<boolean>;
|
90
|
+
default: boolean;
|
91
|
+
};
|
92
|
+
newPassword: {
|
93
|
+
type: import('vue').PropType<boolean>;
|
94
|
+
default: boolean;
|
95
|
+
};
|
96
|
+
iconPointer: {
|
97
|
+
type: import('vue').PropType<boolean>;
|
98
|
+
default: boolean;
|
99
|
+
};
|
100
|
+
customBlur: {
|
101
|
+
type: import('vue').PropType<boolean>;
|
102
|
+
default: boolean;
|
103
|
+
};
|
104
|
+
focusOnReset: {
|
105
|
+
type: import('vue').PropType<boolean>;
|
106
|
+
default: boolean;
|
107
|
+
};
|
108
|
+
disableTrim: {
|
109
|
+
type: import('vue').PropType<boolean>;
|
110
|
+
default: boolean;
|
111
|
+
};
|
112
|
+
inputClass: {
|
113
|
+
type: import('vue').PropType<string>;
|
114
|
+
default: string;
|
115
|
+
};
|
116
|
+
autosize: {
|
117
|
+
type: import('vue').PropType<boolean>;
|
118
|
+
default: boolean;
|
119
|
+
};
|
120
|
+
minRows: {
|
121
|
+
type: import('vue').PropType<number>;
|
122
|
+
default: number;
|
123
|
+
};
|
124
|
+
maxRows: {
|
125
|
+
type: import('vue').PropType<number>;
|
126
|
+
default: any;
|
127
|
+
};
|
128
|
+
valueRange: {
|
129
|
+
type: import('vue').PropType<import('vue-currency-input').NumberRange>;
|
130
|
+
default: () => {
|
131
|
+
min: number;
|
132
|
+
};
|
133
|
+
};
|
134
|
+
currencyInputOptions: {
|
135
|
+
type: import('vue').PropType<import('vue-currency-input').CurrencyInputOptions>;
|
136
|
+
};
|
137
|
+
formatter: {
|
138
|
+
type: import('vue').PropType<Function>;
|
139
|
+
};
|
140
|
+
}>> & {
|
141
|
+
onBlur?: (...args: any[]) => any;
|
142
|
+
onTouchstart?: (...args: any[]) => any;
|
143
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
144
|
+
onResetValue?: (...args: any[]) => any;
|
145
|
+
"onCustom-blur"?: (...args: any[]) => any;
|
146
|
+
"onTooltip-mouseenter"?: (...args: any[]) => any;
|
147
|
+
"onTooltip-mouseleave"?: (...args: any[]) => any;
|
148
|
+
}, {
|
149
|
+
blurInput: (mob?: boolean) => void;
|
150
|
+
focusInput: () => void;
|
151
|
+
getId: () => string;
|
152
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
153
|
+
"update:modelValue": (...args: any[]) => void;
|
154
|
+
touchstart: (...args: any[]) => void;
|
155
|
+
blur: (...args: any[]) => void;
|
156
|
+
resetValue: (...args: any[]) => void;
|
157
|
+
"custom-blur": (...args: any[]) => void;
|
158
|
+
"tooltip-mouseenter": (...args: any[]) => void;
|
159
|
+
"tooltip-mouseleave": (...args: any[]) => void;
|
160
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
161
|
+
label: {
|
162
|
+
type: import('vue').PropType<string>;
|
163
|
+
default: string;
|
164
|
+
};
|
165
|
+
textarea: {
|
166
|
+
type: import('vue').PropType<boolean>;
|
167
|
+
default: boolean;
|
168
|
+
};
|
169
|
+
disabled: {
|
170
|
+
type: import('vue').PropType<boolean>;
|
171
|
+
default: boolean;
|
172
|
+
};
|
173
|
+
modelValue: {
|
174
|
+
type: import('vue').PropType<import('./types').TInputModelValue>;
|
175
|
+
required: true;
|
176
|
+
default: string;
|
177
|
+
};
|
178
|
+
width: {
|
179
|
+
type: import('vue').PropType<string>;
|
180
|
+
default: string;
|
181
|
+
};
|
182
|
+
placeholder: {
|
183
|
+
type: import('vue').PropType<string>;
|
184
|
+
default: string;
|
185
|
+
};
|
186
|
+
currency: {
|
187
|
+
type: import('vue').PropType<boolean>;
|
188
|
+
default: boolean;
|
189
|
+
};
|
190
|
+
leftIcon: {
|
191
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
192
|
+
default: string;
|
193
|
+
};
|
194
|
+
rightIcon: {
|
195
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
196
|
+
default: string;
|
197
|
+
};
|
198
|
+
prop: {
|
199
|
+
type: import('vue').PropType<string>;
|
200
|
+
default: string;
|
201
|
+
};
|
202
|
+
helpertext: {
|
203
|
+
type: import('vue').PropType<string>;
|
204
|
+
default: string;
|
205
|
+
};
|
206
|
+
optional: {
|
207
|
+
type: import('vue').PropType<string>;
|
208
|
+
default: string;
|
209
|
+
};
|
210
|
+
tooltip: {
|
211
|
+
type: import('vue').PropType<string>;
|
212
|
+
default: string;
|
213
|
+
};
|
214
|
+
clearable: {
|
215
|
+
type: import('vue').PropType<boolean>;
|
216
|
+
default: boolean;
|
217
|
+
};
|
218
|
+
tooltipWidth: {
|
219
|
+
type: import('vue').PropType<string>;
|
220
|
+
};
|
221
|
+
containerClass: {
|
222
|
+
type: import('vue').PropType<string>;
|
223
|
+
default: string;
|
224
|
+
};
|
225
|
+
round: {
|
226
|
+
type: import('vue').PropType<boolean>;
|
227
|
+
default: boolean;
|
228
|
+
};
|
229
|
+
showWordLimit: {
|
230
|
+
type: import('vue').PropType<boolean>;
|
231
|
+
default: boolean;
|
232
|
+
};
|
233
|
+
password: {
|
234
|
+
type: import('vue').PropType<boolean>;
|
235
|
+
default: boolean;
|
236
|
+
};
|
237
|
+
'show-word-limit': {
|
238
|
+
type: import('vue').PropType<boolean>;
|
239
|
+
default: boolean;
|
240
|
+
};
|
241
|
+
maxlength: {
|
242
|
+
type: import('vue').PropType<number>;
|
243
|
+
default: any;
|
244
|
+
};
|
245
|
+
currentPassword: {
|
246
|
+
type: import('vue').PropType<boolean>;
|
247
|
+
default: boolean;
|
248
|
+
};
|
249
|
+
newPassword: {
|
250
|
+
type: import('vue').PropType<boolean>;
|
251
|
+
default: boolean;
|
252
|
+
};
|
253
|
+
iconPointer: {
|
254
|
+
type: import('vue').PropType<boolean>;
|
255
|
+
default: boolean;
|
256
|
+
};
|
257
|
+
customBlur: {
|
258
|
+
type: import('vue').PropType<boolean>;
|
259
|
+
default: boolean;
|
260
|
+
};
|
261
|
+
focusOnReset: {
|
262
|
+
type: import('vue').PropType<boolean>;
|
263
|
+
default: boolean;
|
264
|
+
};
|
265
|
+
disableTrim: {
|
266
|
+
type: import('vue').PropType<boolean>;
|
267
|
+
default: boolean;
|
268
|
+
};
|
269
|
+
inputClass: {
|
270
|
+
type: import('vue').PropType<string>;
|
271
|
+
default: string;
|
272
|
+
};
|
273
|
+
autosize: {
|
274
|
+
type: import('vue').PropType<boolean>;
|
275
|
+
default: boolean;
|
276
|
+
};
|
277
|
+
minRows: {
|
278
|
+
type: import('vue').PropType<number>;
|
279
|
+
default: number;
|
280
|
+
};
|
281
|
+
maxRows: {
|
282
|
+
type: import('vue').PropType<number>;
|
283
|
+
default: any;
|
284
|
+
};
|
285
|
+
valueRange: {
|
286
|
+
type: import('vue').PropType<import('vue-currency-input').NumberRange>;
|
287
|
+
default: () => {
|
288
|
+
min: number;
|
289
|
+
};
|
290
|
+
};
|
291
|
+
currencyInputOptions: {
|
292
|
+
type: import('vue').PropType<import('vue-currency-input').CurrencyInputOptions>;
|
293
|
+
};
|
294
|
+
formatter: {
|
295
|
+
type: import('vue').PropType<Function>;
|
296
|
+
};
|
297
|
+
}>> & {
|
298
|
+
onBlur?: (...args: any[]) => any;
|
299
|
+
onTouchstart?: (...args: any[]) => any;
|
300
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
301
|
+
onResetValue?: (...args: any[]) => any;
|
302
|
+
"onCustom-blur"?: (...args: any[]) => any;
|
303
|
+
"onTooltip-mouseenter"?: (...args: any[]) => any;
|
304
|
+
"onTooltip-mouseleave"?: (...args: any[]) => any;
|
305
|
+
}, {
|
306
|
+
label: string;
|
307
|
+
textarea: boolean;
|
308
|
+
disabled: boolean;
|
309
|
+
modelValue: import('./types').TInputModelValue;
|
310
|
+
width: string;
|
311
|
+
placeholder: string;
|
312
|
+
currency: boolean;
|
313
|
+
leftIcon: import('../../components').TIcon;
|
314
|
+
rightIcon: import('../../components').TIcon;
|
315
|
+
prop: string;
|
316
|
+
helpertext: string;
|
317
|
+
optional: string;
|
318
|
+
tooltip: string;
|
319
|
+
clearable: boolean;
|
320
|
+
containerClass: string;
|
321
|
+
round: boolean;
|
322
|
+
showWordLimit: boolean;
|
323
|
+
password: boolean;
|
324
|
+
'show-word-limit': boolean;
|
325
|
+
maxlength: number;
|
326
|
+
currentPassword: boolean;
|
327
|
+
newPassword: boolean;
|
328
|
+
iconPointer: boolean;
|
329
|
+
customBlur: boolean;
|
330
|
+
focusOnReset: boolean;
|
331
|
+
disableTrim: boolean;
|
332
|
+
inputClass: string;
|
333
|
+
autosize: boolean;
|
334
|
+
minRows: number;
|
335
|
+
maxRows: number;
|
336
|
+
valueRange: {
|
337
|
+
min: number;
|
338
|
+
};
|
339
|
+
}, true, {}, {}, {
|
340
|
+
P: {};
|
341
|
+
B: {};
|
342
|
+
D: {};
|
343
|
+
C: {};
|
344
|
+
M: {};
|
345
|
+
Defaults: {};
|
346
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
347
|
+
label: {
|
348
|
+
type: import('vue').PropType<string>;
|
349
|
+
default: string;
|
350
|
+
};
|
351
|
+
textarea: {
|
352
|
+
type: import('vue').PropType<boolean>;
|
353
|
+
default: boolean;
|
354
|
+
};
|
355
|
+
disabled: {
|
356
|
+
type: import('vue').PropType<boolean>;
|
357
|
+
default: boolean;
|
358
|
+
};
|
359
|
+
modelValue: {
|
360
|
+
type: import('vue').PropType<import('./types').TInputModelValue>;
|
361
|
+
required: true;
|
362
|
+
default: string;
|
363
|
+
};
|
364
|
+
width: {
|
365
|
+
type: import('vue').PropType<string>;
|
366
|
+
default: string;
|
367
|
+
};
|
368
|
+
placeholder: {
|
369
|
+
type: import('vue').PropType<string>;
|
370
|
+
default: string;
|
371
|
+
};
|
372
|
+
currency: {
|
373
|
+
type: import('vue').PropType<boolean>;
|
374
|
+
default: boolean;
|
375
|
+
};
|
376
|
+
leftIcon: {
|
377
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
378
|
+
default: string;
|
379
|
+
};
|
380
|
+
rightIcon: {
|
381
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
382
|
+
default: string;
|
383
|
+
};
|
384
|
+
prop: {
|
385
|
+
type: import('vue').PropType<string>;
|
386
|
+
default: string;
|
387
|
+
};
|
388
|
+
helpertext: {
|
389
|
+
type: import('vue').PropType<string>;
|
390
|
+
default: string;
|
391
|
+
};
|
392
|
+
optional: {
|
393
|
+
type: import('vue').PropType<string>;
|
394
|
+
default: string;
|
395
|
+
};
|
396
|
+
tooltip: {
|
397
|
+
type: import('vue').PropType<string>;
|
398
|
+
default: string;
|
399
|
+
};
|
400
|
+
clearable: {
|
401
|
+
type: import('vue').PropType<boolean>;
|
402
|
+
default: boolean;
|
403
|
+
};
|
404
|
+
tooltipWidth: {
|
405
|
+
type: import('vue').PropType<string>;
|
406
|
+
};
|
407
|
+
containerClass: {
|
408
|
+
type: import('vue').PropType<string>;
|
409
|
+
default: string;
|
410
|
+
};
|
411
|
+
round: {
|
412
|
+
type: import('vue').PropType<boolean>;
|
413
|
+
default: boolean;
|
414
|
+
};
|
415
|
+
showWordLimit: {
|
416
|
+
type: import('vue').PropType<boolean>;
|
417
|
+
default: boolean;
|
418
|
+
};
|
419
|
+
password: {
|
420
|
+
type: import('vue').PropType<boolean>;
|
421
|
+
default: boolean;
|
422
|
+
};
|
423
|
+
'show-word-limit': {
|
424
|
+
type: import('vue').PropType<boolean>;
|
425
|
+
default: boolean;
|
426
|
+
};
|
427
|
+
maxlength: {
|
428
|
+
type: import('vue').PropType<number>;
|
429
|
+
default: any;
|
430
|
+
};
|
431
|
+
currentPassword: {
|
432
|
+
type: import('vue').PropType<boolean>;
|
433
|
+
default: boolean;
|
434
|
+
};
|
435
|
+
newPassword: {
|
436
|
+
type: import('vue').PropType<boolean>;
|
437
|
+
default: boolean;
|
438
|
+
};
|
439
|
+
iconPointer: {
|
440
|
+
type: import('vue').PropType<boolean>;
|
441
|
+
default: boolean;
|
442
|
+
};
|
443
|
+
customBlur: {
|
444
|
+
type: import('vue').PropType<boolean>;
|
445
|
+
default: boolean;
|
446
|
+
};
|
447
|
+
focusOnReset: {
|
448
|
+
type: import('vue').PropType<boolean>;
|
449
|
+
default: boolean;
|
450
|
+
};
|
451
|
+
disableTrim: {
|
452
|
+
type: import('vue').PropType<boolean>;
|
453
|
+
default: boolean;
|
454
|
+
};
|
455
|
+
inputClass: {
|
456
|
+
type: import('vue').PropType<string>;
|
457
|
+
default: string;
|
458
|
+
};
|
459
|
+
autosize: {
|
460
|
+
type: import('vue').PropType<boolean>;
|
461
|
+
default: boolean;
|
462
|
+
};
|
463
|
+
minRows: {
|
464
|
+
type: import('vue').PropType<number>;
|
465
|
+
default: number;
|
466
|
+
};
|
467
|
+
maxRows: {
|
468
|
+
type: import('vue').PropType<number>;
|
469
|
+
default: any;
|
470
|
+
};
|
471
|
+
valueRange: {
|
472
|
+
type: import('vue').PropType<import('vue-currency-input').NumberRange>;
|
473
|
+
default: () => {
|
474
|
+
min: number;
|
475
|
+
};
|
476
|
+
};
|
477
|
+
currencyInputOptions: {
|
478
|
+
type: import('vue').PropType<import('vue-currency-input').CurrencyInputOptions>;
|
479
|
+
};
|
480
|
+
formatter: {
|
481
|
+
type: import('vue').PropType<Function>;
|
482
|
+
};
|
483
|
+
}>> & {
|
484
|
+
onBlur?: (...args: any[]) => any;
|
485
|
+
onTouchstart?: (...args: any[]) => any;
|
486
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
487
|
+
onResetValue?: (...args: any[]) => any;
|
488
|
+
"onCustom-blur"?: (...args: any[]) => any;
|
489
|
+
"onTooltip-mouseenter"?: (...args: any[]) => any;
|
490
|
+
"onTooltip-mouseleave"?: (...args: any[]) => any;
|
491
|
+
}, {
|
492
|
+
blurInput: (mob?: boolean) => void;
|
493
|
+
focusInput: () => void;
|
494
|
+
getId: () => string;
|
495
|
+
}, {}, {}, {}, {
|
496
|
+
label: string;
|
497
|
+
textarea: boolean;
|
498
|
+
disabled: boolean;
|
499
|
+
modelValue: import('./types').TInputModelValue;
|
500
|
+
width: string;
|
501
|
+
placeholder: string;
|
502
|
+
currency: boolean;
|
503
|
+
leftIcon: import('../../components').TIcon;
|
504
|
+
rightIcon: import('../../components').TIcon;
|
505
|
+
prop: string;
|
506
|
+
helpertext: string;
|
507
|
+
optional: string;
|
508
|
+
tooltip: string;
|
509
|
+
clearable: boolean;
|
510
|
+
containerClass: string;
|
511
|
+
round: boolean;
|
512
|
+
showWordLimit: boolean;
|
513
|
+
password: boolean;
|
514
|
+
'show-word-limit': boolean;
|
515
|
+
maxlength: number;
|
516
|
+
currentPassword: boolean;
|
517
|
+
newPassword: boolean;
|
518
|
+
iconPointer: boolean;
|
519
|
+
customBlur: boolean;
|
520
|
+
focusOnReset: boolean;
|
521
|
+
disableTrim: boolean;
|
522
|
+
inputClass: string;
|
523
|
+
autosize: boolean;
|
524
|
+
minRows: number;
|
525
|
+
maxRows: number;
|
526
|
+
valueRange: {
|
527
|
+
min: number;
|
528
|
+
};
|
529
|
+
}>;
|
530
|
+
__isFragment?: never;
|
531
|
+
__isTeleport?: never;
|
532
|
+
__isSuspense?: never;
|
533
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
3
534
|
label: {
|
4
535
|
type: import('vue').PropType<string>;
|
5
536
|
default: string;
|
@@ -57,6 +588,9 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
57
588
|
type: import('vue').PropType<boolean>;
|
58
589
|
default: boolean;
|
59
590
|
};
|
591
|
+
tooltipWidth: {
|
592
|
+
type: import('vue').PropType<string>;
|
593
|
+
};
|
60
594
|
containerClass: {
|
61
595
|
type: import('vue').PropType<string>;
|
62
596
|
default: string;
|
@@ -133,6 +667,14 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
133
667
|
formatter: {
|
134
668
|
type: import('vue').PropType<Function>;
|
135
669
|
};
|
670
|
+
}>> & {
|
671
|
+
onBlur?: (...args: any[]) => any;
|
672
|
+
onTouchstart?: (...args: any[]) => any;
|
673
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
674
|
+
onResetValue?: (...args: any[]) => any;
|
675
|
+
"onCustom-blur"?: (...args: any[]) => any;
|
676
|
+
"onTooltip-mouseenter"?: (...args: any[]) => any;
|
677
|
+
"onTooltip-mouseleave"?: (...args: any[]) => any;
|
136
678
|
}, {
|
137
679
|
blurInput: (mob?: boolean) => void;
|
138
680
|
focusInput: () => void;
|
@@ -145,149 +687,7 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
145
687
|
"custom-blur": (...args: any[]) => void;
|
146
688
|
"tooltip-mouseenter": (...args: any[]) => void;
|
147
689
|
"tooltip-mouseleave": (...args: any[]) => void;
|
148
|
-
}, string,
|
149
|
-
label: {
|
150
|
-
type: import('vue').PropType<string>;
|
151
|
-
default: string;
|
152
|
-
};
|
153
|
-
textarea: {
|
154
|
-
type: import('vue').PropType<boolean>;
|
155
|
-
default: boolean;
|
156
|
-
};
|
157
|
-
disabled: {
|
158
|
-
type: import('vue').PropType<boolean>;
|
159
|
-
default: boolean;
|
160
|
-
};
|
161
|
-
modelValue: {
|
162
|
-
type: import('vue').PropType<import('./types').TInputModelValue>;
|
163
|
-
required: true;
|
164
|
-
default: string;
|
165
|
-
};
|
166
|
-
width: {
|
167
|
-
type: import('vue').PropType<string>;
|
168
|
-
default: string;
|
169
|
-
};
|
170
|
-
placeholder: {
|
171
|
-
type: import('vue').PropType<string>;
|
172
|
-
default: string;
|
173
|
-
};
|
174
|
-
currency: {
|
175
|
-
type: import('vue').PropType<boolean>;
|
176
|
-
default: boolean;
|
177
|
-
};
|
178
|
-
leftIcon: {
|
179
|
-
type: import('vue').PropType<import('../../components').TIcon>;
|
180
|
-
default: string;
|
181
|
-
};
|
182
|
-
rightIcon: {
|
183
|
-
type: import('vue').PropType<import('../../components').TIcon>;
|
184
|
-
default: string;
|
185
|
-
};
|
186
|
-
prop: {
|
187
|
-
type: import('vue').PropType<string>;
|
188
|
-
default: string;
|
189
|
-
};
|
190
|
-
helpertext: {
|
191
|
-
type: import('vue').PropType<string>;
|
192
|
-
default: string;
|
193
|
-
};
|
194
|
-
optional: {
|
195
|
-
type: import('vue').PropType<string>;
|
196
|
-
default: string;
|
197
|
-
};
|
198
|
-
tooltip: {
|
199
|
-
type: import('vue').PropType<string>;
|
200
|
-
default: string;
|
201
|
-
};
|
202
|
-
clearable: {
|
203
|
-
type: import('vue').PropType<boolean>;
|
204
|
-
default: boolean;
|
205
|
-
};
|
206
|
-
containerClass: {
|
207
|
-
type: import('vue').PropType<string>;
|
208
|
-
default: string;
|
209
|
-
};
|
210
|
-
round: {
|
211
|
-
type: import('vue').PropType<boolean>;
|
212
|
-
default: boolean;
|
213
|
-
};
|
214
|
-
showWordLimit: {
|
215
|
-
type: import('vue').PropType<boolean>;
|
216
|
-
default: boolean;
|
217
|
-
};
|
218
|
-
password: {
|
219
|
-
type: import('vue').PropType<boolean>;
|
220
|
-
default: boolean;
|
221
|
-
};
|
222
|
-
'show-word-limit': {
|
223
|
-
type: import('vue').PropType<boolean>;
|
224
|
-
default: boolean;
|
225
|
-
};
|
226
|
-
maxlength: {
|
227
|
-
type: import('vue').PropType<number>;
|
228
|
-
default: any;
|
229
|
-
};
|
230
|
-
currentPassword: {
|
231
|
-
type: import('vue').PropType<boolean>;
|
232
|
-
default: boolean;
|
233
|
-
};
|
234
|
-
newPassword: {
|
235
|
-
type: import('vue').PropType<boolean>;
|
236
|
-
default: boolean;
|
237
|
-
};
|
238
|
-
iconPointer: {
|
239
|
-
type: import('vue').PropType<boolean>;
|
240
|
-
default: boolean;
|
241
|
-
};
|
242
|
-
customBlur: {
|
243
|
-
type: import('vue').PropType<boolean>;
|
244
|
-
default: boolean;
|
245
|
-
};
|
246
|
-
focusOnReset: {
|
247
|
-
type: import('vue').PropType<boolean>;
|
248
|
-
default: boolean;
|
249
|
-
};
|
250
|
-
disableTrim: {
|
251
|
-
type: import('vue').PropType<boolean>;
|
252
|
-
default: boolean;
|
253
|
-
};
|
254
|
-
inputClass: {
|
255
|
-
type: import('vue').PropType<string>;
|
256
|
-
default: string;
|
257
|
-
};
|
258
|
-
autosize: {
|
259
|
-
type: import('vue').PropType<boolean>;
|
260
|
-
default: boolean;
|
261
|
-
};
|
262
|
-
minRows: {
|
263
|
-
type: import('vue').PropType<number>;
|
264
|
-
default: number;
|
265
|
-
};
|
266
|
-
maxRows: {
|
267
|
-
type: import('vue').PropType<number>;
|
268
|
-
default: any;
|
269
|
-
};
|
270
|
-
valueRange: {
|
271
|
-
type: import('vue').PropType<import('vue-currency-input').NumberRange>;
|
272
|
-
default: () => {
|
273
|
-
min: number;
|
274
|
-
};
|
275
|
-
};
|
276
|
-
currencyInputOptions: {
|
277
|
-
type: import('vue').PropType<import('vue-currency-input').CurrencyInputOptions>;
|
278
|
-
};
|
279
|
-
formatter: {
|
280
|
-
type: import('vue').PropType<Function>;
|
281
|
-
};
|
282
|
-
}>> & {
|
283
|
-
onBlur?: (...args: any[]) => any;
|
284
|
-
onTouchstart?: (...args: any[]) => any;
|
285
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
286
|
-
onResetValue?: (...args: any[]) => any;
|
287
|
-
"onCustom-blur"?: (...args: any[]) => any;
|
288
|
-
"onTooltip-mouseenter"?: (...args: any[]) => any;
|
289
|
-
"onTooltip-mouseleave"?: (...args: any[]) => any;
|
290
|
-
}, {
|
690
|
+
}, string, {
|
291
691
|
label: string;
|
292
692
|
textarea: boolean;
|
293
693
|
disabled: boolean;
|
@@ -321,5 +721,9 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
321
721
|
valueRange: {
|
322
722
|
min: number;
|
323
723
|
};
|
324
|
-
}, {}
|
724
|
+
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
725
|
+
$slots: {
|
726
|
+
"tooltip-text"?(_: {}): any;
|
727
|
+
};
|
728
|
+
})>;
|
325
729
|
export default PlInputPlus;
|