@asd20/ui 3.2.600 → 3.2.602

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.600",
8
+ "version": "3.2.602",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -21,7 +21,7 @@
21
21
  <source :src="videoUrl" type="video/mp4" />
22
22
  </video>
23
23
 
24
- <img class="background-image" :src="imageUrl" alt="" />
24
+ <img class="background-image" :src="imageUrl" :alt="imageCaption" />
25
25
  <!-- <div class="scroll-down-indicator"></div> -->
26
26
  <slot />
27
27
  </header>
@@ -69,7 +69,6 @@
69
69
  :secondary-messages="secondaryMessages"
70
70
  omit-detail-links
71
71
  omit-calls-to-action
72
- grid
73
72
  ></asd20-page-content>
74
73
 
75
74
  <intersect @enter="$emit('stories-in-view')">
@@ -87,13 +86,13 @@
87
86
  @input="$emit('update:keywords', $event)"
88
87
  medium
89
88
  />
90
- <asd20-multiselect-input
89
+ <!-- <asd20-multiselect-input
91
90
  label="Categories"
92
91
  :taggable="false"
93
92
  :value="selectedCategories"
94
93
  :items="categoryOptions"
95
94
  @input="$emit('update:selected-categories', $event)"
96
- />
95
+ /> -->
97
96
  </div>
98
97
 
99
98
  <div v-if="cards.length < 1">
@@ -271,7 +270,7 @@ import Asd20QuicklinksMenu from '../../../components/organisms/Asd20QuicklinksMe
271
270
  import Asd20NotificationGroup from '@asd20/notifications-ui/src/components/Asd20NotificationGroup'
272
271
 
273
272
  import Asd20SearchField from '../../../components/molecules/Asd20SearchField'
274
- import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
273
+ // import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
275
274
  import Asd20Card from '../../../components/molecules/Asd20Card'
276
275
  import Asd20Button from '../../../components/atoms/Asd20Button'
277
276
 
@@ -297,7 +296,7 @@ export default {
297
296
  Asd20NotificationGroup,
298
297
  Asd20QuicklinksMenu,
299
298
  Asd20SearchField,
300
- Asd20MultiselectInput,
299
+ // Asd20MultiselectInput,
301
300
  Asd20Card,
302
301
  Asd20Button,
303
302
  Intersect,
@@ -326,7 +325,7 @@ export default {
326
325
  time: '',
327
326
  // description: '',
328
327
  // image: '',
329
- pinned: false,
328
+ // pinned: false,
330
329
  })
331
330
  )
332
331
 
@@ -337,14 +336,14 @@ export default {
337
336
  // link: c.link.replace('/stories', '/announcements'),
338
337
  // }))
339
338
  },
340
- categoryOptions() {
341
- // get a unique array of categories with duplicates removed
342
- return [
343
- ...new Set(
344
- this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
345
- ),
346
- ]
347
- },
339
+ // categoryOptions() {
340
+ // // get a unique array of categories with duplicates removed
341
+ // return [
342
+ // ...new Set(
343
+ // this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
344
+ // ),
345
+ // ]
346
+ // },
348
347
  // computedCategoryOptions() {
349
348
  // // get a unique array of categories with duplicates removed
350
349
  // if (this.categoryOptions.length === 0) {
@@ -357,13 +356,13 @@ export default {
357
356
  // return this.categoryOptions
358
357
  // },
359
358
  },
