tsv2-library 0.2.89 → 0.2.91
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/Calendar/Calendar.vue.d.ts +12 -0
- package/dist/src/components/v2/InputEmail/InputEmail.vue.d.ts +5 -0
- package/dist/src/components/v2/InputText/InputText.vue.d.ts +4 -0
- package/dist/src/types/assets.type.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/tsv2-library.es.js +3625 -3534
- package/package.json +1 -1
- package/src/components/v2/Calendar/Calendar.vue.d.ts +12 -0
- package/src/components/v2/InputEmail/InputEmail.vue.d.ts +5 -0
- package/src/components/v2/InputText/InputText.vue.d.ts +4 -0
- package/src/presets/calendar/index.js +18 -9
|
@@ -84,6 +84,18 @@ export interface TSCalendarProps {
|
|
|
84
84
|
* The maximum selectable date.
|
|
85
85
|
*/
|
|
86
86
|
maxDate?: Date | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* The maximum selectable year.
|
|
89
|
+
*
|
|
90
|
+
* The full year: 2020
|
|
91
|
+
*/
|
|
92
|
+
maxYear?: 'current' | number | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* The maximum selectable months.
|
|
95
|
+
*
|
|
96
|
+
* Number 0-11
|
|
97
|
+
*/
|
|
98
|
+
maxMonth?: 'current' | number | undefined;
|
|
87
99
|
}
|
|
88
100
|
|
|
89
101
|
/**
|
|
@@ -47,6 +47,10 @@ export interface InputTextProps {
|
|
|
47
47
|
* Invalid input state.
|
|
48
48
|
*/
|
|
49
49
|
invalid?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Set manual invalid input container state.
|
|
52
|
+
*/
|
|
53
|
+
manualInvalidContainer?: boolean;
|
|
50
54
|
/**
|
|
51
55
|
* Set custom validator message.
|
|
52
56
|
* Will be show if invalid="true"
|
|
@@ -59,7 +59,11 @@ export type Asset = {
|
|
|
59
59
|
firstImageSmall?: string;
|
|
60
60
|
firstImageMedium?: string;
|
|
61
61
|
firstImageBig?: string;
|
|
62
|
+
secondImageSmall?: string;
|
|
63
|
+
secondImageMedium?: string;
|
|
64
|
+
secondImageBig?: string;
|
|
62
65
|
assetImageSmall?: string;
|
|
63
66
|
assetImageMedium?: string;
|
|
64
67
|
assetImageBig?: string;
|
|
68
|
+
setDefault?: 'firstImage' | 'secondImage';
|
|
65
69
|
};
|