|
88 | 88 | questions: [ |
89 | 89 | new QuestionModel({ |
90 | 90 | id: 'first_name', |
91 | | - tagline: "Hi! Welcome to our demo survey 😊", |
| 91 | + tagline: 'Hi! Welcome to our demo survey 😊', |
92 | 92 | title: 'What is your first name?', |
93 | | - description: 'Some description', |
94 | | - link: [ |
95 | | - new LinkOption({ |
96 | | - url: "https://www.ditdot.hr/", |
97 | | - anchor: 'I am a DITDOT official page link', |
98 | | - }), |
99 | | - new LinkOption({ |
100 | | - url: "https://github.com/ditdot-dev/vue-flow-form", |
101 | | - }) |
102 | | - ], |
103 | 93 | type: QuestionType.Text, |
104 | 94 | required: true, |
105 | 95 | placeholder: 'Start typing here...' |
106 | 96 | }), |
107 | 97 | new QuestionModel({ |
108 | 98 | id: 'email', |
109 | 99 | tagline: "Nice to meet you 👀, let's continue", |
110 | | - title: "Provide an example email.", |
111 | | - link: [ |
112 | | - new LinkOption({ |
113 | | - url: "https://www.ditdot.hr/", |
114 | | - anchor: 'I am a DITDOT official page link', |
115 | | - }), |
116 | | - new LinkOption({ |
117 | | - url: "https://github.com/ditdot-dev/vue-flow-form", |
118 | | - }) |
119 | | - ], |
| 100 | + title: 'Provide an example email.', |
120 | 101 | type: QuestionType.Email, |
121 | 102 | required: true, |
122 | 103 | placeholder: 'Start typing here...' |
123 | 104 | }), |
124 | 105 | new QuestionModel({ |
125 | 106 | id: 'phone', |
126 | 107 | title: 'Doing great! 👍 Go ahead and try with a phone number.', |
127 | | - description: 'Some description', |
128 | 108 | type: QuestionType.Phone, |
129 | 109 | required: true, |
130 | 110 | mask: '(###) ###-####' |
|
138 | 118 | }), |
139 | 119 | new QuestionModel({ |
140 | 120 | id: 'multiple_choice', |
141 | | - tagline: "FYI, You can always go back 👈, use the up arrow on the bottom.", |
| 121 | + tagline: 'FYI, You can always go back 👈, use the up arrow on the bottom.', |
142 | 122 | title: 'Multiple choice question:', |
143 | 123 | type: QuestionType.MultipleChoice, |
144 | 124 | multiple: false, |
|
188 | 168 | }), |
189 | 169 | new QuestionModel({ |
190 | 170 | id: 'choose_path', |
191 | | - tagline: "Where would you like to go? 🤔", |
| 171 | + tagline: 'Where would you like to go? 🤔', |
192 | 172 | title: 'Choose your path:', |
193 | 173 | type: QuestionType.Dropdown, |
194 | 174 | multiple: false, |
|
219 | 199 | }), |
220 | 200 | new QuestionModel({ |
221 | 201 | id: 'path_b', |
222 | | - tagline: "Path B", |
| 202 | + tagline: 'Path B', |
223 | 203 | title: 'Hmm, are you sure?', |
224 | 204 | helpText: 'Path A sounds like a winner! 😉', |
225 | 205 | type: QuestionType.MultipleChoice, |
|
0 commit comments