tsv2-library 0.1.4 → 0.1.6
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/src/components/v2/InputPhoneNumber/InputPhoneNumber.vue.d.ts +7 -0
- package/dist/tsv2-library.cjs.js +2 -2
- package/dist/tsv2-library.cjs.js.map +1 -1
- package/dist/tsv2-library.es.js +1006 -993
- package/dist/tsv2-library.es.js.map +1 -1
- package/dist/tsv2-library.umd.js +2 -2
- package/dist/tsv2-library.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/v2/InputPhoneNumber/InputPhoneNumber.vue.d.ts +7 -0
|
@@ -8,6 +8,13 @@ export interface InputPhoneNumberProps {
|
|
|
8
8
|
* ModelValue of the input.
|
|
9
9
|
*/
|
|
10
10
|
modelValue?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Sets the initial value of the field.
|
|
13
|
+
* This will only available with option 'useValidator'.
|
|
14
|
+
*
|
|
15
|
+
* In usecase like edit form, you need to display the previous inputted value.
|
|
16
|
+
*/
|
|
17
|
+
value?: string;
|
|
11
18
|
/**
|
|
12
19
|
* The input label. Tell the user what input is this.
|
|
13
20
|
*/
|