evo360-types 1.1.61 → 1.1.62
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.
|
@@ -80,10 +80,10 @@ export interface ISurveyQuestionDate extends ISurveyQuestion {
|
|
|
80
80
|
}
|
|
81
81
|
export interface ISurveyQuestionPhone extends ISurveyQuestion {
|
|
82
82
|
type: "phone";
|
|
83
|
-
mask?:
|
|
84
|
-
date_max?: Date;
|
|
83
|
+
mask?: MaskOptions;
|
|
85
84
|
}
|
|
86
85
|
export interface ISurveyQuestionMask extends ISurveyQuestion {
|
|
86
|
+
type: "mask";
|
|
87
87
|
options?: MaskOptions;
|
|
88
88
|
}
|
|
89
89
|
export interface ISurveySection extends IFireDoc {
|
|
@@ -107,11 +107,11 @@ export interface ISurveyQuestionDate extends ISurveyQuestion {
|
|
|
107
107
|
}
|
|
108
108
|
export interface ISurveyQuestionPhone extends ISurveyQuestion {
|
|
109
109
|
type: "phone";
|
|
110
|
-
mask?:
|
|
111
|
-
date_max?: Date;
|
|
110
|
+
mask?: MaskOptions;
|
|
112
111
|
}
|
|
113
112
|
|
|
114
113
|
export interface ISurveyQuestionMask extends ISurveyQuestion {
|
|
114
|
+
type: "mask";
|
|
115
115
|
options?: MaskOptions;
|
|
116
116
|
}
|
|
117
117
|
|