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.
@@ -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
  /**
@@ -25,6 +25,11 @@ export interface InputEmailProps {
25
25
  */
26
26
  fieldName?: string;
27
27
 
28
+ /**
29
+ * Set manual invalid input container state.
30
+ */
31
+ manualInvalidContainer?: boolean;
32
+
28
33
  /**
29
34
  * Determines if the field is mandatory
30
35
  */
@@ -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
  };