voiptime-components 1.12.42 → 1.12.44
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/index.cjs.js +27 -27
- package/dist/index.css +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.es.js +4164 -4140
- package/dist/index.umd.js +27 -27
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -336,6 +336,7 @@ declare const __VLS_component_8: DefineComponent<VtSelectProps, {
|
|
|
336
336
|
status: VtInputStatus;
|
|
337
337
|
clearable: boolean;
|
|
338
338
|
showPassword: boolean;
|
|
339
|
+
outlined: boolean;
|
|
339
340
|
rows: number;
|
|
340
341
|
autosize: boolean | VtInputAutosizeConfig;
|
|
341
342
|
validateOnInput: boolean;
|
|
@@ -379,6 +380,7 @@ declare const __VLS_component_8: DefineComponent<VtSelectProps, {
|
|
|
379
380
|
status: VtInputStatus;
|
|
380
381
|
clearable: boolean;
|
|
381
382
|
showPassword: boolean;
|
|
383
|
+
outlined: boolean;
|
|
382
384
|
rows: number;
|
|
383
385
|
autosize: boolean | VtInputAutosizeConfig;
|
|
384
386
|
validateOnInput: boolean;
|
|
@@ -568,6 +570,7 @@ declare function __VLS_template_8(): {
|
|
|
568
570
|
status: VtInputStatus;
|
|
569
571
|
clearable: boolean;
|
|
570
572
|
showPassword: boolean;
|
|
573
|
+
outlined: boolean;
|
|
571
574
|
rows: number;
|
|
572
575
|
autosize: boolean | VtInputAutosizeConfig;
|
|
573
576
|
validateOnInput: boolean;
|
|
@@ -611,6 +614,7 @@ declare function __VLS_template_8(): {
|
|
|
611
614
|
status: VtInputStatus;
|
|
612
615
|
clearable: boolean;
|
|
613
616
|
showPassword: boolean;
|
|
617
|
+
outlined: boolean;
|
|
614
618
|
rows: number;
|
|
615
619
|
autosize: boolean | VtInputAutosizeConfig;
|
|
616
620
|
validateOnInput: boolean;
|
|
@@ -1632,6 +1636,7 @@ export declare const VInput: DefineComponent<VtInputProps, {
|
|
|
1632
1636
|
status: VtInputStatus;
|
|
1633
1637
|
clearable: boolean;
|
|
1634
1638
|
showPassword: boolean;
|
|
1639
|
+
outlined: boolean;
|
|
1635
1640
|
rows: number;
|
|
1636
1641
|
autosize: boolean | VtInputAutosizeConfig;
|
|
1637
1642
|
validateOnInput: boolean;
|
|
@@ -2062,6 +2067,7 @@ export declare interface VtInputProps {
|
|
|
2062
2067
|
placeholder?: string;
|
|
2063
2068
|
helperText?: string;
|
|
2064
2069
|
errorMessage?: string;
|
|
2070
|
+
outlined?: boolean;
|
|
2065
2071
|
id?: string;
|
|
2066
2072
|
name?: string;
|
|
2067
2073
|
tabindex?: number;
|