@solfacil/girassol 0.2.12 → 0.3.2
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/components.d.ts +2 -3
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +3010 -985
- package/dist/girassol.umd.js +10 -6
- package/dist/style.css +1 -1
- package/dist/types/components/forms/button/{Button.vue.d.ts → button/Button.vue.d.ts} +0 -0
- package/dist/types/components/forms/button/{button.spec.d.ts → button/button.spec.d.ts} +0 -0
- package/dist/types/components/forms/button/{ButtonDestructive.vue.d.ts → button-destructive/ButtonDestructive.vue.d.ts} +0 -0
- package/dist/types/components/forms/button/index.d.ts +2 -2
- package/dist/types/components/forms/checkbox/{Checkbox.vue.d.ts → checkbox/Checkbox.vue.d.ts} +12 -8
- package/dist/types/components/forms/checkbox/{checkbox.spec.d.ts → checkbox/checkbox.spec.d.ts} +0 -0
- package/dist/types/components/forms/checkbox/{CheckboxGroup.vue.d.ts → checkbox-group/CheckboxGroup.vue.d.ts} +12 -12
- package/dist/types/components/forms/checkbox/{checkbox-group.spec.d.ts → checkbox-group/checkbox-group.spec.d.ts} +0 -0
- package/dist/types/components/forms/checkbox/index.d.ts +2 -2
- package/dist/types/components/forms/checkbox/{checkbox-type.d.ts → type.d.ts} +1 -0
- package/dist/types/components/forms/inputs/index.d.ts +3 -0
- package/dist/types/components/forms/{input → inputs/input-core}/Input.vue.d.ts +47 -23
- package/dist/types/components/forms/{input → inputs/input-core}/input.spec.d.ts +0 -0
- package/dist/types/components/forms/{textfield/TextfieldPassword.vue.d.ts → inputs/input-password/InputPassword.vue.d.ts} +76 -23
- package/dist/types/components/forms/{textfield/textfield-password.spec.d.ts → inputs/input-password/input-password.spec.d.ts} +0 -0
- package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +181 -0
- package/dist/types/components/forms/{textfield/textfield.spec.d.ts → inputs/input-text/input-text.spec.d.ts} +0 -0
- package/dist/types/components/forms/inputs/types.d.ts +24 -0
- package/dist/types/components/forms/switch/Switch.vue.d.ts +52 -22
- package/dist/types/components/loader/CircleLoader.vue.d.ts +19 -8
- package/dist/types/components/menus/menu/Menu.vue.d.ts +7 -7
- package/dist/types/composables/use-validate-field/index.d.ts +5 -0
- package/dist/types/composables/use-validate-field/types.d.ts +9 -0
- package/dist/types/index.d.ts +544 -302
- package/package.json +22 -19
- package/theme/solfacil/colors.ts +1 -1
- package/windi.config.ts +11 -11
- package/dist/theme/safelist.d.ts +0 -14
- package/dist/types/components/forms/input/index.d.ts +0 -2
- package/dist/types/components/forms/textfield/Textfield.vue.d.ts +0 -129
- package/dist/types/components/forms/textfield/index.d.ts +0 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { App } from 'vue';
|
|
2
2
|
import { SolButton, SolButtonDestructive } from './components/forms/button';
|
|
3
|
-
import {
|
|
4
|
-
import { SolTextfield, SolTextfieldPassword } from './components/forms/textfield';
|
|
3
|
+
import { SolInputText, SolInputTextPassword } from './components/forms/inputs';
|
|
5
4
|
import { SolTextarea } from './components/forms/textarea';
|
|
6
5
|
import { SolRadio, SolRadioGroup } from './components/forms/radio';
|
|
7
6
|
import { SolCheckbox, SolCheckboxGroup } from './components/forms/checkbox';
|
|
@@ -40,14 +39,14 @@ export declare const components: {
|
|
|
40
39
|
disabled: {
|
|
41
40
|
type: import("vue").PropType<boolean>;
|
|
42
41
|
};
|
|
43
|
-
loading: {
|
|
44
|
-
type: import("vue").PropType<boolean>;
|
|
45
|
-
};
|
|
46
42
|
size: {
|
|
47
43
|
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
48
44
|
} & {
|
|
49
45
|
default: string;
|
|
50
46
|
};
|
|
47
|
+
loading: {
|
|
48
|
+
type: import("vue").PropType<boolean>;
|
|
49
|
+
};
|
|
51
50
|
variant: {
|
|
52
51
|
type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
|
|
53
52
|
} & {
|
|
@@ -80,14 +79,14 @@ export declare const components: {
|
|
|
80
79
|
disabled: {
|
|
81
80
|
type: import("vue").PropType<boolean>;
|
|
82
81
|
};
|
|
83
|
-
loading: {
|
|
84
|
-
type: import("vue").PropType<boolean>;
|
|
85
|
-
};
|
|
86
82
|
size: {
|
|
87
83
|
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
88
84
|
} & {
|
|
89
85
|
default: string;
|
|
90
86
|
};
|
|
87
|
+
loading: {
|
|
88
|
+
type: import("vue").PropType<boolean>;
|
|
89
|
+
};
|
|
91
90
|
variant: {
|
|
92
91
|
type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
|
|
93
92
|
} & {
|
|
@@ -130,14 +129,14 @@ export declare const components: {
|
|
|
130
129
|
disabled: {
|
|
131
130
|
type: import("vue").PropType<boolean>;
|
|
132
131
|
};
|
|
133
|
-
loading: {
|
|
134
|
-
type: import("vue").PropType<boolean>;
|
|
135
|
-
};
|
|
136
132
|
size: {
|
|
137
133
|
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
138
134
|
} & {
|
|
139
135
|
default: string;
|
|
140
136
|
};
|
|
137
|
+
loading: {
|
|
138
|
+
type: import("vue").PropType<boolean>;
|
|
139
|
+
};
|
|
141
140
|
variant: {
|
|
142
141
|
type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
|
|
143
142
|
} & {
|
|
@@ -160,14 +159,14 @@ export declare const components: {
|
|
|
160
159
|
disabled: {
|
|
161
160
|
type: import("vue").PropType<boolean>;
|
|
162
161
|
};
|
|
163
|
-
loading: {
|
|
164
|
-
type: import("vue").PropType<boolean>;
|
|
165
|
-
};
|
|
166
162
|
size: {
|
|
167
163
|
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
168
164
|
} & {
|
|
169
165
|
default: string;
|
|
170
166
|
};
|
|
167
|
+
loading: {
|
|
168
|
+
type: import("vue").PropType<boolean>;
|
|
169
|
+
};
|
|
171
170
|
variant: {
|
|
172
171
|
type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
|
|
173
172
|
} & {
|
|
@@ -279,129 +278,6 @@ export declare const components: {
|
|
|
279
278
|
default: (_: {}) => any;
|
|
280
279
|
};
|
|
281
280
|
});
|
|
282
|
-
SolInput: {
|
|
283
|
-
new (...args: any[]): {
|
|
284
|
-
$: import("vue").ComponentInternalInstance;
|
|
285
|
-
$data: {};
|
|
286
|
-
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
287
|
-
id: {
|
|
288
|
-
type: import("vue").PropType<string>;
|
|
289
|
-
required: true;
|
|
290
|
-
};
|
|
291
|
-
modelValue: {
|
|
292
|
-
type: import("vue").PropType<string | number>;
|
|
293
|
-
required: true;
|
|
294
|
-
};
|
|
295
|
-
invert: {
|
|
296
|
-
type: import("vue").PropType<boolean>;
|
|
297
|
-
};
|
|
298
|
-
error: {
|
|
299
|
-
type: import("vue").PropType<boolean>;
|
|
300
|
-
};
|
|
301
|
-
}>> & {
|
|
302
|
-
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
303
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
304
|
-
$attrs: {
|
|
305
|
-
[x: string]: unknown;
|
|
306
|
-
};
|
|
307
|
-
$refs: {
|
|
308
|
-
[x: string]: unknown;
|
|
309
|
-
};
|
|
310
|
-
$slots: Readonly<{
|
|
311
|
-
[name: string]: import("vue").Slot | undefined;
|
|
312
|
-
}>;
|
|
313
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
314
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
315
|
-
$emit: (event: "update:modelValue", event: string) => void;
|
|
316
|
-
$el: any;
|
|
317
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
318
|
-
id: {
|
|
319
|
-
type: import("vue").PropType<string>;
|
|
320
|
-
required: true;
|
|
321
|
-
};
|
|
322
|
-
modelValue: {
|
|
323
|
-
type: import("vue").PropType<string | number>;
|
|
324
|
-
required: true;
|
|
325
|
-
};
|
|
326
|
-
invert: {
|
|
327
|
-
type: import("vue").PropType<boolean>;
|
|
328
|
-
};
|
|
329
|
-
error: {
|
|
330
|
-
type: import("vue").PropType<boolean>;
|
|
331
|
-
};
|
|
332
|
-
}>> & {
|
|
333
|
-
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
334
|
-
}, {
|
|
335
|
-
input: import("vue").Ref<string>;
|
|
336
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
337
|
-
"update:modelValue": (event: string) => void;
|
|
338
|
-
}, string, {}> & {
|
|
339
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
340
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
341
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
342
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
343
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
344
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
345
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
346
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
347
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
348
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
349
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
350
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
351
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
352
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
353
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
354
|
-
};
|
|
355
|
-
$forceUpdate: () => void;
|
|
356
|
-
$nextTick: typeof import("vue").nextTick;
|
|
357
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
358
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
359
|
-
id: {
|
|
360
|
-
type: import("vue").PropType<string>;
|
|
361
|
-
required: true;
|
|
362
|
-
};
|
|
363
|
-
modelValue: {
|
|
364
|
-
type: import("vue").PropType<string | number>;
|
|
365
|
-
required: true;
|
|
366
|
-
};
|
|
367
|
-
invert: {
|
|
368
|
-
type: import("vue").PropType<boolean>;
|
|
369
|
-
};
|
|
370
|
-
error: {
|
|
371
|
-
type: import("vue").PropType<boolean>;
|
|
372
|
-
};
|
|
373
|
-
}>> & {
|
|
374
|
-
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
375
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
376
|
-
input: import("vue").Ref<string>;
|
|
377
|
-
}> & {} & import("vue").ComponentCustomProperties;
|
|
378
|
-
__isFragment?: undefined;
|
|
379
|
-
__isTeleport?: undefined;
|
|
380
|
-
__isSuspense?: undefined;
|
|
381
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
382
|
-
id: {
|
|
383
|
-
type: import("vue").PropType<string>;
|
|
384
|
-
required: true;
|
|
385
|
-
};
|
|
386
|
-
modelValue: {
|
|
387
|
-
type: import("vue").PropType<string | number>;
|
|
388
|
-
required: true;
|
|
389
|
-
};
|
|
390
|
-
invert: {
|
|
391
|
-
type: import("vue").PropType<boolean>;
|
|
392
|
-
};
|
|
393
|
-
error: {
|
|
394
|
-
type: import("vue").PropType<boolean>;
|
|
395
|
-
};
|
|
396
|
-
}>> & {
|
|
397
|
-
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
398
|
-
}, {
|
|
399
|
-
input: import("vue").Ref<string>;
|
|
400
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
401
|
-
"update:modelValue": (event: string) => void;
|
|
402
|
-
}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
403
|
-
$slots: {};
|
|
404
|
-
});
|
|
405
281
|
SolTextarea: {
|
|
406
282
|
new (...args: any[]): {
|
|
407
283
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -416,27 +292,27 @@ export declare const components: {
|
|
|
416
292
|
} & {
|
|
417
293
|
default: string;
|
|
418
294
|
};
|
|
419
|
-
|
|
295
|
+
class: {
|
|
420
296
|
type: import("vue").PropType<string>;
|
|
421
|
-
required: true;
|
|
422
297
|
};
|
|
423
|
-
|
|
298
|
+
id: {
|
|
424
299
|
type: import("vue").PropType<string>;
|
|
300
|
+
required: true;
|
|
425
301
|
};
|
|
426
302
|
modelValue: {
|
|
427
303
|
type: import("vue").PropType<string>;
|
|
428
304
|
} & {
|
|
429
305
|
default: string;
|
|
430
306
|
};
|
|
431
|
-
invert: {
|
|
432
|
-
type: import("vue").PropType<boolean>;
|
|
433
|
-
};
|
|
434
307
|
error: {
|
|
435
308
|
type: import("vue").PropType<string>;
|
|
436
309
|
};
|
|
437
310
|
hint: {
|
|
438
311
|
type: import("vue").PropType<string>;
|
|
439
312
|
};
|
|
313
|
+
invert: {
|
|
314
|
+
type: import("vue").PropType<boolean>;
|
|
315
|
+
};
|
|
440
316
|
resize: {
|
|
441
317
|
type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
442
318
|
} & {
|
|
@@ -464,27 +340,27 @@ export declare const components: {
|
|
|
464
340
|
} & {
|
|
465
341
|
default: string;
|
|
466
342
|
};
|
|
467
|
-
|
|
343
|
+
class: {
|
|
468
344
|
type: import("vue").PropType<string>;
|
|
469
|
-
required: true;
|
|
470
345
|
};
|
|
471
|
-
|
|
346
|
+
id: {
|
|
472
347
|
type: import("vue").PropType<string>;
|
|
348
|
+
required: true;
|
|
473
349
|
};
|
|
474
350
|
modelValue: {
|
|
475
351
|
type: import("vue").PropType<string>;
|
|
476
352
|
} & {
|
|
477
353
|
default: string;
|
|
478
354
|
};
|
|
479
|
-
invert: {
|
|
480
|
-
type: import("vue").PropType<boolean>;
|
|
481
|
-
};
|
|
482
355
|
error: {
|
|
483
356
|
type: import("vue").PropType<string>;
|
|
484
357
|
};
|
|
485
358
|
hint: {
|
|
486
359
|
type: import("vue").PropType<string>;
|
|
487
360
|
};
|
|
361
|
+
invert: {
|
|
362
|
+
type: import("vue").PropType<boolean>;
|
|
363
|
+
};
|
|
488
364
|
resize: {
|
|
489
365
|
type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
490
366
|
} & {
|
|
@@ -524,27 +400,27 @@ export declare const components: {
|
|
|
524
400
|
} & {
|
|
525
401
|
default: string;
|
|
526
402
|
};
|
|
527
|
-
|
|
403
|
+
class: {
|
|
528
404
|
type: import("vue").PropType<string>;
|
|
529
|
-
required: true;
|
|
530
405
|
};
|
|
531
|
-
|
|
406
|
+
id: {
|
|
532
407
|
type: import("vue").PropType<string>;
|
|
408
|
+
required: true;
|
|
533
409
|
};
|
|
534
410
|
modelValue: {
|
|
535
411
|
type: import("vue").PropType<string>;
|
|
536
412
|
} & {
|
|
537
413
|
default: string;
|
|
538
414
|
};
|
|
539
|
-
invert: {
|
|
540
|
-
type: import("vue").PropType<boolean>;
|
|
541
|
-
};
|
|
542
415
|
error: {
|
|
543
416
|
type: import("vue").PropType<string>;
|
|
544
417
|
};
|
|
545
418
|
hint: {
|
|
546
419
|
type: import("vue").PropType<string>;
|
|
547
420
|
};
|
|
421
|
+
invert: {
|
|
422
|
+
type: import("vue").PropType<boolean>;
|
|
423
|
+
};
|
|
548
424
|
resize: {
|
|
549
425
|
type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
550
426
|
} & {
|
|
@@ -562,27 +438,27 @@ export declare const components: {
|
|
|
562
438
|
} & {
|
|
563
439
|
default: string;
|
|
564
440
|
};
|
|
565
|
-
|
|
441
|
+
class: {
|
|
566
442
|
type: import("vue").PropType<string>;
|
|
567
|
-
required: true;
|
|
568
443
|
};
|
|
569
|
-
|
|
444
|
+
id: {
|
|
570
445
|
type: import("vue").PropType<string>;
|
|
446
|
+
required: true;
|
|
571
447
|
};
|
|
572
448
|
modelValue: {
|
|
573
449
|
type: import("vue").PropType<string>;
|
|
574
450
|
} & {
|
|
575
451
|
default: string;
|
|
576
452
|
};
|
|
577
|
-
invert: {
|
|
578
|
-
type: import("vue").PropType<boolean>;
|
|
579
|
-
};
|
|
580
453
|
error: {
|
|
581
454
|
type: import("vue").PropType<string>;
|
|
582
455
|
};
|
|
583
456
|
hint: {
|
|
584
457
|
type: import("vue").PropType<string>;
|
|
585
458
|
};
|
|
459
|
+
invert: {
|
|
460
|
+
type: import("vue").PropType<boolean>;
|
|
461
|
+
};
|
|
586
462
|
resize: {
|
|
587
463
|
type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
588
464
|
} & {
|
|
@@ -602,43 +478,82 @@ export declare const components: {
|
|
|
602
478
|
default: (_: {}) => any;
|
|
603
479
|
};
|
|
604
480
|
});
|
|
605
|
-
|
|
481
|
+
SolInputText: {
|
|
606
482
|
new (...args: any[]): {
|
|
607
483
|
$: import("vue").ComponentInternalInstance;
|
|
608
484
|
$data: {};
|
|
609
485
|
$props: Partial<{
|
|
610
|
-
|
|
611
|
-
|
|
486
|
+
error: string | null;
|
|
487
|
+
size: "sm" | "md";
|
|
612
488
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
613
489
|
label: {
|
|
614
490
|
type: import("vue").PropType<string>;
|
|
615
|
-
}
|
|
616
|
-
|
|
491
|
+
};
|
|
492
|
+
required: {
|
|
493
|
+
type: import("vue").PropType<boolean>;
|
|
494
|
+
};
|
|
495
|
+
class: {
|
|
496
|
+
type: import("vue").PropType<string>;
|
|
617
497
|
};
|
|
618
498
|
id: {
|
|
619
499
|
type: import("vue").PropType<string>;
|
|
620
500
|
required: true;
|
|
621
501
|
};
|
|
622
|
-
|
|
623
|
-
type: import("vue").PropType<
|
|
502
|
+
disabled: {
|
|
503
|
+
type: import("vue").PropType<boolean>;
|
|
624
504
|
};
|
|
625
505
|
modelValue: {
|
|
626
|
-
type: import("vue").PropType<string
|
|
506
|
+
type: import("vue").PropType<string>;
|
|
507
|
+
};
|
|
508
|
+
error: {
|
|
509
|
+
type: import("vue").PropType<string | null>;
|
|
510
|
+
} & {
|
|
511
|
+
default: null;
|
|
512
|
+
};
|
|
513
|
+
size: {
|
|
514
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
627
515
|
} & {
|
|
628
516
|
default: string;
|
|
629
517
|
};
|
|
630
|
-
|
|
631
|
-
type: import("vue").PropType<
|
|
518
|
+
name: {
|
|
519
|
+
type: import("vue").PropType<string>;
|
|
520
|
+
required: true;
|
|
632
521
|
};
|
|
633
|
-
|
|
522
|
+
placeholder: {
|
|
634
523
|
type: import("vue").PropType<string>;
|
|
635
524
|
};
|
|
636
|
-
|
|
525
|
+
rules: {
|
|
526
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
527
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
528
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
529
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
530
|
+
} | undefined>>;
|
|
531
|
+
};
|
|
532
|
+
helperText: {
|
|
533
|
+
type: import("vue").PropType<string>;
|
|
534
|
+
};
|
|
535
|
+
successText: {
|
|
536
|
+
type: import("vue").PropType<string>;
|
|
537
|
+
};
|
|
538
|
+
loadingText: {
|
|
637
539
|
type: import("vue").PropType<string>;
|
|
638
540
|
};
|
|
541
|
+
isSuccess: {
|
|
542
|
+
type: import("vue").PropType<boolean>;
|
|
543
|
+
};
|
|
544
|
+
isLoading: {
|
|
545
|
+
type: import("vue").PropType<boolean>;
|
|
546
|
+
};
|
|
547
|
+
useField: {
|
|
548
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
549
|
+
};
|
|
550
|
+
opts: {
|
|
551
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
552
|
+
};
|
|
639
553
|
}>> & {
|
|
640
|
-
|
|
641
|
-
|
|
554
|
+
onInput?: ((event: string) => any) | undefined;
|
|
555
|
+
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
556
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "size">;
|
|
642
557
|
$attrs: {
|
|
643
558
|
[x: string]: unknown;
|
|
644
559
|
};
|
|
@@ -650,42 +565,83 @@ export declare const components: {
|
|
|
650
565
|
}>;
|
|
651
566
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
652
567
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
653
|
-
$emit: (event: "update:modelValue", event: string
|
|
568
|
+
$emit: ((event: "input", event: string) => void) & ((event: "update:modelValue", event: string) => void);
|
|
654
569
|
$el: any;
|
|
655
570
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
656
571
|
label: {
|
|
657
572
|
type: import("vue").PropType<string>;
|
|
658
|
-
}
|
|
659
|
-
|
|
573
|
+
};
|
|
574
|
+
required: {
|
|
575
|
+
type: import("vue").PropType<boolean>;
|
|
576
|
+
};
|
|
577
|
+
class: {
|
|
578
|
+
type: import("vue").PropType<string>;
|
|
660
579
|
};
|
|
661
580
|
id: {
|
|
662
581
|
type: import("vue").PropType<string>;
|
|
663
582
|
required: true;
|
|
664
583
|
};
|
|
665
|
-
|
|
666
|
-
type: import("vue").PropType<
|
|
584
|
+
disabled: {
|
|
585
|
+
type: import("vue").PropType<boolean>;
|
|
667
586
|
};
|
|
668
587
|
modelValue: {
|
|
669
|
-
type: import("vue").PropType<string
|
|
588
|
+
type: import("vue").PropType<string>;
|
|
589
|
+
};
|
|
590
|
+
error: {
|
|
591
|
+
type: import("vue").PropType<string | null>;
|
|
592
|
+
} & {
|
|
593
|
+
default: null;
|
|
594
|
+
};
|
|
595
|
+
size: {
|
|
596
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
670
597
|
} & {
|
|
671
598
|
default: string;
|
|
672
599
|
};
|
|
673
|
-
|
|
674
|
-
type: import("vue").PropType<
|
|
600
|
+
name: {
|
|
601
|
+
type: import("vue").PropType<string>;
|
|
602
|
+
required: true;
|
|
675
603
|
};
|
|
676
|
-
|
|
604
|
+
placeholder: {
|
|
677
605
|
type: import("vue").PropType<string>;
|
|
678
606
|
};
|
|
679
|
-
|
|
607
|
+
rules: {
|
|
608
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
609
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
610
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
611
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
612
|
+
} | undefined>>;
|
|
613
|
+
};
|
|
614
|
+
helperText: {
|
|
680
615
|
type: import("vue").PropType<string>;
|
|
681
616
|
};
|
|
617
|
+
successText: {
|
|
618
|
+
type: import("vue").PropType<string>;
|
|
619
|
+
};
|
|
620
|
+
loadingText: {
|
|
621
|
+
type: import("vue").PropType<string>;
|
|
622
|
+
};
|
|
623
|
+
isSuccess: {
|
|
624
|
+
type: import("vue").PropType<boolean>;
|
|
625
|
+
};
|
|
626
|
+
isLoading: {
|
|
627
|
+
type: import("vue").PropType<boolean>;
|
|
628
|
+
};
|
|
629
|
+
useField: {
|
|
630
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
631
|
+
};
|
|
632
|
+
opts: {
|
|
633
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
634
|
+
};
|
|
682
635
|
}>> & {
|
|
683
|
-
|
|
636
|
+
onInput?: ((event: string) => any) | undefined;
|
|
637
|
+
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
684
638
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
685
|
-
|
|
639
|
+
input: (event: string) => void;
|
|
640
|
+
} & {
|
|
641
|
+
"update:modelValue": (event: string) => void;
|
|
686
642
|
}, string, {
|
|
687
|
-
|
|
688
|
-
|
|
643
|
+
error: string | null;
|
|
644
|
+
size: "sm" | "md";
|
|
689
645
|
}> & {
|
|
690
646
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
691
647
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -709,32 +665,71 @@ export declare const components: {
|
|
|
709
665
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
710
666
|
label: {
|
|
711
667
|
type: import("vue").PropType<string>;
|
|
668
|
+
};
|
|
669
|
+
required: {
|
|
670
|
+
type: import("vue").PropType<boolean>;
|
|
671
|
+
};
|
|
672
|
+
class: {
|
|
673
|
+
type: import("vue").PropType<string>;
|
|
674
|
+
};
|
|
675
|
+
id: {
|
|
676
|
+
type: import("vue").PropType<string>;
|
|
677
|
+
required: true;
|
|
678
|
+
};
|
|
679
|
+
disabled: {
|
|
680
|
+
type: import("vue").PropType<boolean>;
|
|
681
|
+
};
|
|
682
|
+
modelValue: {
|
|
683
|
+
type: import("vue").PropType<string>;
|
|
684
|
+
};
|
|
685
|
+
error: {
|
|
686
|
+
type: import("vue").PropType<string | null>;
|
|
687
|
+
} & {
|
|
688
|
+
default: null;
|
|
689
|
+
};
|
|
690
|
+
size: {
|
|
691
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
712
692
|
} & {
|
|
713
693
|
default: string;
|
|
714
694
|
};
|
|
715
|
-
|
|
695
|
+
name: {
|
|
716
696
|
type: import("vue").PropType<string>;
|
|
717
697
|
required: true;
|
|
718
698
|
};
|
|
719
|
-
|
|
699
|
+
placeholder: {
|
|
700
|
+
type: import("vue").PropType<string>;
|
|
701
|
+
};
|
|
702
|
+
rules: {
|
|
703
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
704
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
705
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
706
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
707
|
+
} | undefined>>;
|
|
708
|
+
};
|
|
709
|
+
helperText: {
|
|
710
|
+
type: import("vue").PropType<string>;
|
|
711
|
+
};
|
|
712
|
+
successText: {
|
|
713
|
+
type: import("vue").PropType<string>;
|
|
714
|
+
};
|
|
715
|
+
loadingText: {
|
|
720
716
|
type: import("vue").PropType<string>;
|
|
721
717
|
};
|
|
722
|
-
|
|
723
|
-
type: import("vue").PropType<
|
|
724
|
-
} & {
|
|
725
|
-
default: string;
|
|
718
|
+
isSuccess: {
|
|
719
|
+
type: import("vue").PropType<boolean>;
|
|
726
720
|
};
|
|
727
|
-
|
|
721
|
+
isLoading: {
|
|
728
722
|
type: import("vue").PropType<boolean>;
|
|
729
723
|
};
|
|
730
|
-
|
|
731
|
-
type: import("vue").PropType<
|
|
724
|
+
useField: {
|
|
725
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
732
726
|
};
|
|
733
|
-
|
|
734
|
-
type: import("vue").PropType<string
|
|
727
|
+
opts: {
|
|
728
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
735
729
|
};
|
|
736
730
|
}>> & {
|
|
737
|
-
|
|
731
|
+
onInput?: ((event: string) => any) | undefined;
|
|
732
|
+
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
738
733
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
739
734
|
__isFragment?: undefined;
|
|
740
735
|
__isTeleport?: undefined;
|
|
@@ -742,64 +737,144 @@ export declare const components: {
|
|
|
742
737
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
743
738
|
label: {
|
|
744
739
|
type: import("vue").PropType<string>;
|
|
745
|
-
}
|
|
746
|
-
|
|
740
|
+
};
|
|
741
|
+
required: {
|
|
742
|
+
type: import("vue").PropType<boolean>;
|
|
743
|
+
};
|
|
744
|
+
class: {
|
|
745
|
+
type: import("vue").PropType<string>;
|
|
747
746
|
};
|
|
748
747
|
id: {
|
|
749
748
|
type: import("vue").PropType<string>;
|
|
750
749
|
required: true;
|
|
751
750
|
};
|
|
752
|
-
|
|
753
|
-
type: import("vue").PropType<
|
|
751
|
+
disabled: {
|
|
752
|
+
type: import("vue").PropType<boolean>;
|
|
754
753
|
};
|
|
755
754
|
modelValue: {
|
|
756
|
-
type: import("vue").PropType<string
|
|
755
|
+
type: import("vue").PropType<string>;
|
|
756
|
+
};
|
|
757
|
+
error: {
|
|
758
|
+
type: import("vue").PropType<string | null>;
|
|
759
|
+
} & {
|
|
760
|
+
default: null;
|
|
761
|
+
};
|
|
762
|
+
size: {
|
|
763
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
757
764
|
} & {
|
|
758
765
|
default: string;
|
|
759
766
|
};
|
|
760
|
-
|
|
761
|
-
type: import("vue").PropType<
|
|
767
|
+
name: {
|
|
768
|
+
type: import("vue").PropType<string>;
|
|
769
|
+
required: true;
|
|
762
770
|
};
|
|
763
|
-
|
|
771
|
+
placeholder: {
|
|
764
772
|
type: import("vue").PropType<string>;
|
|
765
773
|
};
|
|
766
|
-
|
|
774
|
+
rules: {
|
|
775
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
776
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
777
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
778
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
779
|
+
} | undefined>>;
|
|
780
|
+
};
|
|
781
|
+
helperText: {
|
|
782
|
+
type: import("vue").PropType<string>;
|
|
783
|
+
};
|
|
784
|
+
successText: {
|
|
785
|
+
type: import("vue").PropType<string>;
|
|
786
|
+
};
|
|
787
|
+
loadingText: {
|
|
767
788
|
type: import("vue").PropType<string>;
|
|
768
789
|
};
|
|
790
|
+
isSuccess: {
|
|
791
|
+
type: import("vue").PropType<boolean>;
|
|
792
|
+
};
|
|
793
|
+
isLoading: {
|
|
794
|
+
type: import("vue").PropType<boolean>;
|
|
795
|
+
};
|
|
796
|
+
useField: {
|
|
797
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
798
|
+
};
|
|
799
|
+
opts: {
|
|
800
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
801
|
+
};
|
|
769
802
|
}>> & {
|
|
770
|
-
|
|
803
|
+
onInput?: ((event: string) => any) | undefined;
|
|
804
|
+
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
771
805
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
772
|
-
|
|
806
|
+
input: (event: string) => void;
|
|
807
|
+
} & {
|
|
808
|
+
"update:modelValue": (event: string) => void;
|
|
773
809
|
}, string, {
|
|
774
|
-
|
|
775
|
-
|
|
810
|
+
error: string | null;
|
|
811
|
+
size: "sm" | "md";
|
|
776
812
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
777
813
|
$slots: {
|
|
778
|
-
label: (_: {}) => any;
|
|
779
|
-
default: (_: {}) => any;
|
|
780
814
|
icon: (_: {}) => any;
|
|
781
815
|
};
|
|
782
816
|
});
|
|
783
|
-
|
|
817
|
+
SolInputTextPassword: {
|
|
784
818
|
new (...args: any[]): {
|
|
785
819
|
$: import("vue").ComponentInternalInstance;
|
|
786
820
|
$data: {};
|
|
787
821
|
$props: Partial<{
|
|
788
|
-
|
|
789
|
-
|
|
822
|
+
required: boolean;
|
|
823
|
+
name: string;
|
|
824
|
+
placeholder: string;
|
|
790
825
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
791
826
|
label: {
|
|
792
827
|
type: import("vue").PropType<string>;
|
|
828
|
+
};
|
|
829
|
+
required: {
|
|
830
|
+
type: import("vue").PropType<boolean>;
|
|
793
831
|
} & {
|
|
794
|
-
default:
|
|
832
|
+
default: boolean;
|
|
795
833
|
};
|
|
796
834
|
id: {
|
|
797
835
|
type: import("vue").PropType<string>;
|
|
798
836
|
required: true;
|
|
837
|
+
};
|
|
838
|
+
disabled: {
|
|
839
|
+
type: import("vue").PropType<boolean>;
|
|
840
|
+
};
|
|
841
|
+
modelValue: {
|
|
842
|
+
type: import("vue").PropType<string>;
|
|
843
|
+
};
|
|
844
|
+
error: {
|
|
845
|
+
type: import("vue").PropType<string | null>;
|
|
846
|
+
};
|
|
847
|
+
size: {
|
|
848
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
849
|
+
};
|
|
850
|
+
name: {
|
|
851
|
+
type: import("vue").PropType<string>;
|
|
852
|
+
required: true;
|
|
853
|
+
} & {
|
|
854
|
+
default: string;
|
|
855
|
+
};
|
|
856
|
+
placeholder: {
|
|
857
|
+
type: import("vue").PropType<string>;
|
|
799
858
|
} & {
|
|
800
859
|
default: string;
|
|
801
860
|
};
|
|
802
|
-
|
|
861
|
+
rules: {
|
|
862
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
863
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
864
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
865
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
866
|
+
} | undefined>>;
|
|
867
|
+
};
|
|
868
|
+
helperText: {
|
|
869
|
+
type: import("vue").PropType<string>;
|
|
870
|
+
};
|
|
871
|
+
useField: {
|
|
872
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
873
|
+
};
|
|
874
|
+
opts: {
|
|
875
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
876
|
+
};
|
|
877
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "name" | "placeholder">;
|
|
803
878
|
$attrs: {
|
|
804
879
|
[x: string]: unknown;
|
|
805
880
|
};
|
|
@@ -816,18 +891,59 @@ export declare const components: {
|
|
|
816
891
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
817
892
|
label: {
|
|
818
893
|
type: import("vue").PropType<string>;
|
|
894
|
+
};
|
|
895
|
+
required: {
|
|
896
|
+
type: import("vue").PropType<boolean>;
|
|
819
897
|
} & {
|
|
820
|
-
default:
|
|
898
|
+
default: boolean;
|
|
821
899
|
};
|
|
822
900
|
id: {
|
|
823
901
|
type: import("vue").PropType<string>;
|
|
824
902
|
required: true;
|
|
903
|
+
};
|
|
904
|
+
disabled: {
|
|
905
|
+
type: import("vue").PropType<boolean>;
|
|
906
|
+
};
|
|
907
|
+
modelValue: {
|
|
908
|
+
type: import("vue").PropType<string>;
|
|
909
|
+
};
|
|
910
|
+
error: {
|
|
911
|
+
type: import("vue").PropType<string | null>;
|
|
912
|
+
};
|
|
913
|
+
size: {
|
|
914
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
915
|
+
};
|
|
916
|
+
name: {
|
|
917
|
+
type: import("vue").PropType<string>;
|
|
918
|
+
required: true;
|
|
919
|
+
} & {
|
|
920
|
+
default: string;
|
|
921
|
+
};
|
|
922
|
+
placeholder: {
|
|
923
|
+
type: import("vue").PropType<string>;
|
|
825
924
|
} & {
|
|
826
925
|
default: string;
|
|
827
926
|
};
|
|
927
|
+
rules: {
|
|
928
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
929
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
930
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
931
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
932
|
+
} | undefined>>;
|
|
933
|
+
};
|
|
934
|
+
helperText: {
|
|
935
|
+
type: import("vue").PropType<string>;
|
|
936
|
+
};
|
|
937
|
+
useField: {
|
|
938
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
939
|
+
};
|
|
940
|
+
opts: {
|
|
941
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
942
|
+
};
|
|
828
943
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
829
|
-
|
|
830
|
-
|
|
944
|
+
required: boolean;
|
|
945
|
+
name: string;
|
|
946
|
+
placeholder: string;
|
|
831
947
|
}> & {
|
|
832
948
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
833
949
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -851,15 +967,55 @@ export declare const components: {
|
|
|
851
967
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
852
968
|
label: {
|
|
853
969
|
type: import("vue").PropType<string>;
|
|
970
|
+
};
|
|
971
|
+
required: {
|
|
972
|
+
type: import("vue").PropType<boolean>;
|
|
854
973
|
} & {
|
|
855
|
-
default:
|
|
974
|
+
default: boolean;
|
|
856
975
|
};
|
|
857
976
|
id: {
|
|
858
977
|
type: import("vue").PropType<string>;
|
|
859
978
|
required: true;
|
|
979
|
+
};
|
|
980
|
+
disabled: {
|
|
981
|
+
type: import("vue").PropType<boolean>;
|
|
982
|
+
};
|
|
983
|
+
modelValue: {
|
|
984
|
+
type: import("vue").PropType<string>;
|
|
985
|
+
};
|
|
986
|
+
error: {
|
|
987
|
+
type: import("vue").PropType<string | null>;
|
|
988
|
+
};
|
|
989
|
+
size: {
|
|
990
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
991
|
+
};
|
|
992
|
+
name: {
|
|
993
|
+
type: import("vue").PropType<string>;
|
|
994
|
+
required: true;
|
|
995
|
+
} & {
|
|
996
|
+
default: string;
|
|
997
|
+
};
|
|
998
|
+
placeholder: {
|
|
999
|
+
type: import("vue").PropType<string>;
|
|
860
1000
|
} & {
|
|
861
1001
|
default: string;
|
|
862
1002
|
};
|
|
1003
|
+
rules: {
|
|
1004
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
1005
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1006
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
1007
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1008
|
+
} | undefined>>;
|
|
1009
|
+
};
|
|
1010
|
+
helperText: {
|
|
1011
|
+
type: import("vue").PropType<string>;
|
|
1012
|
+
};
|
|
1013
|
+
useField: {
|
|
1014
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1015
|
+
};
|
|
1016
|
+
opts: {
|
|
1017
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
1018
|
+
};
|
|
863
1019
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
864
1020
|
__isFragment?: undefined;
|
|
865
1021
|
__isTeleport?: undefined;
|
|
@@ -867,18 +1023,59 @@ export declare const components: {
|
|
|
867
1023
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
868
1024
|
label: {
|
|
869
1025
|
type: import("vue").PropType<string>;
|
|
1026
|
+
};
|
|
1027
|
+
required: {
|
|
1028
|
+
type: import("vue").PropType<boolean>;
|
|
870
1029
|
} & {
|
|
871
|
-
default:
|
|
1030
|
+
default: boolean;
|
|
872
1031
|
};
|
|
873
1032
|
id: {
|
|
874
1033
|
type: import("vue").PropType<string>;
|
|
875
1034
|
required: true;
|
|
1035
|
+
};
|
|
1036
|
+
disabled: {
|
|
1037
|
+
type: import("vue").PropType<boolean>;
|
|
1038
|
+
};
|
|
1039
|
+
modelValue: {
|
|
1040
|
+
type: import("vue").PropType<string>;
|
|
1041
|
+
};
|
|
1042
|
+
error: {
|
|
1043
|
+
type: import("vue").PropType<string | null>;
|
|
1044
|
+
};
|
|
1045
|
+
size: {
|
|
1046
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
1047
|
+
};
|
|
1048
|
+
name: {
|
|
1049
|
+
type: import("vue").PropType<string>;
|
|
1050
|
+
required: true;
|
|
1051
|
+
} & {
|
|
1052
|
+
default: string;
|
|
1053
|
+
};
|
|
1054
|
+
placeholder: {
|
|
1055
|
+
type: import("vue").PropType<string>;
|
|
876
1056
|
} & {
|
|
877
1057
|
default: string;
|
|
878
1058
|
};
|
|
1059
|
+
rules: {
|
|
1060
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
1061
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1062
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
|
|
1063
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1064
|
+
} | undefined>>;
|
|
1065
|
+
};
|
|
1066
|
+
helperText: {
|
|
1067
|
+
type: import("vue").PropType<string>;
|
|
1068
|
+
};
|
|
1069
|
+
useField: {
|
|
1070
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1071
|
+
};
|
|
1072
|
+
opts: {
|
|
1073
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
1074
|
+
};
|
|
879
1075
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
880
|
-
|
|
881
|
-
|
|
1076
|
+
required: boolean;
|
|
1077
|
+
name: string;
|
|
1078
|
+
placeholder: string;
|
|
882
1079
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
883
1080
|
$slots: {};
|
|
884
1081
|
});
|
|
@@ -1259,7 +1456,7 @@ export declare const components: {
|
|
|
1259
1456
|
required: true;
|
|
1260
1457
|
};
|
|
1261
1458
|
value: {
|
|
1262
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1459
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
|
|
1263
1460
|
required: true;
|
|
1264
1461
|
};
|
|
1265
1462
|
label: {
|
|
@@ -1272,8 +1469,11 @@ export declare const components: {
|
|
|
1272
1469
|
class: {
|
|
1273
1470
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1274
1471
|
};
|
|
1472
|
+
indeterminate: {
|
|
1473
|
+
type: import("vue").PropType<boolean>;
|
|
1474
|
+
};
|
|
1275
1475
|
}>> & {
|
|
1276
|
-
onChange?: ((value: import("./components/forms/checkbox/
|
|
1476
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1277
1477
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
1278
1478
|
$attrs: {
|
|
1279
1479
|
[x: string]: unknown;
|
|
@@ -1286,7 +1486,7 @@ export declare const components: {
|
|
|
1286
1486
|
}>;
|
|
1287
1487
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1288
1488
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1289
|
-
$emit: (event: "change", value: import("./components/forms/checkbox/
|
|
1489
|
+
$emit: (event: "change", value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1290
1490
|
$el: any;
|
|
1291
1491
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1292
1492
|
id: {
|
|
@@ -1298,7 +1498,7 @@ export declare const components: {
|
|
|
1298
1498
|
required: true;
|
|
1299
1499
|
};
|
|
1300
1500
|
value: {
|
|
1301
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1501
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
|
|
1302
1502
|
required: true;
|
|
1303
1503
|
};
|
|
1304
1504
|
label: {
|
|
@@ -1311,10 +1511,13 @@ export declare const components: {
|
|
|
1311
1511
|
class: {
|
|
1312
1512
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1313
1513
|
};
|
|
1514
|
+
indeterminate: {
|
|
1515
|
+
type: import("vue").PropType<boolean>;
|
|
1516
|
+
};
|
|
1314
1517
|
}>> & {
|
|
1315
|
-
onChange?: ((value: import("./components/forms/checkbox/
|
|
1518
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1316
1519
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1317
|
-
change: (value: import("./components/forms/checkbox/
|
|
1520
|
+
change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1318
1521
|
}, string, {}> & {
|
|
1319
1522
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1320
1523
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1345,7 +1548,7 @@ export declare const components: {
|
|
|
1345
1548
|
required: true;
|
|
1346
1549
|
};
|
|
1347
1550
|
value: {
|
|
1348
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1551
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
|
|
1349
1552
|
required: true;
|
|
1350
1553
|
};
|
|
1351
1554
|
label: {
|
|
@@ -1358,8 +1561,11 @@ export declare const components: {
|
|
|
1358
1561
|
class: {
|
|
1359
1562
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1360
1563
|
};
|
|
1564
|
+
indeterminate: {
|
|
1565
|
+
type: import("vue").PropType<boolean>;
|
|
1566
|
+
};
|
|
1361
1567
|
}>> & {
|
|
1362
|
-
onChange?: ((value: import("./components/forms/checkbox/
|
|
1568
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1363
1569
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1364
1570
|
__isFragment?: undefined;
|
|
1365
1571
|
__isTeleport?: undefined;
|
|
@@ -1374,7 +1580,7 @@ export declare const components: {
|
|
|
1374
1580
|
required: true;
|
|
1375
1581
|
};
|
|
1376
1582
|
value: {
|
|
1377
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1583
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
|
|
1378
1584
|
required: true;
|
|
1379
1585
|
};
|
|
1380
1586
|
label: {
|
|
@@ -1387,10 +1593,13 @@ export declare const components: {
|
|
|
1387
1593
|
class: {
|
|
1388
1594
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1389
1595
|
};
|
|
1596
|
+
indeterminate: {
|
|
1597
|
+
type: import("vue").PropType<boolean>;
|
|
1598
|
+
};
|
|
1390
1599
|
}>> & {
|
|
1391
|
-
onChange?: ((value: import("./components/forms/checkbox/
|
|
1600
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1392
1601
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1393
|
-
change: (value: import("./components/forms/checkbox/
|
|
1602
|
+
change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1394
1603
|
}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1395
1604
|
$slots: {};
|
|
1396
1605
|
});
|
|
@@ -1411,7 +1620,7 @@ export declare const components: {
|
|
|
1411
1620
|
required: true;
|
|
1412
1621
|
};
|
|
1413
1622
|
modelValue: {
|
|
1414
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1623
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1415
1624
|
};
|
|
1416
1625
|
error: {
|
|
1417
1626
|
type: import("vue").PropType<string>;
|
|
@@ -1425,7 +1634,7 @@ export declare const components: {
|
|
|
1425
1634
|
type: import("vue").PropType<string>;
|
|
1426
1635
|
};
|
|
1427
1636
|
checkboxes: {
|
|
1428
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1637
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").Checkbox[]>;
|
|
1429
1638
|
required: true;
|
|
1430
1639
|
};
|
|
1431
1640
|
direction: {
|
|
@@ -1434,7 +1643,7 @@ export declare const components: {
|
|
|
1434
1643
|
default: string;
|
|
1435
1644
|
};
|
|
1436
1645
|
}>> & {
|
|
1437
|
-
onChange?: ((value: import("./components/forms/checkbox/
|
|
1646
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1438
1647
|
"onUpdate:modelValue"?: ((a: any) => any) | undefined;
|
|
1439
1648
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "hideTitle" | "direction">;
|
|
1440
1649
|
$attrs: {
|
|
@@ -1448,7 +1657,7 @@ export declare const components: {
|
|
|
1448
1657
|
}>;
|
|
1449
1658
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1450
1659
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1451
|
-
$emit: ((event: "update:modelValue", a: any) => void) & ((event: "change", value: import("./components/forms/checkbox/
|
|
1660
|
+
$emit: ((event: "update:modelValue", a: any) => void) & ((event: "change", value: import("./components/forms/checkbox/type").CheckboxValue) => void);
|
|
1452
1661
|
$el: any;
|
|
1453
1662
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1454
1663
|
title: {
|
|
@@ -1460,7 +1669,7 @@ export declare const components: {
|
|
|
1460
1669
|
required: true;
|
|
1461
1670
|
};
|
|
1462
1671
|
modelValue: {
|
|
1463
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1672
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1464
1673
|
};
|
|
1465
1674
|
error: {
|
|
1466
1675
|
type: import("vue").PropType<string>;
|
|
@@ -1474,7 +1683,7 @@ export declare const components: {
|
|
|
1474
1683
|
type: import("vue").PropType<string>;
|
|
1475
1684
|
};
|
|
1476
1685
|
checkboxes: {
|
|
1477
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1686
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").Checkbox[]>;
|
|
1478
1687
|
required: true;
|
|
1479
1688
|
};
|
|
1480
1689
|
direction: {
|
|
@@ -1483,10 +1692,10 @@ export declare const components: {
|
|
|
1483
1692
|
default: string;
|
|
1484
1693
|
};
|
|
1485
1694
|
}>> & {
|
|
1486
|
-
onChange?: ((value: import("./components/forms/checkbox/
|
|
1695
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1487
1696
|
"onUpdate:modelValue"?: ((a: any) => any) | undefined;
|
|
1488
1697
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1489
|
-
change: (value: import("./components/forms/checkbox/
|
|
1698
|
+
change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1490
1699
|
} & {
|
|
1491
1700
|
"update:modelValue": (a: any) => void;
|
|
1492
1701
|
}, string, {
|
|
@@ -1522,7 +1731,7 @@ export declare const components: {
|
|
|
1522
1731
|
required: true;
|
|
1523
1732
|
};
|
|
1524
1733
|
modelValue: {
|
|
1525
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1734
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1526
1735
|
};
|
|
1527
1736
|
error: {
|
|
1528
1737
|
type: import("vue").PropType<string>;
|
|
@@ -1536,7 +1745,7 @@ export declare const components: {
|
|
|
1536
1745
|
type: import("vue").PropType<string>;
|
|
1537
1746
|
};
|
|
1538
1747
|
checkboxes: {
|
|
1539
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1748
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").Checkbox[]>;
|
|
1540
1749
|
required: true;
|
|
1541
1750
|
};
|
|
1542
1751
|
direction: {
|
|
@@ -1545,7 +1754,7 @@ export declare const components: {
|
|
|
1545
1754
|
default: string;
|
|
1546
1755
|
};
|
|
1547
1756
|
}>> & {
|
|
1548
|
-
onChange?: ((value: import("./components/forms/checkbox/
|
|
1757
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1549
1758
|
"onUpdate:modelValue"?: ((a: any) => any) | undefined;
|
|
1550
1759
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1551
1760
|
__isFragment?: undefined;
|
|
@@ -1561,7 +1770,7 @@ export declare const components: {
|
|
|
1561
1770
|
required: true;
|
|
1562
1771
|
};
|
|
1563
1772
|
modelValue: {
|
|
1564
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1773
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1565
1774
|
};
|
|
1566
1775
|
error: {
|
|
1567
1776
|
type: import("vue").PropType<string>;
|
|
@@ -1575,7 +1784,7 @@ export declare const components: {
|
|
|
1575
1784
|
type: import("vue").PropType<string>;
|
|
1576
1785
|
};
|
|
1577
1786
|
checkboxes: {
|
|
1578
|
-
type: import("vue").PropType<import("./components/forms/checkbox/
|
|
1787
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").Checkbox[]>;
|
|
1579
1788
|
required: true;
|
|
1580
1789
|
};
|
|
1581
1790
|
direction: {
|
|
@@ -1584,10 +1793,10 @@ export declare const components: {
|
|
|
1584
1793
|
default: string;
|
|
1585
1794
|
};
|
|
1586
1795
|
}>> & {
|
|
1587
|
-
onChange?: ((value: import("./components/forms/checkbox/
|
|
1796
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1588
1797
|
"onUpdate:modelValue"?: ((a: any) => any) | undefined;
|
|
1589
1798
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1590
|
-
change: (value: import("./components/forms/checkbox/
|
|
1799
|
+
change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1591
1800
|
} & {
|
|
1592
1801
|
"update:modelValue": (a: any) => void;
|
|
1593
1802
|
}, string, {
|
|
@@ -1599,7 +1808,7 @@ export declare const components: {
|
|
|
1599
1808
|
id: string;
|
|
1600
1809
|
}) => any;
|
|
1601
1810
|
default: (_: {
|
|
1602
|
-
checkboxes: import("./components/forms/checkbox/
|
|
1811
|
+
checkboxes: import("./components/forms/checkbox/type").Checkbox[];
|
|
1603
1812
|
direction: "row" | "column";
|
|
1604
1813
|
}) => any;
|
|
1605
1814
|
};
|
|
@@ -1608,38 +1817,47 @@ export declare const components: {
|
|
|
1608
1817
|
new (...args: any[]): {
|
|
1609
1818
|
$: import("vue").ComponentInternalInstance;
|
|
1610
1819
|
$data: {};
|
|
1611
|
-
$props: Partial<{
|
|
1612
|
-
|
|
1820
|
+
$props: Partial<{
|
|
1821
|
+
textDirection: "left" | "right";
|
|
1822
|
+
stretchLabel: boolean;
|
|
1823
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1824
|
+
label: {
|
|
1613
1825
|
type: import("vue").PropType<string>;
|
|
1614
1826
|
required: true;
|
|
1615
1827
|
};
|
|
1616
|
-
|
|
1828
|
+
class: {
|
|
1829
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1830
|
+
};
|
|
1831
|
+
id: {
|
|
1617
1832
|
type: import("vue").PropType<string>;
|
|
1618
1833
|
required: true;
|
|
1619
1834
|
};
|
|
1620
1835
|
value: {
|
|
1621
1836
|
type: import("vue").PropType<string>;
|
|
1622
|
-
required: true;
|
|
1623
1837
|
};
|
|
1624
|
-
|
|
1838
|
+
name: {
|
|
1625
1839
|
type: import("vue").PropType<string>;
|
|
1626
1840
|
required: true;
|
|
1627
1841
|
};
|
|
1628
1842
|
checked: {
|
|
1629
1843
|
type: import("vue").PropType<boolean>;
|
|
1630
1844
|
};
|
|
1631
|
-
|
|
1632
|
-
type: import("vue").PropType<
|
|
1845
|
+
textDirection: {
|
|
1846
|
+
type: import("vue").PropType<"left" | "right">;
|
|
1847
|
+
} & {
|
|
1848
|
+
default: string;
|
|
1633
1849
|
};
|
|
1634
1850
|
hideLabel: {
|
|
1635
1851
|
type: import("vue").PropType<boolean>;
|
|
1636
1852
|
};
|
|
1637
|
-
|
|
1853
|
+
stretchLabel: {
|
|
1638
1854
|
type: import("vue").PropType<boolean>;
|
|
1855
|
+
} & {
|
|
1856
|
+
default: boolean;
|
|
1639
1857
|
};
|
|
1640
1858
|
}>> & {
|
|
1641
|
-
onChange?: ((value: string) => any) | undefined;
|
|
1642
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps,
|
|
1859
|
+
onChange?: ((value: string | boolean) => any) | undefined;
|
|
1860
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "textDirection" | "stretchLabel">;
|
|
1643
1861
|
$attrs: {
|
|
1644
1862
|
[x: string]: unknown;
|
|
1645
1863
|
};
|
|
@@ -1651,42 +1869,51 @@ export declare const components: {
|
|
|
1651
1869
|
}>;
|
|
1652
1870
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1653
1871
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1654
|
-
$emit: (event: "change", value: string) => void;
|
|
1872
|
+
$emit: (event: "change", value: string | boolean) => void;
|
|
1655
1873
|
$el: any;
|
|
1656
1874
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1657
|
-
|
|
1875
|
+
label: {
|
|
1658
1876
|
type: import("vue").PropType<string>;
|
|
1659
1877
|
required: true;
|
|
1660
1878
|
};
|
|
1661
|
-
|
|
1879
|
+
class: {
|
|
1880
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1881
|
+
};
|
|
1882
|
+
id: {
|
|
1662
1883
|
type: import("vue").PropType<string>;
|
|
1663
1884
|
required: true;
|
|
1664
1885
|
};
|
|
1665
1886
|
value: {
|
|
1666
1887
|
type: import("vue").PropType<string>;
|
|
1667
|
-
required: true;
|
|
1668
1888
|
};
|
|
1669
|
-
|
|
1889
|
+
name: {
|
|
1670
1890
|
type: import("vue").PropType<string>;
|
|
1671
1891
|
required: true;
|
|
1672
1892
|
};
|
|
1673
1893
|
checked: {
|
|
1674
1894
|
type: import("vue").PropType<boolean>;
|
|
1675
1895
|
};
|
|
1676
|
-
|
|
1677
|
-
type: import("vue").PropType<
|
|
1896
|
+
textDirection: {
|
|
1897
|
+
type: import("vue").PropType<"left" | "right">;
|
|
1898
|
+
} & {
|
|
1899
|
+
default: string;
|
|
1678
1900
|
};
|
|
1679
1901
|
hideLabel: {
|
|
1680
1902
|
type: import("vue").PropType<boolean>;
|
|
1681
1903
|
};
|
|
1682
|
-
|
|
1904
|
+
stretchLabel: {
|
|
1683
1905
|
type: import("vue").PropType<boolean>;
|
|
1906
|
+
} & {
|
|
1907
|
+
default: boolean;
|
|
1684
1908
|
};
|
|
1685
1909
|
}>> & {
|
|
1686
|
-
onChange?: ((value: string) => any) | undefined;
|
|
1910
|
+
onChange?: ((value: string | boolean) => any) | undefined;
|
|
1687
1911
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1688
|
-
change: (value: string) => void;
|
|
1689
|
-
}, string, {
|
|
1912
|
+
change: (value: string | boolean) => void;
|
|
1913
|
+
}, string, {
|
|
1914
|
+
textDirection: "left" | "right";
|
|
1915
|
+
stretchLabel: boolean;
|
|
1916
|
+
}> & {
|
|
1690
1917
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1691
1918
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
1692
1919
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1707,74 +1934,89 @@ export declare const components: {
|
|
|
1707
1934
|
$nextTick: typeof import("vue").nextTick;
|
|
1708
1935
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
1709
1936
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
1710
|
-
|
|
1937
|
+
label: {
|
|
1711
1938
|
type: import("vue").PropType<string>;
|
|
1712
1939
|
required: true;
|
|
1713
1940
|
};
|
|
1714
|
-
|
|
1941
|
+
class: {
|
|
1942
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1943
|
+
};
|
|
1944
|
+
id: {
|
|
1715
1945
|
type: import("vue").PropType<string>;
|
|
1716
1946
|
required: true;
|
|
1717
1947
|
};
|
|
1718
1948
|
value: {
|
|
1719
1949
|
type: import("vue").PropType<string>;
|
|
1720
|
-
required: true;
|
|
1721
1950
|
};
|
|
1722
|
-
|
|
1951
|
+
name: {
|
|
1723
1952
|
type: import("vue").PropType<string>;
|
|
1724
1953
|
required: true;
|
|
1725
1954
|
};
|
|
1726
1955
|
checked: {
|
|
1727
1956
|
type: import("vue").PropType<boolean>;
|
|
1728
1957
|
};
|
|
1729
|
-
|
|
1730
|
-
type: import("vue").PropType<
|
|
1958
|
+
textDirection: {
|
|
1959
|
+
type: import("vue").PropType<"left" | "right">;
|
|
1960
|
+
} & {
|
|
1961
|
+
default: string;
|
|
1731
1962
|
};
|
|
1732
1963
|
hideLabel: {
|
|
1733
1964
|
type: import("vue").PropType<boolean>;
|
|
1734
1965
|
};
|
|
1735
|
-
|
|
1966
|
+
stretchLabel: {
|
|
1736
1967
|
type: import("vue").PropType<boolean>;
|
|
1968
|
+
} & {
|
|
1969
|
+
default: boolean;
|
|
1737
1970
|
};
|
|
1738
1971
|
}>> & {
|
|
1739
|
-
onChange?: ((value: string) => any) | undefined;
|
|
1972
|
+
onChange?: ((value: string | boolean) => any) | undefined;
|
|
1740
1973
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1741
1974
|
__isFragment?: undefined;
|
|
1742
1975
|
__isTeleport?: undefined;
|
|
1743
1976
|
__isSuspense?: undefined;
|
|
1744
1977
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1745
|
-
|
|
1978
|
+
label: {
|
|
1746
1979
|
type: import("vue").PropType<string>;
|
|
1747
1980
|
required: true;
|
|
1748
1981
|
};
|
|
1749
|
-
|
|
1982
|
+
class: {
|
|
1983
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1984
|
+
};
|
|
1985
|
+
id: {
|
|
1750
1986
|
type: import("vue").PropType<string>;
|
|
1751
1987
|
required: true;
|
|
1752
1988
|
};
|
|
1753
1989
|
value: {
|
|
1754
1990
|
type: import("vue").PropType<string>;
|
|
1755
|
-
required: true;
|
|
1756
1991
|
};
|
|
1757
|
-
|
|
1992
|
+
name: {
|
|
1758
1993
|
type: import("vue").PropType<string>;
|
|
1759
1994
|
required: true;
|
|
1760
1995
|
};
|
|
1761
1996
|
checked: {
|
|
1762
1997
|
type: import("vue").PropType<boolean>;
|
|
1763
1998
|
};
|
|
1764
|
-
|
|
1765
|
-
type: import("vue").PropType<
|
|
1999
|
+
textDirection: {
|
|
2000
|
+
type: import("vue").PropType<"left" | "right">;
|
|
2001
|
+
} & {
|
|
2002
|
+
default: string;
|
|
1766
2003
|
};
|
|
1767
2004
|
hideLabel: {
|
|
1768
2005
|
type: import("vue").PropType<boolean>;
|
|
1769
2006
|
};
|
|
1770
|
-
|
|
2007
|
+
stretchLabel: {
|
|
1771
2008
|
type: import("vue").PropType<boolean>;
|
|
2009
|
+
} & {
|
|
2010
|
+
default: boolean;
|
|
1772
2011
|
};
|
|
1773
2012
|
}>> & {
|
|
1774
|
-
onChange?: ((value: string) => any) | undefined;
|
|
2013
|
+
onChange?: ((value: string | boolean) => any) | undefined;
|
|
1775
2014
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1776
|
-
change: (value: string) => void;
|
|
1777
|
-
}, string, {
|
|
2015
|
+
change: (value: string | boolean) => void;
|
|
2016
|
+
}, string, {
|
|
2017
|
+
textDirection: "left" | "right";
|
|
2018
|
+
stretchLabel: boolean;
|
|
2019
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1778
2020
|
$slots: {};
|
|
1779
2021
|
});
|
|
1780
2022
|
SolDropdown: {
|
|
@@ -2864,7 +3106,7 @@ export declare const components: {
|
|
|
2864
3106
|
$data: {};
|
|
2865
3107
|
$props: Partial<{
|
|
2866
3108
|
label: string;
|
|
2867
|
-
position: ("bottom" | "top") | ("
|
|
3109
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
2868
3110
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2869
3111
|
label: {
|
|
2870
3112
|
type: import("vue").PropType<string>;
|
|
@@ -2876,7 +3118,7 @@ export declare const components: {
|
|
|
2876
3118
|
required: true;
|
|
2877
3119
|
};
|
|
2878
3120
|
position: {
|
|
2879
|
-
type: import("vue").PropType<("bottom" | "top") | ("
|
|
3121
|
+
type: import("vue").PropType<("bottom" | "top") | ("left" | "right")>;
|
|
2880
3122
|
} & {
|
|
2881
3123
|
default: string;
|
|
2882
3124
|
};
|
|
@@ -2905,13 +3147,13 @@ export declare const components: {
|
|
|
2905
3147
|
required: true;
|
|
2906
3148
|
};
|
|
2907
3149
|
position: {
|
|
2908
|
-
type: import("vue").PropType<("bottom" | "top") | ("
|
|
3150
|
+
type: import("vue").PropType<("bottom" | "top") | ("left" | "right")>;
|
|
2909
3151
|
} & {
|
|
2910
3152
|
default: string;
|
|
2911
3153
|
};
|
|
2912
3154
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
2913
3155
|
label: string;
|
|
2914
|
-
position: ("bottom" | "top") | ("
|
|
3156
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
2915
3157
|
}> & {
|
|
2916
3158
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
2917
3159
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2943,7 +3185,7 @@ export declare const components: {
|
|
|
2943
3185
|
required: true;
|
|
2944
3186
|
};
|
|
2945
3187
|
position: {
|
|
2946
|
-
type: import("vue").PropType<("bottom" | "top") | ("
|
|
3188
|
+
type: import("vue").PropType<("bottom" | "top") | ("left" | "right")>;
|
|
2947
3189
|
} & {
|
|
2948
3190
|
default: string;
|
|
2949
3191
|
};
|
|
@@ -2962,13 +3204,13 @@ export declare const components: {
|
|
|
2962
3204
|
required: true;
|
|
2963
3205
|
};
|
|
2964
3206
|
position: {
|
|
2965
|
-
type: import("vue").PropType<("bottom" | "top") | ("
|
|
3207
|
+
type: import("vue").PropType<("bottom" | "top") | ("left" | "right")>;
|
|
2966
3208
|
} & {
|
|
2967
3209
|
default: string;
|
|
2968
3210
|
};
|
|
2969
3211
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
2970
3212
|
label: string;
|
|
2971
|
-
position: ("bottom" | "top") | ("
|
|
3213
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
2972
3214
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2973
3215
|
$slots: {
|
|
2974
3216
|
label: (_: {
|
|
@@ -3230,4 +3472,4 @@ export declare const components: {
|
|
|
3230
3472
|
});
|
|
3231
3473
|
};
|
|
3232
3474
|
export declare function install(App: App): void;
|
|
3233
|
-
export { SolButton, SolButtonDestructive,
|
|
3475
|
+
export { SolButton, SolButtonDestructive, SolTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolDropdown, SolSelect, SolChip, SolAccordion, SolMenu, SolMenuItemLink, SolMenuNavigationLinks, };
|