360
- watch: {
361
- selectedCategories: function(newVal, oldVal) {
362
- if (newVal !== oldVal) {
363
- this.reset()
364
- }
365
- },
366
- },
359
+ // watch: {
360
+ // selectedCategories: function(newVal, oldVal) {
361
+ // if (newVal !== oldVal) {
362
+ // this.reset()
363
+ // }
364
+ // },
365
+ // },
367
366
  methods: {
368
367
  nextSet() {
369
368
  if (
@@ -79,7 +79,6 @@
79
79
  :secondary-messages="secondaryMessages"
80
80
  omit-detail-links
81
81
  omit-calls-to-action
82
- grid
83
82
  />
84
83
 
85
84
  <div class="secondary-content">
@@ -98,13 +97,13 @@
98
97
  @input="$emit('update:keywords', $event)"
99
98
  medium
100
99
  />
101
- <asd20-multiselect-input
100
+ <!-- <asd20-multiselect-input
102
101
  label="Categories"
103
102
  :taggable="false"
104
103
  :value="selectedCategories"
105
104
  :items="categoryOptions"
106
105
  @input="$emit('update:selected-categories', $event)"
107
- />
106
+ /> -->
108
107
  <!-- <asd20-multiselect-input
109
108
  role="listbox"
110
109
  aria-label="Choose a Category to Sort By"
@@ -315,7 +314,7 @@ import Asd20QuicklinksMenu from '../../../components/organisms/Asd20QuicklinksMe
315
314
  import Asd20NotificationGroup from '@asd20/notifications-ui/src/components/Asd20NotificationGroup'
316
315
 
317
316
  import Asd20SearchField from '../../../components/molecules/Asd20SearchField'
318
- import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
317
+ // import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
319
318
  import Asd20Card from '../../../components/molecules/Asd20Card'
320
319
  import Asd20Button from '../../../components/atoms/Asd20Button'
321
320
 
@@ -341,7 +340,7 @@ export default {
341
340
  Asd20NotificationGroup,
342
341
  Asd20QuicklinksMenu,
343
342
  Asd20SearchField,
344
- Asd20MultiselectInput,
343
+ // Asd20MultiselectInput,
345
344
  Asd20Card,
346
345
  Asd20Button,
347
346
  Intersect,
@@ -366,7 +365,7 @@ export default {
366
365
  reversed: false,
367
366
  time: '',
368
367
  image: '',
369
- pinned: false,
368
+ // pinned: false,
370
369
  })
371
370
  )
372
371
  // .map(c => ({
@@ -374,22 +373,22 @@ export default {
374
373
  // link: c.link.replace('/stories', '/announcements'),
375
374
  // }))
376
375
  },
377
- categoryOptions() {
378
- // get a unique array of categories with duplicates removed
379
- return [
380
- ...new Set(
381
- this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
382
- ),
383
- ]
384
- },
385
- },
386
- watch: {
387
- selectedCategories: function(newVal, oldVal) {
388
- if (newVal !== oldVal) {
389
- this.reset()
390
- }
391
- },
376
+ // categoryOptions() {
377
+ // // get a unique array of categories with duplicates removed
378
+ // return [
379
+ // ...new Set(
380
+ // this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
381
+ // ),
382
+ // ]
383
+ // },
392
384
  },
385
+ // watch: {
386
+ // selectedCategories: function(newVal, oldVal) {
387
+ // if (newVal !== oldVal) {
388
+ // this.reset()
389
+ // }
390
+ // },
391
+ // },
393
392
  methods: {
394
393
  nextSet() {
395
394
  if (
@@ -516,8 +515,8 @@ export default {
516
515
  margin: 0 space(1);
517
516
  .asd20-card {
518
517
  margin-bottom: space(-0.5);
519
- :hover {
520
- background: rgb(240, 240, 240);
518
+ .asd20-card__content:hover {
519
+ background: rgba(200, 200, 200, 0.2);
521
520
  }
522
521
  }
523
522
  .asd20-search-field .asd20-icon {
@@ -97,13 +97,13 @@
97
97
  @input="$emit('update:keywords', $event)"
98
98
  medium
99
99
  />
100
- <asd20-multiselect-input
100
+ <!-- <asd20-multiselect-input
101
101
  label="Categories"
102
102
  :taggable="false"
103
103
  :value="selectedCategories"
104
104
  :items="categoryOptions"
105
105
  @input="$emit('update:selected-categories', $event)"
106
- />
106
+ /> -->
107
107
  </div>
108
108
 
109
109
  <div v-if="cards.length < 1">
@@ -273,7 +273,7 @@ import Asd20QuicklinksMenu from '../../../components/organisms/Asd20QuicklinksMe
273
273
  import Asd20NotificationGroup from '@asd20/notifications-ui/src/components/Asd20NotificationGroup'
274
274
 
275
275
  import Asd20SearchField from '../../../components/molecules/Asd20SearchField'
276
- import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
276
+ // import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
277
277
  import Asd20Card from '../../../components/molecules/Asd20Card'
278
278
  import Asd20Button from '../../../components/atoms/Asd20Button'
279
279
 
@@ -299,7 +299,7 @@ export default {
299
299
  Asd20NotificationGroup,
300
300
  Asd20QuicklinksMenu,
301
301
  Asd20SearchField,
302
- Asd20MultiselectInput,
302
+ // Asd20MultiselectInput,
303
303
  Asd20Card,
304
304
  Asd20Button,
305
305
  Intersect,
@@ -338,14 +338,14 @@ export default {
338
338
  // link: c.link.replace('/stories', '/announcements'),
339
339
  // }))
340
340
  },
341
- categoryOptions() {
342
- // get a unique array of categories with duplicates removed
343
- return [
344
- ...new Set(
345
- this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
346
- ),
347
- ]
348
- },
341
+ // categoryOptions() {
342
+ // // get a unique array of categories with duplicates removed
343
+ // return [
344
+ // ...new Set(
345
+ // this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
346
+ // ),
347
+ // ]
348
+ // },
349
349
  // computedCategoryOptions() {
350
350
  // // get a unique array of categories with duplicates removed
351
351
  // if (this.categoryOptions.length === 0) {
@@ -358,13 +358,13 @@ export default {
358
358
  // return this.categoryOptions
359
359
  // },
360
360
  },
361
- watch: {
362
- selectedCategories: function(newVal, oldVal) {
363
- if (newVal !== oldVal) {
364
- this.reset()
365
- }
366
- },
367
- },
361
+ // watch: {
362
+ // selectedCategories: function(newVal, oldVal) {
363
+ // if (newVal !== oldVal) {
364
+ // this.reset()
365
+ // }
366
+ // },
367
+ // },
368
368
  methods: {
369
369
  nextSet() {
370
370
  if (
@@ -483,10 +483,10 @@
483
483
  "status": "Published",
484
484
  "publishDateTime": "2020-08-12T02:30:00Z",
485
485
  "expireDateTime": "2021-08-12T02:01:34.207Z",
486
- "isFeatured": false,
486
+ "isFeatured": true,
487
487
  "isDistrictFeatured": false,
488
488
  "authorUserId": null,
489
- "title": "Updated Return to School Plan",
489
+ "title": "Re-Updated Return to School Plan",
490
490
  "slug": "6th-12th-grade-students-to-start-online-delayed-in-person-classes",
491
491
  "summary": "We continue working closely with El Paso County Public Health (EPCPH) to monitor the impact of COVID-19 and its influence on the reopening of schools in El Paso County.",
492
492
  "bodyHtml": "<p style=\"\">\u201cLooking at recent COVID-19 trends, locally we have begun to see a stabilization and modest decline in cases and hospitalizations. Given this information, along with the recent launch of an additional community-based testing site, Public Health supports schools in their efforts to safely plan for return to learn,\u201d said Dr. Leon Kelly, deputy medical director of El Paso County Public Health.<br></p><p style=\"\"></p><p style=\"\">As you are aware, local school districts are implementing a variety of reopening plans to start the school year, including remote only plans for secondary schools.</p><p style=\"\"></p><p style=\"\">Equipped with this updated information, and with the support of EPCPH, we will continue to implement our Return to School plan for all pre-K through 5th grade students as communicated last week. However, we will DELAY the start of our Return to School Plan for 6th\u2013 12th grade students, and will start the year in a remote, synchronous classroom environment.</p><p style=\"\"></p><p style=\"\">I have heard from many teachers, students, and parents who desire to return to school in-person. This is absolutely our goal too. However, we are part of the larger community and must all do our part to control the spread of the virus. This is the most sustainable way to not only get back into the classroom, but also stay in the classroom. As such, we feel strongly that we will open schools on Aug. 24, with the following in place.</p><p style=\"\"></p><h3 style=\"\">Preschool \u2013 5th Grade Students</h3><p style=\"\"></p><ul><li>All pre-K through 5th grade students will begin the year as described in our Return to School Plan, meaning students who are not choosing the 100% online option will attend school in-person, daily.</li><li>The first day for students is Aug. 24.</li><li>Schools will begin under various models, and families will receive specific information from each school.</li></ul><p></p><p style=\"\"></p><p style=\"\"></p><h3 style=\"\">6th \u2013 12th Grade Students</h3><p style=\"\"></p><ul><li>All 6th \u2013 12th grade students will start the year remotely and will attend school in a remote, synchronous environment. Students will log-in to class from home and attend school classes as if they were in person. Students will follow their daily schedules, in real time, and will engage in a variety of classroom learning activities. For example, if first period runs from 8 \u2013 9 a.m., the expectation is that all students join the class on time and participate in class synchronously for the entire class period.</li><li>Teachers will log-in to class from their school classroom, take attendance, and lead classroom activities for the duration of the scheduled class.</li><li>Students will attend class and teachers will lead classes according to their daily schedules.</li><li>The first day for students is Aug. 24. \u00b7 Our tentative goal is to transition back to our Return to School Plan on Sept. 14, 2020. This means on Sept. 14, students will begin the hybrid model combined with a synchronous option, per the Return to School Plan following the same schedule used during the remote synchronous period.</li><li>Students who are part of our special populations and require additional services, will be served in person. Representatives from the school or district will reach out to these families, individually, to create a return to school plan.</li><li>Please remember if your child attends a non-traditional school such as the Home School Academy, The Village, New Opportunities Program, or Aspen Valley Campus their schedule may look different. Please visit each school\u2019s website for more information or look for information from your school principal.</li></ul><p></p><p style=\"\">We remain committed to our Return to School Plan (released on Aug. 5, 2020) and its guiding goals. We believe our Return to School Plan transitions well to remote learning for our secondary school learners and that we can smoothly and seamlessly transition back to the Return to School Plan once local COVID-19 data reaches or is trending toward acceptable levels.</p><p style=\"\"></p><p style=\"\">Please be aware, there are two weeks until the start of the new school year. As we know, when dealing with COVID-19, a lot can happen at short notice, highlighting the need for all of us to remain flexible. As such, this plan is subject to change based on updated data from EPCPH or other authorities.</p><p style=\"\"></p><p style=\"\">Finally, our ability to start on Aug. 24, and our ability to maintain in-person learning is 100% dependent upon our collective actions and decisions. As we prepare to open, I am asking for all members of the ASD20 community to do our part to help ensure that students can be in school. Please help your students avoid meeting with large groups of friends, maintain appropriate social distancing and wear a facial covering in accordance with the state mandate \u2013 together, as a community, is the only way this will work. Let us rise to this challenge together.</p><p style=\"\"></p><p style=\"\">I am very aware of the frustration and anxiety created by continued changes and uncertainty. I too, desire certainty and a predictable path moving forward. Please know your schools will continue to provide important and more specific information to use when planning. Thank you for your continued support and flexibility. We know these are challenging times and we are thankful to be navigating them with you!</p><p style=\"\"></p><p style=\"\">Be well and be safe.</p><p style=\"\"></p><p style=\"\">Tom Gregory</p><p style=\"\">Superintendent of Schools</p><p style=\"\">Academy District 20</p>",