tsv2-library 0.2.87 → 0.2.89
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/DatePicker/DatePicker.vue.d.ts +4 -0
- package/dist/src/components/v2/DayPicker/DayPicker.vue.d.ts +4 -0
- package/dist/src/components/v2/InputEmail/InputEmail.vue.d.ts +1 -0
- package/dist/src/components/v2/InputText/InputText.vue.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/tsv2-library.es.js +727 -693
- package/package.json +1 -1
- package/src/components/v2/DatePicker/DatePicker.vue.d.ts +4 -0
- package/src/components/v2/DayPicker/DayPicker.vue.d.ts +4 -0
- package/src/components/v2/InputEmail/InputEmail.vue.d.ts +1 -0
- package/src/components/v2/InputText/InputText.vue.d.ts +1 -0
- package/src/presets/datatable/index.js +4 -2
- package/src/presets/multiselect/index.js +2 -2
|
@@ -8,6 +8,10 @@ export interface TSDatePickerProps {
|
|
|
8
8
|
* TSDatePicker modelValue is day index from 0
|
|
9
9
|
*/
|
|
10
10
|
modelValue?: number[];
|
|
11
|
+
/**
|
|
12
|
+
* TSDatePicker initialValue is day index from 0
|
|
13
|
+
*/
|
|
14
|
+
initialValue?: number[];
|
|
11
15
|
/**
|
|
12
16
|
* Display label on top of Date Input.
|
|
13
17
|
*/
|