mapcomplete/Customizations/Questions/EmailQuestion.ts

18 lines
600 B
TypeScript
Raw Normal View History

2020-07-29 17:02:36 +00:00
import {UIElement} from "../../UI/UIElement";
import Translations from "../../UI/i18n/Translations";
2020-07-31 15:38:03 +00:00
import {TagRenderingOptions} from "../TagRenderingOptions";
2020-07-29 17:02:36 +00:00
export class EmailQuestion extends TagRenderingOptions {
constructor(category: string | UIElement) {
super({
question: Translations.t.general.questions.emailOf.Subs({category: category}),
freeform: {
renderTemplate: Translations.t.general.questions.emailIs.Subs({category: category}),
template: "$email$",
key: "email"
}
});
}
}