@asd20/ui 3.2.593 → 3.2.594
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/package.json +1 -1
- package/src/components/atoms/Asd20Factoid/index.vue +1 -1
- package/src/components/organisms/Asd20FactoidsSection/index.vue +1 -1
- package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +39 -2
- package/src/data/factoids.json +2 -2
- package/src/data/page-queries/video-page-query-result.json +7 -5
- package/src/mixins/pageTemplateMixin.js +1 -1
package/package.json
CHANGED
|
@@ -110,7 +110,7 @@ $factoid-fg: var(--website-card__reverse-background-color);
|
|
|
110
110
|
&__label {
|
|
111
111
|
font-size: 0.875rem;
|
|
112
112
|
font-weight: 300;
|
|
113
|
-
text-transform: uppercase;
|
|
113
|
+
// text-transform: uppercase;
|
|
114
114
|
color: $factoid-fg;
|
|
115
115
|
// white-space: nowrap;
|
|
116
116
|
opacity: 0.75;
|
|
@@ -111,6 +111,11 @@
|
|
|
111
111
|
@events-in-view="$emit('events-in-view')"
|
|
112
112
|
></asd20-feeds-section>
|
|
113
113
|
|
|
114
|
+
<asd20-factoids-section
|
|
115
|
+
v-if="factoids && factoids.length > 0"
|
|
116
|
+
:factoids="factoids"
|
|
117
|
+
/>
|
|
118
|
+
|
|
114
119
|
<!-- Quick Links -->
|
|
115
120
|
<asd20-quicklinks-menu :quickLinks="quickLinks">
|
|
116
121
|
<slot name="quicklinks-menu" />
|
|
@@ -148,7 +153,7 @@ import Asd20QuicklinksMenu from '../../../components/organisms/Asd20QuicklinksMe
|
|
|
148
153
|
// import Asd20DistrictLogo from '../../../components/atoms/Asd20DistrictLogo'
|
|
149
154
|
import Asd20OrganizationPicker from '../../../components/organisms/Asd20OrganizationPicker'
|
|
150
155
|
import Asd20NotificationGroup from '@asd20/notifications-ui/src/components/Asd20NotificationGroup'
|
|
151
|
-
|
|
156
|
+
import Asd20FactoidsSection from '../../../components/organisms/Asd20FactoidsSection'
|
|
152
157
|
import Asd20FeedsSection from '../../../components/organisms/Asd20FeedsSection'
|
|
153
158
|
import Asd20VideoHeader from '../../../components/organisms/Asd20VideoHeader'
|
|
154
159
|
import Asd20VideoHeaderContent from '../../../components/organisms/Asd20VideoHeaderContent'
|
|
@@ -170,6 +175,38 @@ export default {
|
|
|
170
175
|
return this.$mq || 'sm'
|
|
171
176
|
},
|
|
172
177
|
},
|
|
178
|
+
data: () => ({
|
|
179
|
+
factoids: [
|
|
180
|
+
{
|
|
181
|
+
start: 0,
|
|
182
|
+
end: 40,
|
|
183
|
+
suffix: '+',
|
|
184
|
+
label: 'Schools/Programs',
|
|
185
|
+
once: true,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
start: 0,
|
|
189
|
+
end: 26000,
|
|
190
|
+
suffix: '+',
|
|
191
|
+
label: 'Students',
|
|
192
|
+
once: true,
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
start: 0,
|
|
196
|
+
end: 15,
|
|
197
|
+
suffix: 'years',
|
|
198
|
+
label: 'Accredited With Distiction',
|
|
199
|
+
once: true,
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
start: 0,
|
|
203
|
+
end: 94,
|
|
204
|
+
suffix: '%',
|
|
205
|
+
label: 'Graduation Rate',
|
|
206
|
+
once: true,
|
|
207
|
+
},
|
|
208
|
+
],
|
|
209
|
+
}),
|
|
173
210
|
|
|
174
211
|
components: {
|
|
175
212
|
Asd20SkipTo,
|
|
@@ -179,7 +216,7 @@ export default {
|
|
|
179
216
|
// Asd20DistrictLogo,
|
|
180
217
|
Asd20OrganizationPicker,
|
|
181
218
|
Asd20NotificationGroup,
|
|
182
|
-
|
|
219
|
+
Asd20FactoidsSection,
|
|
183
220
|
Asd20FeedsSection,
|
|
184
221
|
Asd20VideoHeader,
|
|
185
222
|
Asd20VideoHeaderContent,
|
package/src/data/factoids.json
CHANGED
|
@@ -1075,26 +1075,28 @@
|
|
|
1075
1075
|
"factoids": [
|
|
1076
1076
|
{
|
|
1077
1077
|
"start": 0,
|
|
1078
|
-
"end":
|
|
1078
|
+
"end": 40,
|
|
1079
|
+
"suffix": "+",
|
|
1079
1080
|
"label": "Schools/Programs",
|
|
1080
1081
|
"once": true
|
|
1081
1082
|
},
|
|
1082
1083
|
{
|
|
1083
1084
|
"start": 0,
|
|
1084
|
-
"end":
|
|
1085
|
+
"end": 25000,
|
|
1085
1086
|
"suffix": "+",
|
|
1086
1087
|
"label": "Students",
|
|
1087
1088
|
"once": true
|
|
1088
1089
|
},
|
|
1089
1090
|
{
|
|
1090
1091
|
"start": 0,
|
|
1091
|
-
"end":
|
|
1092
|
-
"
|
|
1092
|
+
"end": 15,
|
|
1093
|
+
"suffix": "years",
|
|
1094
|
+
"label": "Accredited With Distiction",
|
|
1093
1095
|
"once": true
|
|
1094
1096
|
},
|
|
1095
1097
|
{
|
|
1096
1098
|
"start": 0,
|
|
1097
|
-
"end":
|
|
1099
|
+
"end": 94,
|
|
1098
1100
|
"suffix": "%",
|
|
1099
1101
|
"label": "Graduation Rate",
|
|
1100
1102
|
"once": true
|
|
@@ -23,7 +23,7 @@ export default {
|
|
|
23
23
|
// Page content
|
|
24
24
|
messages: { type: Array, default: () => [] },
|
|
25
25
|
primaryMessageLimit: { type: Number, default: 3 },
|
|
26
|
-
factoids: { type: Array, default: () => [] },
|
|
26
|
+
// factoids: { type: Array, default: () => [] },
|
|
27
27
|
websiteLogoProps: { type: Object, default: null },
|
|
28
28
|
|
|
29
29
|
// Page state
|