@explorer-1/vue 0.2.103 → 0.2.104
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -86,15 +86,6 @@
|
|
|
86
86
|
:options="emailGroups"
|
|
87
87
|
/>
|
|
88
88
|
</div>
|
|
89
|
-
<div class="mt-8">
|
|
90
|
-
<BaseCheckboxGroup
|
|
91
|
-
heading="JPL Education Updates"
|
|
92
|
-
sub-heading="The JPL Education Office also offers email updates about classroom activities and workshops for educators, projects and competitons for K-12 students and internship opportunities at JPL and NASA."
|
|
93
|
-
group="education"
|
|
94
|
-
title="Education Email Groups"
|
|
95
|
-
:options="eduEmailGroups"
|
|
96
|
-
/>
|
|
97
|
-
</div>
|
|
98
89
|
</div>
|
|
99
90
|
<div class="mt-4 lg:mt-8 submit-container">
|
|
100
91
|
<BaseButton
|
|
@@ -131,7 +122,6 @@ import LayoutHelper from './../LayoutHelper/LayoutHelper.vue'
|
|
|
131
122
|
import BaseHeading from './../BaseHeading/BaseHeading.vue'
|
|
132
123
|
import BaseButton from './../BaseButton/BaseButton.vue'
|
|
133
124
|
import BaseRadioGroup from './../BaseRadioGroup/BaseRadioGroup.vue'
|
|
134
|
-
import BaseCheckboxGroup from './../BaseCheckboxGroup/BaseCheckboxGroup.vue'
|
|
135
125
|
import TextInput from './../TextInput/TextInput.vue'
|
|
136
126
|
|
|
137
127
|
const iContactForm =
|
|
@@ -177,48 +167,12 @@ const emailGroups = [
|
|
|
177
167
|
}
|
|
178
168
|
]
|
|
179
169
|
|
|
180
|
-
const eduEmailGroups = [
|
|
181
|
-
{
|
|
182
|
-
id: 'educators',
|
|
183
|
-
title: 'Educators',
|
|
184
|
-
text: null,
|
|
185
|
-
value: '21583',
|
|
186
|
-
alt: 'Lists',
|
|
187
|
-
name: 'data[listGroups][]'
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
id: 'educator-workshop',
|
|
191
|
-
title: 'Educators Workshops',
|
|
192
|
-
text: 'Southern California',
|
|
193
|
-
value: '51343',
|
|
194
|
-
alt: 'Lists',
|
|
195
|
-
name: 'data[listGroups][]'
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
id: 'students',
|
|
199
|
-
title: 'Students K-12',
|
|
200
|
-
text: null,
|
|
201
|
-
value: '29483',
|
|
202
|
-
alt: 'Lists',
|
|
203
|
-
name: 'data[listGroups][]'
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
id: 'internships',
|
|
207
|
-
title: 'Internships',
|
|
208
|
-
text: null,
|
|
209
|
-
value: '29484',
|
|
210
|
-
alt: 'Lists',
|
|
211
|
-
name: 'data[listGroups][]'
|
|
212
|
-
}
|
|
213
|
-
]
|
|
214
|
-
|
|
215
170
|
export default defineComponent({
|
|
216
171
|
name: 'FormNewsletterSignup',
|
|
217
172
|
components: {
|
|
218
173
|
LayoutHelper,
|
|
219
174
|
BaseHeading,
|
|
220
175
|
BaseButton,
|
|
221
|
-
BaseCheckboxGroup,
|
|
222
176
|
BaseRadioGroup,
|
|
223
177
|
TextInput
|
|
224
178
|
},
|
|
@@ -229,8 +183,7 @@ export default defineComponent({
|
|
|
229
183
|
iContactForm,
|
|
230
184
|
iContactTrackingGif,
|
|
231
185
|
captchaKey,
|
|
232
|
-
emailGroups
|
|
233
|
-
eduEmailGroups
|
|
186
|
+
emailGroups
|
|
234
187
|
}
|
|
235
188
|
},
|
|
236
189
|
mounted() {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
<div class="footer-extras lg:col-span-3 col-span-12">
|
|
47
47
|
<!-- email sign up -->
|
|
48
48
|
<div class="text-subtitle text-blue edu:text-white lg:mb-5 mb-3">
|
|
49
|
-
|
|
49
|
+
Get the Latest from JPL
|
|
50
50
|
</div>
|
|
51
51
|
<TheFooterSignUp class="lg:mb-10 mb-8" />
|
|
52
52
|
<!-- social media -->
|