From 30b427c6ff18d5c3c269d884f5b9dc0e41810ef5 Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Wed, 14 Feb 2024 14:08:06 -0800 Subject: [PATCH 1/6] D8CORE-7212 Add behavior to teaser paragraph to change headers to h3 --- .../Behavior/TeaserParagraphBehavior.php | 65 + .../dist/css/stanford_events.event-list.css | 2 +- .../stanford_events.event-list.scss | 3 +- .../templates/components/card/card.html.twig | 3 +- .../components/card/card.ui_patterns.yml | 5 + .../templates/components/list/list.html.twig | 3 +- .../components/list/list.ui_patterns.yml | 5 + modules/stanford_events/yarn.lock | 77 +- .../dist/css/news-vertical-teaser.css | 2 +- .../_news-vertical-teaser.scss | 3 +- .../components/news-list/news-item-list.twig | 5 +- .../news-list/news-list.ui_patterns.yml | 5 + .../news-vertical-teaser.twig | 5 +- .../news-vertical-teaser.ui_patterns.yml | 5 + modules/stanford_news/yarn.lock | 1886 +++++++++-------- 15 files changed, 1122 insertions(+), 952 deletions(-) create mode 100644 modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/TeaserParagraphBehavior.php diff --git a/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/TeaserParagraphBehavior.php b/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/TeaserParagraphBehavior.php new file mode 100644 index 00000000..bee182e6 --- /dev/null +++ b/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/TeaserParagraphBehavior.php @@ -0,0 +1,65 @@ +id() == 'stanford_entity'; + } + + /** + * {@inheritDoc} + */ + public function defaultConfiguration() { + return ['hide_heading' => FALSE]; + } + + /** + * {@inheritDoc} + */ + public function buildBehaviorForm(ParagraphInterface $paragraph, array &$form, FormStateInterface $form_state) { + $form = parent::buildBehaviorForm($paragraph, $form, $form_state); + $form['hide_heading'] = [ + '#type' => 'checkbox', + '#title' => $this->t('Visually Hide Heading'), + '#default_value' => $paragraph->getBehaviorSetting('stanford_teaser', 'hide_heading', FALSE), + ]; + return $form; + } + + /** + * {@inheritDoc} + */ + public function view(array &$build, ParagraphInterface $paragraph, EntityViewDisplayInterface $display, $view_mode) { + if (!isset($build['su_entity_headline'][0]) || !isset($build['su_entity_item'][0])) { + return; + } + if ($paragraph->getBehaviorSetting('stanford_teaser', 'hide_heading', FALSE)) { + $build['su_entity_headline']['#attributes']['class'][] = 'visually-hidden'; + } + foreach (Element::children($build['su_entity_item']) as $delta) { + $build['su_entity_item'][$delta]['#view_mode'] = 'stanford_h3_card'; + } + } + +} diff --git a/modules/stanford_events/dist/css/stanford_events.event-list.css b/modules/stanford_events/dist/css/stanford_events.event-list.css index 4dae9c04..f70ebed0 100644 --- a/modules/stanford_events/dist/css/stanford_events.event-list.css +++ b/modules/stanford_events/dist/css/stanford_events.event-list.css @@ -1 +1 @@ -.views-field-su-event-edit a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;line-height:1;text-align:center;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.views-field-su-event-edit a,.views-field-su-event-edit a a{font-weight:400;text-decoration:none}.views-field-su-event-edit a:active,.views-field-su-event-edit a:focus,.views-field-su-event-edit a:hover{text-decoration:underline}.views-field-su-event-date-time{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8rem;line-height:1.3}@media (max-width:767px){.views-field-su-event-date-time{font-size:1.6rem}}@media only screen and (min-width:0){.views-field-su-event-date-time{margin-bottom:.8rem}}@media only screen and (min-width:768px){.views-field-su-event-date-time{margin-bottom:.9rem}}@media only screen and (min-width:1500px){.views-field-su-event-date-time{margin-bottom:.95rem}}@media only screen and (min-width:0){.views-field-su-event-date-time span{padding-right:.8rem}}@media only screen and (min-width:768px){.views-field-su-event-date-time span{padding-right:.9rem}}@media only screen and (min-width:1500px){.views-field-su-event-date-time span{padding-right:.95rem}}.views-field-su-event-date-time span:before{color:#2e2d29;font-family:Font Awesome\ 5 Free;font-weight:600}.date-icon:before{content:"\f073"}@media (max-width:767px){.date-icon:before{left:-16px}}.su-card .su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.su-event-list-item__date{max-width:45px}@media only screen and (min-width:0){.su-event-list-item__date{margin-bottom:1.6rem;margin-right:4rem}}@media only screen and (min-width:768px){.su-event-list-item__date{margin-bottom:1.8rem;margin-right:4.5rem}}@media only screen and (min-width:1500px){.su-event-list-item__date{margin-bottom:1.9rem;margin-right:4.75rem}}@media (max-width:767px){.su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}}.su-event-list-item__date span{display:block}.su-event-list-item__date .su-event-end-month,.su-event-list-item__date .su-event-start-month{color:#2e2d29;font-size:1em;font-weight:700;text-transform:uppercase}.su-event-list-item__date .su-event-list-item__date__seperator{color:#2e2d29;font-size:1.8rem;line-height:1.3;white-space:nowrap}@media (max-width:767px){.su-event-list-item__date .su-event-list-item__date__seperator{font-size:1.6rem}}@media only screen and (min-width:0){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.9rem}}@media (max-width:767px){.su-event-list-item__date .su-event-list-item__date__seperator{min-width:45px}}.su-event-list-item__date .su-event-end-date,.su-event-list-item__date .su-event-start-date{color:#2e2d29;font-size:2.44141em;font-weight:700}@media only screen and (min-width:0){.heading-h1,.page-title,h1{margin-bottom:6.4rem;margin-top:8rem}}@media only screen and (min-width:768px){.heading-h1,.page-title,h1{margin-bottom:7.2rem;margin-top:9rem}}@media only screen and (min-width:1500px){.heading-h1,.page-title,h1{margin-bottom:7.6rem;margin-top:9.5rem}}.stanford-event-series .views-row:first-child div,.stanford-events-list-page .views-row:first-child div,.stanford-events-list-page-filtered .views-row:first-child div{padding-top:0}@media only screen and (min-width:0){.stanford-event-series-list-all{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.stanford-event-series-list-all{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.stanford-event-series-list-all{margin-bottom:7.6rem}}.su-event-list-item{border-bottom:1px solid #d2d3d4;display:-webkit-box;display:-ms-flexbox;display:flex}@media only screen and (min-width:0){.su-event-list-item{padding-bottom:5.12rem}}@media only screen and (min-width:768px){.su-event-list-item{padding-bottom:5.76rem}}@media only screen and (min-width:1500px){.su-event-list-item{padding-bottom:6.08rem}}@media only screen and (min-width:0){.su-event-list-item{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.su-event-list-item{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.su-event-list-item{margin-bottom:3.8rem}}@media (max-width:767px){.su-event-list-item{display:block}}.su-event-list-item .su-event-list-item__details{-webkit-box-flex:2;-ms-flex-positive:2;color:#2e2d29;flex-grow:2}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .event-list-item__type{margin-bottom:.8rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .event-list-item__type{margin-bottom:.9rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .event-list-item__type{margin-bottom:.95rem}}.su-event-list-item .su-event-list-item__details .event-list-item__type a{color:#2e2d29;text-decoration:none}.su-event-list-item .su-event-list-item__details .event-list-item__type a:focus,.su-event-list-item .su-event-list-item__details .event-list-item__type a:hover{color:#b1040e}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .event-list-item__audience{margin-bottom:.8rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .event-list-item__audience{margin-bottom:.9rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .event-list-item__audience{margin-bottom:.95rem}}.su-event-list-item .su-event-list-item__details .event-list-item__audience a{color:#2e2d29;font-weight:400;text-decoration:none}.su-event-list-item .su-event-list-item__details h2{font-size:1.5625em}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details h2{margin-bottom:1.07rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details h2{margin-bottom:1.2rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details h2{margin-bottom:1.27rem}}.su-event-list-item .su-event-list-item__details h2>a{color:#b1040e;font-weight:700;text-decoration:none}.su-event-list-item .su-event-list-item__details h2>a:active,.su-event-list-item .su-event-list-item__details h2>a:focus,.su-event-list-item .su-event-list-item__details h2>a:hover{color:#2e2d29}.su-event-list-item .su-event-list-item__details h2>a:after{background-color:#b1040e;height:20px;width:20px}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:2.74rem}}.su-event-list-item .su-event-list-item__details .event-list-item__subheadline h3{font-size:1.25em}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .views-field-su-event-dek{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .views-field-su-event-dek{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .views-field-su-event-dek{margin-bottom:1.9rem}}.su-event-list-item .su-event-list-item__details .address{font-size:1.8rem;line-height:1.3}@media (max-width:767px){.su-event-list-item .su-event-list-item__details .address{font-size:1.6rem}}.su-event-list-item .su-event-list-item__details .views-field-su-event-location{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8rem;line-height:1.3;overflow-wrap:anywhere}@media (max-width:767px){.su-event-list-item .su-event-list-item__details .views-field-su-event-location{font-size:1.6rem}}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .views-field-su-event-location>.map-icon{padding-right:.8rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .views-field-su-event-location>.map-icon{padding-right:.9rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .views-field-su-event-location>.map-icon{padding-right:.95rem}}.su-event-list-item .su-event-list-item__details .views-field-su-event-location>.map-icon:before{color:#2e2d29;content:"\f3c5";font-family:Font Awesome\ 5 Free;font-weight:600}.su-event-list-item .su-event-list-item__details .views-field-su-event-address{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8rem;line-height:1.3}@media (max-width:767px){.su-event-list-item .su-event-list-item__details .views-field-su-event-address{font-size:1.6rem}}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .views-field-su-event-address>.map-icon{padding-right:.8rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .views-field-su-event-address>.map-icon{padding-right:.9rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .views-field-su-event-address>.map-icon{padding-right:.95rem}}.su-event-list-item .su-event-list-item__details .views-field-su-event-address>.map-icon:before{color:#2e2d29;content:"\f3c5";font-family:Font Awesome\ 5 Free;font-weight:600}.su-event-list-item .su-event-list-item__details .views-field-su-entered-event-address.views-field-su-event-address{display:block}.su-event-list-item .su-event-list-item__details .views-field-su-entered-event-address.views-field-su-event-address .map-icon+span{margin-right:5px}.su-event-list-item .su-event-list-item__details .views-field-su-entered-event-address.views-field-su-event-address span:nth-child(n+3){display:block;margin-left:27px}@media only screen and (min-width:0){.section-events-list--content .main-region{padding-left:3.2rem}}@media only screen and (min-width:768px){.section-events-list--content .main-region{padding-left:3.6rem}}@media only screen and (min-width:1500px){.section-events-list--content .main-region{padding-left:3.8rem}}@media only screen and (min-width:0){.stanford-events-list-page .views-infinite-scroll-content-wrapper,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.stanford-events-list-page .views-infinite-scroll-content-wrapper,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.stanford-events-list-page .views-infinite-scroll-content-wrapper,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper{margin-bottom:7.6rem}}@media only screen and (min-width:0){.stanford-events-list-page .views-infinite-scroll-content-wrapper+.js-pager__items,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:11.2rem}}@media only screen and (min-width:768px){.stanford-events-list-page .views-infinite-scroll-content-wrapper+.js-pager__items,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:12.6rem}}@media only screen and (min-width:1500px){.stanford-events-list-page .views-infinite-scroll-content-wrapper+.js-pager__items,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:13.3rem}}@media only screen and (min-width:0){.node-stanford-event-series-title{margin-bottom:1.07rem}}@media only screen and (min-width:768px){.node-stanford-event-series-title{margin-bottom:1.2rem}}@media only screen and (min-width:1500px){.node-stanford-event-series-title{margin-bottom:1.27rem}}@media only screen and (min-width:0){.node-stanford-event-series-su-event-series-subheadline{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.node-stanford-event-series-su-event-series-subheadline{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.node-stanford-event-series-su-event-series-subheadline{margin-bottom:3.8rem}}@media only screen and (min-width:768px){.node-stanford-event-series-su-event-series-dek{font-size:2.1rem;line-height:1.7}}@media only screen and (min-width:0){.node-stanford-event-series-su-event-series-dek{padding-bottom:4rem}}@media only screen and (min-width:768px){.node-stanford-event-series-su-event-series-dek{padding-bottom:4.5rem}}@media only screen and (min-width:1500px){.node-stanford-event-series-su-event-series-dek{padding-bottom:4.75rem}}@media only screen and (min-width:0){.node-stanford-event-series-su-event-series-dek{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.node-stanford-event-series-su-event-series-dek{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.node-stanford-event-series-su-event-series-dek{margin-bottom:7.6rem}}@media only screen and (min-width:0){.su-event-series-items{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.su-event-series-items{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.su-event-series-items{margin-bottom:7.6rem}}.su-past-event{background:none;border-radius:0;color:#6d6c69;display:inline;font-style:normal;font-weight:600;margin:0;padding:0;text-transform:uppercase}.su-past-event:not(:only-child):after{content:" | "}.su-event--past-events-text{color:#544948;font-size:2.1rem;font-weight:600;line-height:1.5;margin-bottom:1em;margin-top:.6em}.views-field-su-event-edit a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem;text-align:right}.views-field-su-event-edit a:after,.views-field-su-event-edit a:before{background-color:#b1040e;color:#fff}.views-field-su-event-edit a:focus,.views-field-su-event-edit a:focus:after,.views-field-su-event-edit a:focus:before,.views-field-su-event-edit a:hover,.views-field-su-event-edit a:hover:after,.views-field-su-event-edit a:hover:before{background-color:#fff;color:#2e2d29}.views-field-su-event-edit a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.views-field-su-event-edit a:hover:after,.views-field-su-event-edit a:hover:before{background-color:#2e2d29;color:#fff}.views-field-su-event-edit a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.views-field-su-event-edit a:focus:after,.views-field-su-event-edit a:focus:before{background-color:#2e2d29;color:#fff} \ No newline at end of file +.views-field-su-event-edit a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;line-height:1;text-align:center;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.views-field-su-event-edit a,.views-field-su-event-edit a a{font-weight:400;text-decoration:none}.views-field-su-event-edit a:active,.views-field-su-event-edit a:focus,.views-field-su-event-edit a:hover{text-decoration:underline}.views-field-su-event-date-time{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8rem;line-height:1.3}@media (max-width:767px){.views-field-su-event-date-time{font-size:1.6rem}}@media only screen and (min-width:0){.views-field-su-event-date-time{margin-bottom:.8rem}}@media only screen and (min-width:768px){.views-field-su-event-date-time{margin-bottom:.9rem}}@media only screen and (min-width:1500px){.views-field-su-event-date-time{margin-bottom:.95rem}}@media only screen and (min-width:0){.views-field-su-event-date-time span{padding-right:.8rem}}@media only screen and (min-width:768px){.views-field-su-event-date-time span{padding-right:.9rem}}@media only screen and (min-width:1500px){.views-field-su-event-date-time span{padding-right:.95rem}}.views-field-su-event-date-time span:before{color:#2e2d29;font-family:Font Awesome\ 5 Free;font-weight:600}.date-icon:before{content:"\f073"}@media (max-width:767px){.date-icon:before{left:-16px}}.su-card .su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.su-event-list-item__date{max-width:45px}@media only screen and (min-width:0){.su-event-list-item__date{margin-bottom:1.6rem;margin-right:4rem}}@media only screen and (min-width:768px){.su-event-list-item__date{margin-bottom:1.8rem;margin-right:4.5rem}}@media only screen and (min-width:1500px){.su-event-list-item__date{margin-bottom:1.9rem;margin-right:4.75rem}}@media (max-width:767px){.su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}}.su-event-list-item__date span{display:block}.su-event-list-item__date .su-event-end-month,.su-event-list-item__date .su-event-start-month{color:#2e2d29;font-size:1em;font-weight:700;text-transform:uppercase}.su-event-list-item__date .su-event-list-item__date__seperator{color:#2e2d29;font-size:1.8rem;line-height:1.3;white-space:nowrap}@media (max-width:767px){.su-event-list-item__date .su-event-list-item__date__seperator{font-size:1.6rem}}@media only screen and (min-width:0){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.9rem}}@media (max-width:767px){.su-event-list-item__date .su-event-list-item__date__seperator{min-width:45px}}.su-event-list-item__date .su-event-end-date,.su-event-list-item__date .su-event-start-date{color:#2e2d29;font-size:2.44141em;font-weight:700}@media only screen and (min-width:0){.heading-h1,.page-title,h1{margin-bottom:6.4rem;margin-top:8rem}}@media only screen and (min-width:768px){.heading-h1,.page-title,h1{margin-bottom:7.2rem;margin-top:9rem}}@media only screen and (min-width:1500px){.heading-h1,.page-title,h1{margin-bottom:7.6rem;margin-top:9.5rem}}.stanford-event-series .views-row:first-child div,.stanford-events-list-page .views-row:first-child div,.stanford-events-list-page-filtered .views-row:first-child div{padding-top:0}@media only screen and (min-width:0){.stanford-event-series-list-all{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.stanford-event-series-list-all{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.stanford-event-series-list-all{margin-bottom:7.6rem}}.su-event-list-item{border-bottom:1px solid #d2d3d4;display:-webkit-box;display:-ms-flexbox;display:flex}@media only screen and (min-width:0){.su-event-list-item{padding-bottom:5.12rem}}@media only screen and (min-width:768px){.su-event-list-item{padding-bottom:5.76rem}}@media only screen and (min-width:1500px){.su-event-list-item{padding-bottom:6.08rem}}@media only screen and (min-width:0){.su-event-list-item{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.su-event-list-item{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.su-event-list-item{margin-bottom:3.8rem}}@media (max-width:767px){.su-event-list-item{display:block}}.su-event-list-item .su-event-list-item__details{-webkit-box-flex:2;-ms-flex-positive:2;color:#2e2d29;flex-grow:2}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .event-list-item__type{margin-bottom:.8rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .event-list-item__type{margin-bottom:.9rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .event-list-item__type{margin-bottom:.95rem}}.su-event-list-item .su-event-list-item__details .event-list-item__type a{color:#2e2d29;text-decoration:none}.su-event-list-item .su-event-list-item__details .event-list-item__type a:focus,.su-event-list-item .su-event-list-item__details .event-list-item__type a:hover{color:#b1040e}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .event-list-item__audience{margin-bottom:.8rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .event-list-item__audience{margin-bottom:.9rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .event-list-item__audience{margin-bottom:.95rem}}.su-event-list-item .su-event-list-item__details .event-list-item__audience a{color:#2e2d29;font-weight:400;text-decoration:none}.su-event-list-item .su-event-list-item__details h2,.su-event-list-item .su-event-list-item__details h3{font-size:1.5625em}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details h2,.su-event-list-item .su-event-list-item__details h3{margin-bottom:1.07rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details h2,.su-event-list-item .su-event-list-item__details h3{margin-bottom:1.2rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details h2,.su-event-list-item .su-event-list-item__details h3{margin-bottom:1.27rem}}.su-event-list-item .su-event-list-item__details h2>a,.su-event-list-item .su-event-list-item__details h3>a{color:#b1040e;font-weight:700;text-decoration:none}.su-event-list-item .su-event-list-item__details h2>a:active,.su-event-list-item .su-event-list-item__details h2>a:focus,.su-event-list-item .su-event-list-item__details h2>a:hover,.su-event-list-item .su-event-list-item__details h3>a:active,.su-event-list-item .su-event-list-item__details h3>a:focus,.su-event-list-item .su-event-list-item__details h3>a:hover{color:#2e2d29}.su-event-list-item .su-event-list-item__details h2>a:after,.su-event-list-item .su-event-list-item__details h3>a:after{background-color:#b1040e;height:20px;width:20px}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:2.74rem}}.su-event-list-item .su-event-list-item__details .event-list-item__subheadline h3{font-size:1.25em}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .views-field-su-event-dek{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .views-field-su-event-dek{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .views-field-su-event-dek{margin-bottom:1.9rem}}.su-event-list-item .su-event-list-item__details .address{font-size:1.8rem;line-height:1.3}@media (max-width:767px){.su-event-list-item .su-event-list-item__details .address{font-size:1.6rem}}.su-event-list-item .su-event-list-item__details .views-field-su-event-location{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8rem;line-height:1.3;overflow-wrap:anywhere}@media (max-width:767px){.su-event-list-item .su-event-list-item__details .views-field-su-event-location{font-size:1.6rem}}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .views-field-su-event-location>.map-icon{padding-right:.8rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .views-field-su-event-location>.map-icon{padding-right:.9rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .views-field-su-event-location>.map-icon{padding-right:.95rem}}.su-event-list-item .su-event-list-item__details .views-field-su-event-location>.map-icon:before{color:#2e2d29;content:"\f3c5";font-family:Font Awesome\ 5 Free;font-weight:600}.su-event-list-item .su-event-list-item__details .views-field-su-event-address{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8rem;line-height:1.3}@media (max-width:767px){.su-event-list-item .su-event-list-item__details .views-field-su-event-address{font-size:1.6rem}}@media only screen and (min-width:0){.su-event-list-item .su-event-list-item__details .views-field-su-event-address>.map-icon{padding-right:.8rem}}@media only screen and (min-width:768px){.su-event-list-item .su-event-list-item__details .views-field-su-event-address>.map-icon{padding-right:.9rem}}@media only screen and (min-width:1500px){.su-event-list-item .su-event-list-item__details .views-field-su-event-address>.map-icon{padding-right:.95rem}}.su-event-list-item .su-event-list-item__details .views-field-su-event-address>.map-icon:before{color:#2e2d29;content:"\f3c5";font-family:Font Awesome\ 5 Free;font-weight:600}.su-event-list-item .su-event-list-item__details .views-field-su-entered-event-address.views-field-su-event-address{display:block}.su-event-list-item .su-event-list-item__details .views-field-su-entered-event-address.views-field-su-event-address .map-icon+span{margin-right:5px}.su-event-list-item .su-event-list-item__details .views-field-su-entered-event-address.views-field-su-event-address span:nth-child(n+3){display:block;margin-left:27px}@media only screen and (min-width:0){.section-events-list--content .main-region{padding-left:3.2rem}}@media only screen and (min-width:768px){.section-events-list--content .main-region{padding-left:3.6rem}}@media only screen and (min-width:1500px){.section-events-list--content .main-region{padding-left:3.8rem}}@media only screen and (min-width:0){.stanford-events-list-page .views-infinite-scroll-content-wrapper,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.stanford-events-list-page .views-infinite-scroll-content-wrapper,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.stanford-events-list-page .views-infinite-scroll-content-wrapper,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper{margin-bottom:7.6rem}}@media only screen and (min-width:0){.stanford-events-list-page .views-infinite-scroll-content-wrapper+.js-pager__items,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:11.2rem}}@media only screen and (min-width:768px){.stanford-events-list-page .views-infinite-scroll-content-wrapper+.js-pager__items,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:12.6rem}}@media only screen and (min-width:1500px){.stanford-events-list-page .views-infinite-scroll-content-wrapper+.js-pager__items,.stanford-events-list-page--filtered .views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:13.3rem}}@media only screen and (min-width:0){.node-stanford-event-series-title{margin-bottom:1.07rem}}@media only screen and (min-width:768px){.node-stanford-event-series-title{margin-bottom:1.2rem}}@media only screen and (min-width:1500px){.node-stanford-event-series-title{margin-bottom:1.27rem}}@media only screen and (min-width:0){.node-stanford-event-series-su-event-series-subheadline{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.node-stanford-event-series-su-event-series-subheadline{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.node-stanford-event-series-su-event-series-subheadline{margin-bottom:3.8rem}}@media only screen and (min-width:768px){.node-stanford-event-series-su-event-series-dek{font-size:2.1rem;line-height:1.7}}@media only screen and (min-width:0){.node-stanford-event-series-su-event-series-dek{padding-bottom:4rem}}@media only screen and (min-width:768px){.node-stanford-event-series-su-event-series-dek{padding-bottom:4.5rem}}@media only screen and (min-width:1500px){.node-stanford-event-series-su-event-series-dek{padding-bottom:4.75rem}}@media only screen and (min-width:0){.node-stanford-event-series-su-event-series-dek{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.node-stanford-event-series-su-event-series-dek{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.node-stanford-event-series-su-event-series-dek{margin-bottom:7.6rem}}@media only screen and (min-width:0){.su-event-series-items{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.su-event-series-items{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.su-event-series-items{margin-bottom:7.6rem}}.su-past-event{background:none;border-radius:0;color:#6d6c69;display:inline;font-style:normal;font-weight:600;margin:0;padding:0;text-transform:uppercase}.su-past-event:not(:only-child):after{content:" | "}.su-event--past-events-text{color:#544948;font-size:2.1rem;font-weight:600;line-height:1.5;margin-bottom:1em;margin-top:.6em}.views-field-su-event-edit a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem;text-align:right}.views-field-su-event-edit a:after,.views-field-su-event-edit a:before{background-color:#b1040e;color:#fff}.views-field-su-event-edit a:focus,.views-field-su-event-edit a:focus:after,.views-field-su-event-edit a:focus:before,.views-field-su-event-edit a:hover,.views-field-su-event-edit a:hover:after,.views-field-su-event-edit a:hover:before{background-color:#fff;color:#2e2d29}.views-field-su-event-edit a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.views-field-su-event-edit a:hover:after,.views-field-su-event-edit a:hover:before{background-color:#2e2d29;color:#fff}.views-field-su-event-edit a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.views-field-su-event-edit a:focus:after,.views-field-su-event-edit a:focus:before{background-color:#2e2d29;color:#fff} \ No newline at end of file diff --git a/modules/stanford_events/lib/scss/components/event-list/stanford_events.event-list.scss b/modules/stanford_events/lib/scss/components/event-list/stanford_events.event-list.scss index dbc743c5..4bcae70a 100644 --- a/modules/stanford_events/lib/scss/components/event-list/stanford_events.event-list.scss +++ b/modules/stanford_events/lib/scss/components/event-list/stanford_events.event-list.scss @@ -66,7 +66,8 @@ h1 { } } - h2 { + h2, + h3 { @include modular-typography(2); @include modular-spacing('margin', null null -1 null); diff --git a/modules/stanford_events/templates/components/card/card.html.twig b/modules/stanford_events/templates/components/card/card.html.twig index 034bf0f2..7d129f36 100644 --- a/modules/stanford_events/templates/components/card/card.html.twig +++ b/modules/stanford_events/templates/components/card/card.html.twig @@ -42,5 +42,6 @@ start_date: start_date, start_month: start_month, subheadline: subheadline, - url: url + url: url, + variant: variant }) }} diff --git a/modules/stanford_events/templates/components/card/card.ui_patterns.yml b/modules/stanford_events/templates/components/card/card.ui_patterns.yml index 3753df3b..5e83671b 100644 --- a/modules/stanford_events/templates/components/card/card.ui_patterns.yml +++ b/modules/stanford_events/templates/components/card/card.ui_patterns.yml @@ -1,6 +1,11 @@ events_card: label: Events Card Item description: "Building block component for the events list page." + variants: + default: + label: Default + h3_header: + label: H3 Header fields: start_month: type: text diff --git a/modules/stanford_events/templates/components/list/list.html.twig b/modules/stanford_events/templates/components/list/list.html.twig index 42c67552..89486e1d 100644 --- a/modules/stanford_events/templates/components/list/list.html.twig +++ b/modules/stanford_events/templates/components/list/list.html.twig @@ -36,6 +36,7 @@ {%- set link_attributes = link_attributes.addClass('su-link--external') -%} {%- endif %} {%- endif -%} +{% set header_tag = variant == 'h3_header' ? 'h3' : 'h2' %}
@@ -66,7 +67,7 @@ {%- if url|render_clean is empty -%} {{- headline -}} {%- else -%} -

{{ headline|render_clean }}

+ <{{ header_tag }}>{{ headline|render_clean }} {%- endif -%} {# Event Subheadline #} diff --git a/modules/stanford_events/templates/components/list/list.ui_patterns.yml b/modules/stanford_events/templates/components/list/list.ui_patterns.yml index fcc00407..4952216f 100644 --- a/modules/stanford_events/templates/components/list/list.ui_patterns.yml +++ b/modules/stanford_events/templates/components/list/list.ui_patterns.yml @@ -1,6 +1,11 @@ events_list: label: Events List Item description: "Building block component for the events list page." + variants: + default: + label: Default + h3_header: + label: H3 Header fields: start_month: type: text diff --git a/modules/stanford_events/yarn.lock b/modules/stanford_events/yarn.lock index 85da05cc..8856e36e 100644 --- a/modules/stanford_events/yarn.lock +++ b/modules/stanford_events/yarn.lock @@ -1238,9 +1238,9 @@ "@jridgewell/trace-mapping" "^0.3.9" "@jridgewell/resolve-uri@^3.1.0": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== "@jridgewell/set-array@^1.0.1": version "1.1.2" @@ -1812,13 +1812,13 @@ braces@^3.0.2: dependencies: fill-range "^7.0.1" -browserslist@^4.0.0, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.1, browserslist@^4.22.2: - version "4.22.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.3.tgz#299d11b7e947a6b843981392721169e27d60c5a6" - integrity sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A== +browserslist@^4.0.0, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.1, browserslist@^4.22.2, browserslist@^4.22.3: + version "4.23.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" + integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== dependencies: - caniuse-lite "^1.0.30001580" - electron-to-chromium "^1.4.648" + caniuse-lite "^1.0.30001587" + electron-to-chromium "^1.4.668" node-releases "^2.0.14" update-browserslist-db "^1.0.13" @@ -1917,10 +1917,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001580: - version "1.0.30001585" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001585.tgz#0b4e848d84919c783b2a41c13f7de8ce96744401" - integrity sha512-yr2BWR1yLXQ8fMpdS/4ZZXpseBgE7o4g41x3a6AJOqZuOi+iE/WdJYAuZ6Y95i4Ohd2Y+9MzIWRR+uGABH4s3Q== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001587: + version "1.0.30001587" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz#a0bce920155fa56a1885a69c74e1163fc34b4881" + integrity sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA== chalk@^2.4.2: version "2.4.2" @@ -2057,11 +2057,11 @@ convert-source-map@^2.0.0: integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== core-js-compat@^3.31.0, core-js-compat@^3.34.0: - version "3.35.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.35.1.tgz#215247d7edb9e830efa4218ff719beb2803555e2" - integrity sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw== + version "3.36.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.36.0.tgz#087679119bc2fdbdefad0d45d8e5d307d45ba190" + integrity sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw== dependencies: - browserslist "^4.22.2" + browserslist "^4.22.3" core-js@^2.6.5: version "2.6.12" @@ -2319,10 +2319,10 @@ domutils@^2.8.0: domelementtype "^2.2.0" domhandler "^4.2.0" -electron-to-chromium@^1.4.648: - version "1.4.664" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.664.tgz#b00fc67d5d4f124e429b0dcce5a02ae18ef33ede" - integrity sha512-k9VKKSkOSNPvSckZgDDl/IQx45E1quMjX8QfLzUsAs/zve8AyFDK+ByRynSP/OfEfryiKHpQeMf00z0leLCc3A== +electron-to-chromium@^1.4.668: + version "1.4.669" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.669.tgz#37e9cc16cc2fbdd8e06a46fc1fd3a1249e091f64" + integrity sha512-E2SmpffFPrZhBSgf8ibqanRS2mpuk3FIRDzLDwt7WFpfgJMKDHJs0hmacyP0PS1cWsq0dVkwIIzlscNaterkPg== emoji-regex@^8.0.0: version "8.0.0" @@ -2682,9 +2682,9 @@ has-unicode@^2.0.1: integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== hasown@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" - integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== + version "2.0.1" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.1.tgz#26f48f039de2c0f8d3356c223fb8d50253519faa" + integrity sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA== dependencies: function-bind "^1.1.2" @@ -2809,10 +2809,13 @@ interpret@^3.1.1: resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== +ip-address@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" + integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== + dependencies: + jsbn "1.1.0" + sprintf-js "^1.1.3" is-arrayish@^0.2.1: version "0.2.1" @@ -2921,6 +2924,11 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" @@ -4411,11 +4419,11 @@ socks-proxy-agent@^7.0.0: socks "^2.6.2" socks@^2.6.2: - version "2.7.1" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + version "2.7.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.3.tgz#7d8a75d7ce845c0a96f710917174dba0d543a785" + integrity sha512-vfuYK48HXCTFD03G/1/zkIls3Ebr2YNa4qU9gHDZdblHLiqhJrJGkY3+0Nx0JpN9qBhJbVObc1CNciT1bIZJxw== dependencies: - ip "^2.0.0" + ip-address "^9.0.5" smart-buffer "^4.2.0" source-list-map@^2.0.0: @@ -4472,6 +4480,11 @@ spdx-license-ids@^3.0.0: resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c" integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== +sprintf-js@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== + ssri@^8.0.0, ssri@^8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" diff --git a/modules/stanford_news/dist/css/news-vertical-teaser.css b/modules/stanford_news/dist/css/news-vertical-teaser.css index 338dd8c6..834dac6d 100644 --- a/modules/stanford_news/dist/css/news-vertical-teaser.css +++ b/modules/stanford_news/dist/css/news-vertical-teaser.css @@ -1 +1 @@ -.news-vertical-teaser__footer a,.stanford-news--cards>.more-link a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:400;line-height:1;text-align:center;text-decoration:none;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.news-vertical-teaser__footer a a,.stanford-news--cards>.more-link a a{font-weight:400;text-decoration:none}.news-vertical-teaser__footer a:active,.news-vertical-teaser__footer a:focus,.news-vertical-teaser__footer a:hover,.stanford-news--cards>.more-link a:active,.stanford-news--cards>.more-link a:focus,.stanford-news--cards>.more-link a:hover{text-decoration:underline}@media (max-width:991px){.stanford-news--cards .flex-container .more-news-view{display:block}.stanford-news--cards .flex-container .more-news-view .flex-4-of-12{max-width:100%}}.stanford-news--cards>.more-link{text-align:center}@media only screen and (min-width:0){.stanford-news--cards>.more-link{margin-bottom:14.4rem;margin-top:4rem}}@media only screen and (min-width:768px){.stanford-news--cards>.more-link{margin-bottom:16.2rem;margin-top:4.5rem}}@media only screen and (min-width:1500px){.stanford-news--cards>.more-link{margin-bottom:17.1rem;margin-top:4.75rem}}.stanford-news--cards>.more-link a{background-color:#b1040e;color:#fff;padding:1rem 2rem 1.15rem}.stanford-news--cards>.more-link a:after,.stanford-news--cards>.more-link a:before{background-color:#fff;color:#b1040e}.stanford-news--cards>.more-link a:focus,.stanford-news--cards>.more-link a:hover{background-color:#2e2d29;color:#fff}.stanford-news--cards>.more-link a:focus:after,.stanford-news--cards>.more-link a:focus:before,.stanford-news--cards>.more-link a:hover:after,.stanford-news--cards>.more-link a:hover:before{background-color:#fff}.stanford-news--cards>.more-link a:focus{-webkit-box-shadow:0 0 3px #53565a,0 0 7px #53565a;box-shadow:0 0 3px #53565a,0 0 7px #53565a}.more-news-view>div:nth-child(-n+3){-webkit-box-flex:0;-ms-flex:none;flex:none;max-width:980px}.more-news-view>div:first-child:nth-last-child(2),.more-news-view>div:first-child:nth-last-child(2)~div{width:45%}@media (max-width:991px){.more-news-view>div:first-child:nth-last-child(2),.more-news-view>div:first-child:nth-last-child(2)~div{width:100%}}.more-news-view>div:first-child:nth-last-child(3),.more-news-view>div:first-child:nth-last-child(3)~div{width:30%}@media (max-width:991px){.more-news-view>div:first-child:nth-last-child(3),.more-news-view>div:first-child:nth-last-child(3)~div{width:100%}}.more-news-view>div:only-of-type{-webkit-box-flex:0;-ms-flex:none;flex:none;margin:0 auto;max-width:980px;width:100%}.stanford-news-vertical-teaser-term.block-views .more-news-view>div:only-of-type{margin:unset;max-width:25%;width:100%}@media only screen and (min-width:0){.su-news-vertical-teaser h2{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-news-vertical-teaser h2{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2{margin-left:3.8rem}}@media only screen and (min-width:0){.su-news-vertical-teaser h2{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2{margin-right:3.8rem}}.su-news-vertical-teaser.su-card{margin:0 auto;max-width:980px;overflow:auto}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card{margin-bottom:3.8rem}}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.9rem}}.su-news-vertical-teaser.su-card .su-media__wrapper iframe,.su-news-vertical-teaser.su-card .su-media__wrapper img,.su-news-vertical-teaser.su-card .su-media__wrapper picture{min-width:100%;width:100%}@media only screen and (min-width:992px){.su-news-vertical-teaser.su-card .su-media__wrapper iframe{min-height:489px}}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link{display:block}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:hover h2{text-decoration:underline}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:focus{outline:none}.su-news-vertical-teaser.su-card .su-link{color:#2e2d29;display:inline-block;font-size:1.5625em;font-weight:700;letter-spacing:-.012em}.su-news-vertical-teaser.su-card .su-link:after{background-color:#b1040e;font-size:1.5625em;letter-spacing:-.012em}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.07rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.2rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.27rem}}.su-news-vertical-teaser.su-card .su-link--external:after{height:1.2rem;width:1.2rem}.su-news-vertical-teaser.su-card .su-card__contents:not(.su-card--icon){padding-top:0}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics{font-size:1.8rem;line-height:1.3}@media (max-width:767px){.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics{font-size:1.6rem}}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a{color:#b1040e;font-weight:400;text-decoration:none}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a:focus,.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a:hover{text-decoration:underline}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics ul{list-style:none;margin:0;padding:0}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li{display:inline-block}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li:after{content:",";margin-right:5px}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li:last-child:after{content:"";margin-right:0}.su-news-vertical-teaser.su-card:focus-within{outline:1px auto -webkit-focus-ring-color}article>.su-news-vertical-teaser__link.su-link.su-link--external{font-size:1em}article>.su-news-vertical-teaser__link.su-link.su-link--external:after{display:none}@media only screen and (min-width:0){.news-vertical-teaser__footer{margin:2.31rem}}@media only screen and (min-width:768px){.news-vertical-teaser__footer{margin:2.6rem}}@media only screen and (min-width:1500px){.news-vertical-teaser__footer{margin:2.74rem}}.news-vertical-teaser__footer a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem}.news-vertical-teaser__footer a:after,.news-vertical-teaser__footer a:before{background-color:#b1040e;color:#fff}.news-vertical-teaser__footer a:focus,.news-vertical-teaser__footer a:focus:after,.news-vertical-teaser__footer a:focus:before,.news-vertical-teaser__footer a:hover,.news-vertical-teaser__footer a:hover:after,.news-vertical-teaser__footer a:hover:before{background-color:#fff;color:#2e2d29}.news-vertical-teaser__footer a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.news-vertical-teaser__footer a:hover:after,.news-vertical-teaser__footer a:hover:before{background-color:#2e2d29;color:#fff}.news-vertical-teaser__footer a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.news-vertical-teaser__footer a:focus:after,.news-vertical-teaser__footer a:focus:before{background-color:#2e2d29;color:#fff}@media only screen and (min-width:0){.stanford-news-terms--results-for{margin-bottom:4rem}}@media only screen and (min-width:768px){.stanford-news-terms--results-for{margin-bottom:4.5rem}}@media only screen and (min-width:1500px){.stanford-news-terms--results-for{margin-bottom:4.75rem}} \ No newline at end of file +.news-vertical-teaser__footer a,.stanford-news--cards>.more-link a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:400;line-height:1;text-align:center;text-decoration:none;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.news-vertical-teaser__footer a a,.stanford-news--cards>.more-link a a{font-weight:400;text-decoration:none}.news-vertical-teaser__footer a:active,.news-vertical-teaser__footer a:focus,.news-vertical-teaser__footer a:hover,.stanford-news--cards>.more-link a:active,.stanford-news--cards>.more-link a:focus,.stanford-news--cards>.more-link a:hover{text-decoration:underline}@media (max-width:991px){.stanford-news--cards .flex-container .more-news-view{display:block}.stanford-news--cards .flex-container .more-news-view .flex-4-of-12{max-width:100%}}.stanford-news--cards>.more-link{text-align:center}@media only screen and (min-width:0){.stanford-news--cards>.more-link{margin-bottom:14.4rem;margin-top:4rem}}@media only screen and (min-width:768px){.stanford-news--cards>.more-link{margin-bottom:16.2rem;margin-top:4.5rem}}@media only screen and (min-width:1500px){.stanford-news--cards>.more-link{margin-bottom:17.1rem;margin-top:4.75rem}}.stanford-news--cards>.more-link a{background-color:#b1040e;color:#fff;padding:1rem 2rem 1.15rem}.stanford-news--cards>.more-link a:after,.stanford-news--cards>.more-link a:before{background-color:#fff;color:#b1040e}.stanford-news--cards>.more-link a:focus,.stanford-news--cards>.more-link a:hover{background-color:#2e2d29;color:#fff}.stanford-news--cards>.more-link a:focus:after,.stanford-news--cards>.more-link a:focus:before,.stanford-news--cards>.more-link a:hover:after,.stanford-news--cards>.more-link a:hover:before{background-color:#fff}.stanford-news--cards>.more-link a:focus{-webkit-box-shadow:0 0 3px #53565a,0 0 7px #53565a;box-shadow:0 0 3px #53565a,0 0 7px #53565a}.more-news-view>div:nth-child(-n+3){-webkit-box-flex:0;-ms-flex:none;flex:none;max-width:980px}.more-news-view>div:first-child:nth-last-child(2),.more-news-view>div:first-child:nth-last-child(2)~div{width:45%}@media (max-width:991px){.more-news-view>div:first-child:nth-last-child(2),.more-news-view>div:first-child:nth-last-child(2)~div{width:100%}}.more-news-view>div:first-child:nth-last-child(3),.more-news-view>div:first-child:nth-last-child(3)~div{width:30%}@media (max-width:991px){.more-news-view>div:first-child:nth-last-child(3),.more-news-view>div:first-child:nth-last-child(3)~div{width:100%}}.more-news-view>div:only-of-type{-webkit-box-flex:0;-ms-flex:none;flex:none;margin:0 auto;max-width:980px;width:100%}.stanford-news-vertical-teaser-term.block-views .more-news-view>div:only-of-type{margin:unset;max-width:25%;width:100%}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.8rem}}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.8rem}}.su-news-vertical-teaser.su-card{margin:0 auto;max-width:980px;overflow:auto}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card{margin-bottom:3.8rem}}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.9rem}}.su-news-vertical-teaser.su-card .su-media__wrapper iframe,.su-news-vertical-teaser.su-card .su-media__wrapper img,.su-news-vertical-teaser.su-card .su-media__wrapper picture{min-width:100%;width:100%}@media only screen and (min-width:992px){.su-news-vertical-teaser.su-card .su-media__wrapper iframe{min-height:489px}}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link{display:block}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:hover h2{text-decoration:underline}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:focus{outline:none}.su-news-vertical-teaser.su-card .su-link{color:#2e2d29;display:inline-block;font-size:1.5625em;font-weight:700;letter-spacing:-.012em}.su-news-vertical-teaser.su-card .su-link:after{background-color:#b1040e;font-size:1.5625em;letter-spacing:-.012em}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.07rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.2rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.27rem}}.su-news-vertical-teaser.su-card .su-link--external:after{height:1.2rem;width:1.2rem}.su-news-vertical-teaser.su-card .su-card__contents:not(.su-card--icon){padding-top:0}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics{font-size:1.8rem;line-height:1.3}@media (max-width:767px){.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics{font-size:1.6rem}}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a{color:#b1040e;font-weight:400;text-decoration:none}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a:focus,.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a:hover{text-decoration:underline}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics ul{list-style:none;margin:0;padding:0}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li{display:inline-block}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li:after{content:",";margin-right:5px}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li:last-child:after{content:"";margin-right:0}.su-news-vertical-teaser.su-card:focus-within{outline:1px auto -webkit-focus-ring-color}article>.su-news-vertical-teaser__link.su-link.su-link--external{font-size:1em}article>.su-news-vertical-teaser__link.su-link.su-link--external:after{display:none}@media only screen and (min-width:0){.news-vertical-teaser__footer{margin:2.31rem}}@media only screen and (min-width:768px){.news-vertical-teaser__footer{margin:2.6rem}}@media only screen and (min-width:1500px){.news-vertical-teaser__footer{margin:2.74rem}}.news-vertical-teaser__footer a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem}.news-vertical-teaser__footer a:after,.news-vertical-teaser__footer a:before{background-color:#b1040e;color:#fff}.news-vertical-teaser__footer a:focus,.news-vertical-teaser__footer a:focus:after,.news-vertical-teaser__footer a:focus:before,.news-vertical-teaser__footer a:hover,.news-vertical-teaser__footer a:hover:after,.news-vertical-teaser__footer a:hover:before{background-color:#fff;color:#2e2d29}.news-vertical-teaser__footer a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.news-vertical-teaser__footer a:hover:after,.news-vertical-teaser__footer a:hover:before{background-color:#2e2d29;color:#fff}.news-vertical-teaser__footer a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.news-vertical-teaser__footer a:focus:after,.news-vertical-teaser__footer a:focus:before{background-color:#2e2d29;color:#fff}@media only screen and (min-width:0){.stanford-news-terms--results-for{margin-bottom:4rem}}@media only screen and (min-width:768px){.stanford-news-terms--results-for{margin-bottom:4.5rem}}@media only screen and (min-width:1500px){.stanford-news-terms--results-for{margin-bottom:4.75rem}} \ No newline at end of file diff --git a/modules/stanford_news/lib/scss/components/news-vertical-teaser/_news-vertical-teaser.scss b/modules/stanford_news/lib/scss/components/news-vertical-teaser/_news-vertical-teaser.scss index 06ceea28..39a7d18c 100644 --- a/modules/stanford_news/lib/scss/components/news-vertical-teaser/_news-vertical-teaser.scss +++ b/modules/stanford_news/lib/scss/components/news-vertical-teaser/_news-vertical-teaser.scss @@ -78,7 +78,8 @@ } .su-news-vertical-teaser { - h2 { + h2, + h3 { @include modular-spacing('margin-bottom', 1); @include modular-spacing('margin-left', 2); @include modular-spacing('margin-right', 2); diff --git a/modules/stanford_news/templates/components/news-list/news-item-list.twig b/modules/stanford_news/templates/components/news-list/news-item-list.twig index 7d13808d..28172f70 100644 --- a/modules/stanford_news/templates/components/news-list/news-item-list.twig +++ b/modules/stanford_news/templates/components/news-list/news-item-list.twig @@ -36,6 +36,7 @@ {%- if news_list_image|render|striptags('')|trim is empty -%} {%- set attributes = attributes.addClass('su-news-list-image__empty') -%} {%- endif %} +{% set header_tag = variant == 'h3_header' ? 'h3' : 'h2' %} @@ -50,9 +51,9 @@ {%- endif -%} {% if news_list_headline|render_clean %} -

+ <{{ header_tag}} id="{{ headingID }}"> {{- news_list_headline -}} -

+ {% endif %} {%- if news_url is not empty -%} diff --git a/modules/stanford_news/templates/components/news-list/news-list.ui_patterns.yml b/modules/stanford_news/templates/components/news-list/news-list.ui_patterns.yml index 431d6e7f..48a12874 100644 --- a/modules/stanford_news/templates/components/news-list/news-list.ui_patterns.yml +++ b/modules/stanford_news/templates/components/news-list/news-list.ui_patterns.yml @@ -1,6 +1,11 @@ news-list: label: News List Item description: "Building block component for the news list page." + variants: + default: + label: Default + h3_header: + label: H3 Header fields: news_list_image: type: text diff --git a/modules/stanford_news/templates/components/news-vertical-teaser/news-vertical-teaser.twig b/modules/stanford_news/templates/components/news-vertical-teaser/news-vertical-teaser.twig index 3b7eccaf..180f9011 100644 --- a/modules/stanford_news/templates/components/news-vertical-teaser/news-vertical-teaser.twig +++ b/modules/stanford_news/templates/components/news-vertical-teaser/news-vertical-teaser.twig @@ -37,6 +37,7 @@ {%- endif -%} {% set news_url = news_url|render|striptags("")|trim %} +{% set header_tag = variant == 'h3_header' ? 'h3' : 'h2' %} {%- if news_url is not empty -%} @@ -48,9 +49,9 @@
- +
{%- if news_url is not empty -%} diff --git a/modules/stanford_news/templates/components/news-vertical-teaser/news-vertical-teaser.ui_patterns.yml b/modules/stanford_news/templates/components/news-vertical-teaser/news-vertical-teaser.ui_patterns.yml index c6e046cf..f1ee41dc 100644 --- a/modules/stanford_news/templates/components/news-vertical-teaser/news-vertical-teaser.ui_patterns.yml +++ b/modules/stanford_news/templates/components/news-vertical-teaser/news-vertical-teaser.ui_patterns.yml @@ -1,6 +1,11 @@ news-vertical-teaser: label: News Vertical Teaser description: "News Vertical Teaser" + variants: + default: + label: Default + h3_header: + label: H3 Header fields: news_vertical_teaser_image: type: text diff --git a/modules/stanford_news/yarn.lock b/modules/stanford_news/yarn.lock index d1560e80..4365ab3d 100644 --- a/modules/stanford_news/yarn.lock +++ b/modules/stanford_news/yarn.lock @@ -10,46 +10,46 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13": - version "7.22.13" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" - integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: - "@babel/highlight" "^7.22.13" + "@babel/highlight" "^7.23.4" chalk "^2.4.2" -"@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0" - integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.3", "@babel/compat-data@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" + integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== "@babel/core@^7.22.1": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.0.tgz#f8259ae0e52a123eb40f552551e647b506a94d83" - integrity sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ== + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.9.tgz#b028820718000f267870822fec434820e9b1e4d1" + integrity sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.23.0" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-module-transforms" "^7.23.0" - "@babel/helpers" "^7.23.0" - "@babel/parser" "^7.23.0" - "@babel/template" "^7.22.15" - "@babel/traverse" "^7.23.0" - "@babel/types" "^7.23.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.23.9" + "@babel/parser" "^7.23.9" + "@babel/template" "^7.23.9" + "@babel/traverse" "^7.23.9" + "@babel/types" "^7.23.9" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" - integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== +"@babel/generator@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== dependencies: - "@babel/types" "^7.23.0" + "@babel/types" "^7.23.6" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" @@ -61,40 +61,40 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== dependencies: "@babel/types" "^7.22.15" -"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52" - integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== +"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== dependencies: - "@babel/compat-data" "^7.22.9" - "@babel/helper-validator-option" "^7.22.15" - browserslist "^4.21.9" + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4" - integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== +"@babel/helper-create-class-features-plugin@^7.22.15": + version "7.23.10" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.10.tgz#25d55fafbaea31fd0e723820bb6cc3df72edf7ea" + integrity sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-member-expression-to-functions" "^7.23.0" "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-replace-supers" "^7.22.20" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" semver "^6.3.1" -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== @@ -103,10 +103,10 @@ regexpu-core "^5.3.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" - integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== +"@babel/helper-define-polyfill-provider@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz#465805b7361f461e86c680f1de21eaf88c25901b" + integrity sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -114,7 +114,7 @@ lodash.debounce "^4.0.8" resolve "^1.14.2" -"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": +"@babel/helper-environment-visitor@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== @@ -134,24 +134,24 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-member-expression-to-functions@^7.22.15": +"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== dependencies: "@babel/types" "^7.23.0" -"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5": +"@babel/helper-module-imports@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== dependencies: "@babel/types" "^7.22.15" -"@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz#3ec246457f6c842c0aee62a01f60739906f7047e" - integrity sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw== +"@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== dependencies: "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-module-imports" "^7.22.15" @@ -171,7 +171,7 @@ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== -"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": +"@babel/helper-remap-async-to-generator@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== @@ -180,7 +180,7 @@ "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-wrap-function" "^7.22.20" -"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": +"@babel/helper-replace-supers@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== @@ -210,20 +210,20 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-option@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" - integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== +"@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== "@babel/helper-wrap-function@^7.22.20": version "7.22.20" @@ -234,44 +234,52 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.22.19" -"@babel/helpers@^7.23.0": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.1.tgz#44e981e8ce2b9e99f8f0b703f3326a4636c16d15" - integrity sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA== +"@babel/helpers@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.9.tgz#c3e20bbe7f7a7e10cb9b178384b4affdf5995c7d" + integrity sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ== dependencies: - "@babel/template" "^7.22.15" - "@babel/traverse" "^7.23.0" - "@babel/types" "^7.23.0" + "@babel/template" "^7.23.9" + "@babel/traverse" "^7.23.9" + "@babel/types" "^7.23.9" -"@babel/highlight@^7.22.13": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" - integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: "@babel/helper-validator-identifier" "^7.22.20" chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.22.15", "@babel/parser@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" - integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== +"@babel/parser@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.9.tgz#7b903b6149b0f8fa7ad564af646c4c38a77fc44b" + integrity sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962" - integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" + integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz#2aeb91d337d4e1a1e7ce85b76a37f5301781200f" - integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" + integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.15" + "@babel/plugin-transform-optional-chaining" "^7.23.3" + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.7": + version "7.23.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz#516462a95d10a9618f197d39ad291a9b47ae1d7b" + integrity sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": version "7.21.0-placeholder-for-preset-env.2" @@ -313,17 +321,17 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-import-assertions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" - integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== +"@babel/plugin-syntax-import-assertions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" + integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" - integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== +"@babel/plugin-syntax-import-attributes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" + integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -405,211 +413,211 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" - integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== +"@babel/plugin-transform-arrow-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" + integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-generator-functions@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz#3b153af4a6b779f340d5b80d3f634f55820aefa3" - integrity sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w== +"@babel/plugin-transform-async-generator-functions@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz#9adaeb66fc9634a586c5df139c6240d41ed801ce" + integrity sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ== dependencies: - "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.9" + "@babel/helper-remap-async-to-generator" "^7.22.20" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-transform-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" - integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== +"@babel/plugin-transform-async-to-generator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" + integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== dependencies: - "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-module-imports" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" -"@babel/plugin-transform-block-scoped-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" - integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== +"@babel/plugin-transform-block-scoped-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" + integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz#8744d02c6c264d82e1a4bc5d2d501fd8aff6f022" - integrity sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g== +"@babel/plugin-transform-block-scoping@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" + integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-class-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" - integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== +"@babel/plugin-transform-class-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" + integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-class-static-block@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz#dc8cc6e498f55692ac6b4b89e56d87cec766c974" - integrity sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== +"@babel/plugin-transform-class-static-block@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" + integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.11" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-transform-classes@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b" - integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw== +"@babel/plugin-transform-classes@^7.23.8": + version "7.23.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz#d08ae096c240347badd68cdf1b6d1624a6435d92" + integrity sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-replace-supers" "^7.22.20" "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" - integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== +"@babel/plugin-transform-computed-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" + integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.5" + "@babel/template" "^7.22.15" -"@babel/plugin-transform-destructuring@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz#6447aa686be48b32eaf65a73e0e2c0bd010a266c" - integrity sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg== +"@babel/plugin-transform-destructuring@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" + integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" - integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== +"@babel/plugin-transform-dotall-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" + integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-duplicate-keys@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" - integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== +"@babel/plugin-transform-duplicate-keys@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" + integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dynamic-import@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz#2c7722d2a5c01839eaf31518c6ff96d408e447aa" - integrity sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== +"@babel/plugin-transform-dynamic-import@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" + integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-transform-exponentiation-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" - integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== +"@babel/plugin-transform-exponentiation-operator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" + integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-export-namespace-from@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz#b3c84c8f19880b6c7440108f8929caf6056db26c" - integrity sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== +"@babel/plugin-transform-export-namespace-from@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" + integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-transform-for-of@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29" - integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA== +"@babel/plugin-transform-for-of@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e" + integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" - integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== +"@babel/plugin-transform-function-name@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" + integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== dependencies: - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-function-name" "^7.23.0" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-json-strings@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz#689a34e1eed1928a40954e37f74509f48af67835" - integrity sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== +"@babel/plugin-transform-json-strings@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" + integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-transform-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" - integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== +"@babel/plugin-transform-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" + integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-logical-assignment-operators@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz#24c522a61688bde045b7d9bc3c2597a4d948fc9c" - integrity sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== +"@babel/plugin-transform-logical-assignment-operators@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" + integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-transform-member-expression-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" - integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== +"@babel/plugin-transform-member-expression-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" + integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-amd@^7.22.5": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz#05b2bc43373faa6d30ca89214731f76f966f3b88" - integrity sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw== +"@babel/plugin-transform-modules-amd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" + integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== dependencies: - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz#b3dba4757133b2762c00f4f94590cf6d52602481" - integrity sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ== +"@babel/plugin-transform-modules-commonjs@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" + integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== dependencies: - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.22.11": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz#77591e126f3ff4132a40595a6cccd00a6b60d160" - integrity sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg== +"@babel/plugin-transform-modules-systemjs@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz#105d3ed46e4a21d257f83a2f9e2ee4203ceda6be" + integrity sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw== dependencies: "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-identifier" "^7.22.20" -"@babel/plugin-transform-modules-umd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" - integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== +"@babel/plugin-transform-modules-umd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" + integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== dependencies: - "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": @@ -620,198 +628,199 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-new-target@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" - integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== +"@babel/plugin-transform-new-target@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" + integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz#debef6c8ba795f5ac67cd861a81b744c5d38d9fc" - integrity sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== +"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" + integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-transform-numeric-separator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz#498d77dc45a6c6db74bb829c02a01c1d719cbfbd" - integrity sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== +"@babel/plugin-transform-numeric-separator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" + integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-object-rest-spread@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz#21a95db166be59b91cde48775310c0df6e1da56f" - integrity sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== +"@babel/plugin-transform-object-rest-spread@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz#2b9c2d26bf62710460bdc0d1730d4f1048361b83" + integrity sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g== dependencies: - "@babel/compat-data" "^7.22.9" + "@babel/compat-data" "^7.23.3" "@babel/helper-compilation-targets" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.22.15" + "@babel/plugin-transform-parameters" "^7.23.3" -"@babel/plugin-transform-object-super@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" - integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== +"@babel/plugin-transform-object-super@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" + integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" -"@babel/plugin-transform-optional-catch-binding@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz#461cc4f578a127bb055527b3e77404cad38c08e0" - integrity sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== +"@babel/plugin-transform-optional-catch-binding@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" + integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz#73ff5fc1cf98f542f09f29c0631647d8ad0be158" - integrity sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g== +"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" + integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-transform-parameters@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114" - integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== +"@babel/plugin-transform-parameters@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" + integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-private-methods@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" - integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== +"@babel/plugin-transform-private-methods@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" + integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-private-property-in-object@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz#ad45c4fc440e9cb84c718ed0906d96cf40f9a4e1" - integrity sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== +"@babel/plugin-transform-private-property-in-object@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" + integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.11" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-transform-property-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" - integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== +"@babel/plugin-transform-property-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" + integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-regenerator@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" - integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== +"@babel/plugin-transform-regenerator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" + integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" regenerator-transform "^0.15.2" -"@babel/plugin-transform-reserved-words@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" - integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== +"@babel/plugin-transform-reserved-words@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" + integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-shorthand-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" - integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== +"@babel/plugin-transform-shorthand-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" + integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" - integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== +"@babel/plugin-transform-spread@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" + integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" - integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== +"@babel/plugin-transform-sticky-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" + integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-template-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" - integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== +"@babel/plugin-transform-template-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" + integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typeof-symbol@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" - integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== +"@babel/plugin-transform-typeof-symbol@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" + integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-escapes@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" - integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== +"@babel/plugin-transform-unicode-escapes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" + integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-property-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" - integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== +"@babel/plugin-transform-unicode-property-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" + integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" - integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== +"@babel/plugin-transform-unicode-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" + integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-sets-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" - integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== +"@babel/plugin-transform-unicode-sets-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" + integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/preset-env@^7.22.4": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.20.tgz#de9e9b57e1127ce0a2f580831717f7fb677ceedb" - integrity sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg== + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.23.9.tgz#beace3b7994560ed6bf78e4ae2073dff45387669" + integrity sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A== dependencies: - "@babel/compat-data" "^7.22.20" - "@babel/helper-compilation-targets" "^7.22.15" + "@babel/compat-data" "^7.23.5" + "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.15" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.15" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.7" "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.22.5" - "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-assertions" "^7.23.3" + "@babel/plugin-syntax-import-attributes" "^7.23.3" "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" @@ -823,59 +832,58 @@ "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.15" - "@babel/plugin-transform-async-to-generator" "^7.22.5" - "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.15" - "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.11" - "@babel/plugin-transform-classes" "^7.22.15" - "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.15" - "@babel/plugin-transform-dotall-regex" "^7.22.5" - "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.11" - "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.11" - "@babel/plugin-transform-for-of" "^7.22.15" - "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.11" - "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.11" - "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.15" - "@babel/plugin-transform-modules-systemjs" "^7.22.11" - "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-arrow-functions" "^7.23.3" + "@babel/plugin-transform-async-generator-functions" "^7.23.9" + "@babel/plugin-transform-async-to-generator" "^7.23.3" + "@babel/plugin-transform-block-scoped-functions" "^7.23.3" + "@babel/plugin-transform-block-scoping" "^7.23.4" + "@babel/plugin-transform-class-properties" "^7.23.3" + "@babel/plugin-transform-class-static-block" "^7.23.4" + "@babel/plugin-transform-classes" "^7.23.8" + "@babel/plugin-transform-computed-properties" "^7.23.3" + "@babel/plugin-transform-destructuring" "^7.23.3" + "@babel/plugin-transform-dotall-regex" "^7.23.3" + "@babel/plugin-transform-duplicate-keys" "^7.23.3" + "@babel/plugin-transform-dynamic-import" "^7.23.4" + "@babel/plugin-transform-exponentiation-operator" "^7.23.3" + "@babel/plugin-transform-export-namespace-from" "^7.23.4" + "@babel/plugin-transform-for-of" "^7.23.6" + "@babel/plugin-transform-function-name" "^7.23.3" + "@babel/plugin-transform-json-strings" "^7.23.4" + "@babel/plugin-transform-literals" "^7.23.3" + "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" + "@babel/plugin-transform-member-expression-literals" "^7.23.3" + "@babel/plugin-transform-modules-amd" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-modules-systemjs" "^7.23.9" + "@babel/plugin-transform-modules-umd" "^7.23.3" "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.11" - "@babel/plugin-transform-numeric-separator" "^7.22.11" - "@babel/plugin-transform-object-rest-spread" "^7.22.15" - "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.11" - "@babel/plugin-transform-optional-chaining" "^7.22.15" - "@babel/plugin-transform-parameters" "^7.22.15" - "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.11" - "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.10" - "@babel/plugin-transform-reserved-words" "^7.22.5" - "@babel/plugin-transform-shorthand-properties" "^7.22.5" - "@babel/plugin-transform-spread" "^7.22.5" - "@babel/plugin-transform-sticky-regex" "^7.22.5" - "@babel/plugin-transform-template-literals" "^7.22.5" - "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.10" - "@babel/plugin-transform-unicode-property-regex" "^7.22.5" - "@babel/plugin-transform-unicode-regex" "^7.22.5" - "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.23.3" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" + "@babel/plugin-transform-numeric-separator" "^7.23.4" + "@babel/plugin-transform-object-rest-spread" "^7.23.4" + "@babel/plugin-transform-object-super" "^7.23.3" + "@babel/plugin-transform-optional-catch-binding" "^7.23.4" + "@babel/plugin-transform-optional-chaining" "^7.23.4" + "@babel/plugin-transform-parameters" "^7.23.3" + "@babel/plugin-transform-private-methods" "^7.23.3" + "@babel/plugin-transform-private-property-in-object" "^7.23.4" + "@babel/plugin-transform-property-literals" "^7.23.3" + "@babel/plugin-transform-regenerator" "^7.23.3" + "@babel/plugin-transform-reserved-words" "^7.23.3" + "@babel/plugin-transform-shorthand-properties" "^7.23.3" + "@babel/plugin-transform-spread" "^7.23.3" + "@babel/plugin-transform-sticky-regex" "^7.23.3" + "@babel/plugin-transform-template-literals" "^7.23.3" + "@babel/plugin-transform-typeof-symbol" "^7.23.3" + "@babel/plugin-transform-unicode-escapes" "^7.23.3" + "@babel/plugin-transform-unicode-property-regex" "^7.23.3" + "@babel/plugin-transform-unicode-regex" "^7.23.3" + "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" "@babel/preset-modules" "0.1.6-no-external-plugins" - "@babel/types" "^7.22.19" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" + babel-plugin-polyfill-corejs2 "^0.4.8" + babel-plugin-polyfill-corejs3 "^0.9.0" + babel-plugin-polyfill-regenerator "^0.5.5" core-js-compat "^3.31.0" semver "^6.3.1" @@ -894,289 +902,308 @@ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== "@babel/runtime@^7.8.4": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.1.tgz#72741dc4d413338a91dcb044a86f3c0bc402646d" - integrity sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g== + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.9.tgz#47791a15e4603bb5f905bc0753801cf21d6345f7" + integrity sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.22.15", "@babel/template@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" - integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== +"@babel/template@^7.22.15", "@babel/template@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.23.9.tgz#f881d0487cba2828d3259dcb9ef5005a9731011a" + integrity sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA== dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/parser" "^7.22.15" - "@babel/types" "^7.22.15" + "@babel/code-frame" "^7.23.5" + "@babel/parser" "^7.23.9" + "@babel/types" "^7.23.9" -"@babel/traverse@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.0.tgz#18196ddfbcf4ccea324b7f6d3ada00d8c5a99c53" - integrity sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw== +"@babel/traverse@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.9.tgz#2f9d6aead6b564669394c5ce0f9302bb65b9d950" + integrity sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg== dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.23.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.23.0" - "@babel/types" "^7.23.0" - debug "^4.1.0" + "@babel/parser" "^7.23.9" + "@babel/types" "^7.23.9" + debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.4.4": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" - integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== +"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.23.9", "@babel/types@^7.4.4": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.9.tgz#1dd7b59a9a2b5c87f8b41e52770b5ecbf492e002" + integrity sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q== dependencies: - "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-string-parser" "^7.23.4" "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@csstools/cascade-layer-name-parser@^1.0.4", "@csstools/cascade-layer-name-parser@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.5.tgz#c4d276e32787651df0007af22c9fa70d9c9ca3c2" - integrity sha512-v/5ODKNBMfBl0us/WQjlfsvSlYxfZLhNMVIsuCPib2ulTwGKYbKJbwqw671+qH9Y4wvWVnu7LBChvml/wBKjFg== +"@csstools/cascade-layer-name-parser@^1.0.5", "@csstools/cascade-layer-name-parser@^1.0.7": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.7.tgz#9cfc36de9716d219492eb0e5ee75348b2213a8fd" + integrity sha512-9J4aMRJ7A2WRjaRLvsMeWrL69FmEuijtiW1XlK/sG+V0UJiHVYUyvj9mY4WAXfU/hGIiGOgL8e0jJcRyaZTjDQ== -"@csstools/color-helpers@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-3.0.2.tgz#6571d289af8bfcc3a8d75357b35e6d17a8ba6848" - integrity sha512-NMVs/l7Y9eIKL5XjbCHEgGcG8LOUT2qVcRjX6EzkCdlvftHVKr2tHIPzHavfrULRZ5Q2gxrJ9f44dAlj6fX97Q== +"@csstools/color-helpers@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-4.0.0.tgz#a1d6ffcefe5c1d389cbcca15f46da3cdaf241443" + integrity sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w== -"@csstools/css-calc@^1.1.4": - version "1.1.4" - resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.1.4.tgz#70bf4c5b379cdc256d3936bf4a21e3a3454a3d68" - integrity sha512-ZV1TSmToiNcQL1P3hfzlzZzA02mmVkVmXGaUDUqpYUG84PmLhVSZpKX+KfxAuOcK7de04UXSQPBrAvaya6iiGg== +"@csstools/css-calc@^1.1.6": + version "1.1.6" + resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.1.6.tgz#2d4e16725c3f981f7c6e469c306bcb1f490e1082" + integrity sha512-YHPAuFg5iA4qZGzMzvrQwzkvJpesXXyIUyaONflQrjtHB+BcFFbgltJkIkb31dMGO4SE9iZFA4HYpdk7+hnYew== -"@csstools/css-color-parser@^1.3.3": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-1.3.3.tgz#ccae33e97f196cd97b0e471b89b04735f27c9e80" - integrity sha512-8GHvh0jopx++NLfYg6e7Bb1snI+CrGdHxUdzjX6zERyjCRsL53dX0ZqE5i4z7thAHCaLRlQrAMIWgNI0EQkx7w== +"@csstools/css-color-parser@^1.5.1": + version "1.5.1" + resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-1.5.1.tgz#bddf5513a7327c511c9e1ec682419dcad1f91869" + integrity sha512-x+SajGB2paGrTjPOUorGi8iCztF008YMKXTn+XzGVDBEIVJ/W1121pPerpneJYGOe1m6zWLPLnzOPaznmQxKFw== dependencies: - "@csstools/color-helpers" "^3.0.2" - "@csstools/css-calc" "^1.1.4" + "@csstools/color-helpers" "^4.0.0" + "@csstools/css-calc" "^1.1.6" -"@csstools/css-parser-algorithms@^2.3.1", "@csstools/css-parser-algorithms@^2.3.2": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz#1e0d581dbf4518cb3e939c3b863cb7180c8cedad" - integrity sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA== +"@csstools/css-parser-algorithms@^2.3.2", "@csstools/css-parser-algorithms@^2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.5.0.tgz#0c03cd5418a9f404a05ff2ffcb1b69d04e8ec532" + integrity sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ== -"@csstools/css-tokenizer@^2.2.0", "@csstools/css-tokenizer@^2.2.1": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz#9dc431c9a5f61087af626e41ac2a79cce7bb253d" - integrity sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg== +"@csstools/css-tokenizer@^2.2.1", "@csstools/css-tokenizer@^2.2.3": + version "2.2.3" + resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.2.3.tgz#b099d543ea57b64f495915a095ead583866c50c6" + integrity sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg== -"@csstools/media-query-list-parser@^2.1.4", "@csstools/media-query-list-parser@^2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.5.tgz#94bc8b3c3fd7112a40b7bf0b483e91eba0654a0f" - integrity sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ== +"@csstools/media-query-list-parser@^2.1.5", "@csstools/media-query-list-parser@^2.1.7": + version "2.1.7" + resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.7.tgz#a4836e3dbd693081a30b32ce9c2a781e1be16788" + integrity sha512-lHPKJDkPUECsyAvD60joYfDmp8UERYxHGkFfyLJFTVK/ERJe0sVlIFLXU5XFxdjNDTerp5L4KeaKG+Z5S94qxQ== -"@csstools/postcss-cascade-layers@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.0.tgz#21f8556de640f9f9ccfb950c49a886280fe5497e" - integrity sha512-dVPVVqQG0FixjM9CG/+8eHTsCAxRKqmNh6H69IpruolPlnEF1611f2AoLK8TijTSAsqBSclKd4WHs1KUb/LdJw== +"@csstools/postcss-cascade-layers@^4.0.1": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.2.tgz#1a9212b150bc6106bcb1dfd4fc03f6fb42240037" + integrity sha512-PqM+jvg5T2tB4FHX+akrMGNWAygLupD4FNUjcv4PSvtVuWZ6ISxuo37m4jFGU7Jg3rCfloGzKd0+xfr5Ec3vZQ== dependencies: - "@csstools/selector-specificity" "^3.0.0" + "@csstools/selector-specificity" "^3.0.1" postcss-selector-parser "^6.0.13" -"@csstools/postcss-color-function@^3.0.4": - version "3.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-3.0.6.tgz#43574c05b8e2c6852d677936067a22eb9daf3ecc" - integrity sha512-qAGRJLJXIYeRgqIl4T9cuXgkOtp6JVgOnA2qRE3BRc5tj7HEAqXYdZ3/+bjM+R8im0Mm+TbBCZpTx/EOibtEAg== +"@csstools/postcss-color-function@^3.0.7": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-3.0.9.tgz#4e13e2b4b1b682a669c92ff676ccc35c99e69f9e" + integrity sha512-6Hbkw/4k73UH121l4LG+LNLKSvrfHqk3GHHH0A6/iFlD0xGmsWAr80Jd0VqXjfYbUTOGmJTOMMoxv3jvNxt1uw== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" -"@csstools/postcss-color-mix-function@^2.0.4": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.6.tgz#88fab56fbb701245b63d34eaa1416dbbb4b5fa7b" - integrity sha512-BixdhD297bYbCjD7hWO7rE6eOkCsQ2IzAyaKflVoijhnnhwLlALwMv6IQ+F8U2ACuRKQAJGYOYJkKoGbdbrWTA== +"@csstools/postcss-color-mix-function@^2.0.7": + version "2.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.9.tgz#ce1bc1decf307f93e6e6b0ee6ae14dd72295955c" + integrity sha512-fs1SOWJ/44DQSsDeJP+rxAkP2MYkCg6K4ZB8qJwFku2EjurgCAPiPZJvC6w94T1hBBinJwuMfT9qvvvniXyVgw== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" -"@csstools/postcss-exponential-functions@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.1.tgz#0d938f58ba5ac5c362e09ad22b5768b04ee82650" - integrity sha512-ZLK2iSK4DUxeypGce2PnQSdYugUqDTwxnhNiq1o6OyKMNYgYs4eKbvEhFG8JKr1sJWbeqBi5jRr0017l2EWVvg== +"@csstools/postcss-exponential-functions@^1.0.1": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.3.tgz#13cf794d2434d1d488f27bce3334359935b8f984" + integrity sha512-IfGtEg3eC4b8Nd/kPgO3SxgKb33YwhHVsL0eJ3UYihx6fzzAiZwNbWmVW9MZTQjZ5GacgKxa4iAHikGvpwuIjw== dependencies: - "@csstools/css-calc" "^1.1.4" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-calc" "^1.1.6" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" "@csstools/postcss-font-format-keywords@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.0.tgz#9ca3a3ca67122862addf8a1c0c61a6db02dea1cc" - integrity sha512-ntkGj+1uDa/u6lpjPxnkPcjJn7ChO/Kcy08YxctOZI7vwtrdYvFhmE476dq8bj1yna306+jQ9gzXIG/SWfOaRg== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.1.tgz#15ca8f8bd54568e4f3336b80ca0d20c903d02049" + integrity sha512-D1lcG2sfotTq6yBEOMV3myFxJLT10F3DLYZJMbiny5YToqzHWodZen8WId3UTimm0mEHitXqAUNL5jdd6RzVdA== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-gradients-interpolation-method@^4.0.4": - version "4.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.6.tgz#6a625784947c635f0c0c39854d8bf62b97c39ea2" - integrity sha512-3YoaQtoz5uomMylT1eoSLLmsVwo1f7uP24Pd39mV5Zo9Bj04m1Mk+Xxe2sdvsgvGF4RX05SyRX5rKNcd7p+K8Q== +"@csstools/postcss-gamut-mapping@^1.0.0": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.2.tgz#bef05c2bd2ad0b2c60f96e90e36173e0a79514d1" + integrity sha512-zf9KHGM2PTuJEm4ZYg4DTmzCir38EbZBzlMPMbA4jbhLDqXHkqwnQ+Z5+UNrU8y6seVu5B4vzZmZarTFQwe+Ig== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" -"@csstools/postcss-hwb-function@^3.0.3": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.5.tgz#437b56d3a994d05bdc315cdf0bb6aceb09e03639" - integrity sha512-ISRDhzB/dxsOnR+Z5GQmdOSIi4Q2lEf+7qdCsYMZJus971boaBzGL3A3W0U5m769qwDMRyy4CvHsRZP/8Vc2IQ== +"@csstools/postcss-gradients-interpolation-method@^4.0.7": + version "4.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.9.tgz#083bedd34e9e9e60cc4582bc58229cdc2750d8d5" + integrity sha512-PSqR6QH7h3ggOl8TsoH73kbwYTKVQjAJauGg6nDKwaGfi5IL5StV//ehrv1C7HuPsHixMTc9YoAuuv1ocT20EQ== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" -"@csstools/postcss-ic-unit@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.1.tgz#9d4964fe9da11f51463e0a141b3184ee3a23acb8" - integrity sha512-OkKZV0XZQixChA6r68O9UfGNFv06cPVcuT+MjpzfEuoCfbNWCj+b0dhsmdz776giQ+DymPmFDlTD+QJEFPI7rw== +"@csstools/postcss-hwb-function@^3.0.6": + version "3.0.8" + resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.8.tgz#4a21b447390998b3201ecc4dd6a8639f5e2a524d" + integrity sha512-CRQEG372Hivmt17rm/Ho22hBQI9K/a6grzGQ21Zwc7dyspmyG0ibmPIW8hn15vJmXqWGeNq7S+L2b8/OrU7O5A== + dependencies: + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + +"@csstools/postcss-ic-unit@^3.0.2": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.3.tgz#f1e257be491718d964a5ecebac39f2f469caf8a8" + integrity sha512-MpcmIL0/uMm/cFWh5V/9nbKKJ7jRr2qTYW5Q6zoE6HZ6uzOBJr2KRERv5/x8xzEBQ1MthDT7iP1EBp9luSQy7g== dependencies: - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" postcss-value-parser "^4.2.0" "@csstools/postcss-initial@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-initial/-/postcss-initial-1.0.0.tgz#e35ec12143a654b384fb81623970deeacedb0769" - integrity sha512-1l7iHHjIl5qmVeGItugr4ZOlCREDP71mNKqoEyxlosIoiu3Os1nPWMHpuCvDLCLiWI/ONTOg3nzJh7gwHOrqUA== + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-initial/-/postcss-initial-1.0.1.tgz#5aa378de9bfd0e6e377433f8986bdecf579e1268" + integrity sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg== -"@csstools/postcss-is-pseudo-class@^4.0.2": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.3.tgz#d8b04ff5eefb1a9bc8f1ab99b8f3b6b04b704480" - integrity sha512-/dt5M9Ty/x3Yiq0Nm/5PJJzwkVFchJgdjKVnryBPtoMCb9ohb/nDIJOwr/Wr3hK3FDs1EA1GE6PyRYsUmQPS8Q== +"@csstools/postcss-is-pseudo-class@^4.0.3": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.4.tgz#c95d3f8b355df1744c906d0ec5e69aedce4e9487" + integrity sha512-vTVO/uZixpTVAOQt3qZRUFJ/K1L03OfNkeJ8sFNDVNdVy/zW0h1L5WT7HIPMDUkvSrxQkFaCCybTZkUP7UESlQ== dependencies: - "@csstools/selector-specificity" "^3.0.0" + "@csstools/selector-specificity" "^3.0.1" postcss-selector-parser "^6.0.13" "@csstools/postcss-logical-float-and-clear@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.0.tgz#15e1b5d16dce01ad1e676167d0909e3958234eb5" - integrity sha512-Wki4vxsF6icRvRz8eF9bPpAvwaAt0RHwhVOyzfoFg52XiIMjb6jcbHkGxwpJXP4DVrnFEwpwmrz5aTRqOW82kg== + version "2.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.1.tgz#c70ed8293cc376b1572bf56794219f54dc58c54d" + integrity sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA== + +"@csstools/postcss-logical-overflow@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-1.0.1.tgz#d14631369f43ef989c7e32f051ddb6952a8ce35c" + integrity sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw== + +"@csstools/postcss-logical-overscroll-behavior@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-1.0.1.tgz#9305a6f0d08bb7b5f1a228272951f72d3bf9d44f" + integrity sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ== "@csstools/postcss-logical-resize@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.0.tgz#751bd5aab335c9973e346e3edacb2a0a16fa8296" - integrity sha512-lCQ1aX8c5+WI4t5EoYf3alTzJNNocMqTb+u1J9CINdDhFh1fjovqK+0aHalUHsNstZmzFPNzIkU4Mb3eM9U8SA== + version "2.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.1.tgz#a46c1b51055db96fb63af3bfe58909c773aea377" + integrity sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-logical-viewport-units@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.3.tgz#95e7195660bb8b05cd46f13d0495fe427e2db988" - integrity sha512-xeVxqND5rlQyqLGdH7rX34sIm/JbbQKxpKQP8oD1YQqUHHCLQR9NUS57WqJKajxKN6AcNAMWJhb5LUH5RfPcyA== +"@csstools/postcss-logical-viewport-units@^2.0.3": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.5.tgz#5517b609aeb76e7e94143514d77ff6c8c83f42f3" + integrity sha512-2fjSamKN635DSW6fEoyNd2Bkpv3FVblUpgk5cpghIgPW1aDHZE2SYfZK5xQALvjMYZVjfqsD5EbXA7uDVBQVQA== dependencies: - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-tokenizer" "^2.2.3" -"@csstools/postcss-media-minmax@^1.0.7": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.0.tgz#8d46317b6686cd49e05870ae3c8993e49a54149c" - integrity sha512-t5Li/DPC5QmW/6VFLfUvsw/4dNYYseWR0tOXDeJg/9EKUodBgNawz5tuk5vYKtNvoj+Q08odMuXcpS5YJj0AFA== +"@csstools/postcss-media-minmax@^1.1.0": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.2.tgz#3c7ad7bebde6b329c40c96c3a78073aaa0714bb8" + integrity sha512-7qTRTJxW96u2yiEaTep1+8nto1O/rEDacewKqH+Riq5E6EsHTOmGHxkB4Se5Ic5xgDC4I05lLZxzzxnlnSypxA== dependencies: - "@csstools/css-calc" "^1.1.4" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/media-query-list-parser" "^2.1.5" + "@csstools/css-calc" "^1.1.6" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/media-query-list-parser" "^2.1.7" -"@csstools/postcss-media-queries-aspect-ratio-number-values@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.3.tgz#a74355c828a13ede8e8390bcf2701a34a60696b3" - integrity sha512-IPL8AvnwMYW+cWtp+j8cW3MFN0RyXNT4hLOvs6Rf2N+NcbvXhSyKxZuE3W9Cv4KjaNoNoGx1d0UhT6tktq6tUw== +"@csstools/postcss-media-queries-aspect-ratio-number-values@^2.0.3": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.5.tgz#a78989a2c8012235d878e70eac203d9d51419114" + integrity sha512-XHMPasWYPWa9XaUHXU6Iq0RLfoAI+nvGTPj51hOizNsHaAyFiq2SL4JvF1DU8lM6B70+HVzKM09Isbyrr755Bw== dependencies: - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/media-query-list-parser" "^2.1.5" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/media-query-list-parser" "^2.1.7" "@csstools/postcss-nested-calc@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-3.0.0.tgz#b9069f5e1c2ea08de3840a5922e39af4e0ecf4b1" - integrity sha512-HsB66aDWAouOwD/GcfDTS0a7wCuVWaTpXcjl5VKP0XvFxDiU+r0T8FG7xgb6ovZNZ+qzvGIwRM+CLHhDgXrYgQ== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-3.0.1.tgz#94b462420d22539984bfe659339abba6971ff8f0" + integrity sha512-bwwababZpWRm0ByHaWBxTsDGTMhZKmtUNl3Wt0Eom8AY7ORgXx5qF9SSk1vEFrCi+HOfJT6M6W5KPgzXuQNRwQ== dependencies: postcss-value-parser "^4.2.0" "@csstools/postcss-normalize-display-values@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-3.0.1.tgz#8bacd4fa20434de67a7b1f4f64f6e4476922a98d" - integrity sha512-nUvRxI+ALJwkxZdPU4EDyuM380vP91sAGvI3jAOHs/sr3jfcCOzLkY6xKI1Mr526kZ3RivmMoYM/xq+XFyE/bw== + version "3.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-3.0.2.tgz#9013e6ade2fbd4cd725438c9ff0b1000062cf20d" + integrity sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-oklab-function@^3.0.4": - version "3.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.6.tgz#24494aec15c2f27051e9ed42660aa29998ccf47d" - integrity sha512-p//JBeyk57OsNT1y9snWqunJ5g39JXjJUVlOcUUNavKxwQiRcXx2otONy7fRj6y3XKHLvp8wcV7kn93rooNaYA== +"@csstools/postcss-oklab-function@^3.0.7": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.9.tgz#26e462e0ec18222f08e285afd6d9c9261ab55ee4" + integrity sha512-l639gpcBfL3ogJe+og1M5FixQn8iGX8+29V7VtTSCUB37VzpzOC05URfde7INIdiJT65DkHzgdJ64/QeYggU8A== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" -"@csstools/postcss-progressive-custom-properties@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.0.1.tgz#15251d880d60850df42deeb7702aab6c50ab74e7" - integrity sha512-yfdEk8o3CWPTusoInmGpOVCcMg1FikcKZyYB5ApULg9mES4FTGNuHK3MESscmm64yladcLNkPlz26O7tk3LMbA== +"@csstools/postcss-progressive-custom-properties@^3.0.2", "@csstools/postcss-progressive-custom-properties@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.0.3.tgz#8e0b61c204e80a3b4f82818f9738accb06894a06" + integrity sha512-WipTVh6JTMQfeIrzDV4wEPsV9NTzMK2jwXxyH6CGBktuWdivHnkioP/smp1x/0QDPQyx7NTS14RB+GV3zZZYEw== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-relative-color-syntax@^2.0.4": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.6.tgz#f446d47f952844ff57871f102a47d5ed9f3c11be" - integrity sha512-GAtXFxhKRWtPOV0wJ7ENCPZUSxJtVzsDvSCzTs8aaU1g1634SlpJWVNEDuVHllzJAWk/CB97p2qkDU3jITPL3A== +"@csstools/postcss-relative-color-syntax@^2.0.7": + version "2.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.9.tgz#6a6c5361a6ec02459e024fa2b769aa52f392038e" + integrity sha512-2UoaRd2iIuzUGtYgteN5fJ0s+OfCiV7PvCnw8MCh3om8+SeVinfG8D5sqBOvImxFVfrp6k60XF5RFlH6oc//fg== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" "@csstools/postcss-scope-pseudo-class@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-3.0.0.tgz#23f32181b7de9a33e7c7c71f7620b78284955b82" - integrity sha512-GFNVsD97OuEcfHmcT0/DAZWAvTM/FFBDQndIOLawNc1Wq8YqpZwBdHa063Lq+Irk7azygTT+Iinyg3Lt76p7rg== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-3.0.1.tgz#c5454ea2fb3cf9beaf212d3a631a5c18cd4fbc14" + integrity sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A== dependencies: postcss-selector-parser "^6.0.13" -"@csstools/postcss-stepped-value-functions@^3.0.1": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.2.tgz#a902395efbf9c5c30a6d902a7c65549fb3f49309" - integrity sha512-I3wX44MZVv+tDuWfrd3BTvRB/YRIM2F5v1MBtTI89sxpFn47mNpTwpPYUOGPVCgKlRDfZSlxIUYhUQmqRQZZFQ== +"@csstools/postcss-stepped-value-functions@^3.0.2": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.4.tgz#a97ae4d77dea36bb93b611712f872821ed796515" + integrity sha512-gyNQ2YaOVXPqLR737XtReRPVu7DGKBr9JBDLoiH1T+N1ggV3r4HotRCOC1l6rxVC0zOuU1KiOzUn9Z5W838/rg== dependencies: - "@csstools/css-calc" "^1.1.4" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-calc" "^1.1.6" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" "@csstools/postcss-text-decoration-shorthand@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.3.tgz#e0708cf41f94013837edca1c6db23d5d6dd3c10e" - integrity sha512-d5J9m49HhqXRcw1S6vTZuviHi/iknUKGjBpChiNK1ARg9sSa3b8m5lsWz5Izs8ISORZdv2bZRwbw5Z2R6gQ9kQ== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.4.tgz#b8c5216faa2c9d8a05b3f93da7b403dd5dd53a79" + integrity sha512-yUZmbnUemgQmja7SpOZeU45+P49wNEgQguRdyTktFkZsHf7Gof+ZIYfvF6Cm+LsU1PwSupy4yUeEKKjX5+k6cQ== dependencies: - "@csstools/color-helpers" "^3.0.2" + "@csstools/color-helpers" "^4.0.0" postcss-value-parser "^4.2.0" -"@csstools/postcss-trigonometric-functions@^3.0.1": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.2.tgz#b03d045015fc6e16d81e36e5783c545b5590a2f2" - integrity sha512-AwzNhF4QOKaLOKvMljwwFkeYXwufhRO15G+kKohHkyoNOL75xWkN+W2Y9ik9tSeAyDv+cYNlYaF+o/a79WjVjg== +"@csstools/postcss-trigonometric-functions@^3.0.2": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.4.tgz#23a5887f3c74c276a84ba66b9a963ea1731b531a" + integrity sha512-qj4Cxth6c38iNYzfJJWAxt8jsLrZaMVmbfGDDLOlI2YJeZoC3A5Su6/Kr7oXaPFRuspUu+4EQHngOktqVHWfVg== dependencies: - "@csstools/css-calc" "^1.1.4" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-calc" "^1.1.6" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" "@csstools/postcss-unset-value@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.0.tgz#6d2f08140b41d3e70d805ccd2baaf64a6f59fdac" - integrity sha512-P0JD1WHh3avVyKKRKjd0dZIjCEeaBer8t1BbwGMUDtSZaLhXlLNBqZ8KkqHzYWXOJgHleXAny2/sx8LYl6qhEA== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.1.tgz#598a25630fd9ab0edf066d235916f7441404942a" + integrity sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg== -"@csstools/selector-specificity@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz#798622546b63847e82389e473fd67f2707d82247" - integrity sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g== +"@csstools/selector-specificity@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.1.tgz#d84597fbc0f897240c12fc0a31e492b036c70e40" + integrity sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww== "@discoveryjs/json-ext@^0.5.0": version "0.5.7" @@ -1203,9 +1230,9 @@ "@jridgewell/trace-mapping" "^0.3.9" "@jridgewell/resolve-uri@^3.1.0": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== "@jridgewell/set-array@^1.0.1": version "1.1.2" @@ -1225,10 +1252,10 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.19" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" - integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.22" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz#72a621e5de59f5f1ef792d0793a82ee20f645e4c" + integrity sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" @@ -1302,57 +1329,59 @@ integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== "@types/archiver@^5.3.1": - version "5.3.3" - resolved "https://registry.yarnpkg.com/@types/archiver/-/archiver-5.3.3.tgz#9cb632a67060602b1658c669b498d51dd8ce08ab" - integrity sha512-0ABdVcXL6jOwNGY+hjWPqrxUvKelBEwNLcuv/SV2vZ4YCH8w9NttFCt+/QqI5zgMX+iX/XqVy89/r7EmLJmMpQ== + version "5.3.4" + resolved "https://registry.yarnpkg.com/@types/archiver/-/archiver-5.3.4.tgz#32172d5a56f165b5b4ac902e366248bf03d3ae84" + integrity sha512-Lj7fLBIMwYFgViVVZHEdExZC3lVYsl+QL0VmdNdIzGZH544jHveYWij6qdnBgJQDnR7pMKliN9z2cPZFEbhyPw== dependencies: "@types/readdir-glob" "*" "@types/eslint-scope@^3.7.3": - version "3.7.5" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.5.tgz#e28b09dbb1d9d35fdfa8a884225f00440dfc5a3e" - integrity sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA== + version "3.7.7" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5" + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== dependencies: "@types/eslint" "*" "@types/estree" "*" "@types/eslint@*": - version "8.44.3" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.3.tgz#96614fae4875ea6328f56de38666f582d911d962" - integrity sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g== + version "8.56.2" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.2.tgz#1c72a9b794aa26a8b94ad26d5b9aa51c8a6384bb" + integrity sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw== dependencies: "@types/estree" "*" "@types/json-schema" "*" -"@types/estree@*", "@types/estree@^1.0.0": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.2.tgz#ff02bc3dc8317cd668dfec247b750ba1f1d62453" - integrity sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA== +"@types/estree@*", "@types/estree@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== "@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.13" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85" - integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ== + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/minimist@^1.2.0": - version "1.2.3" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.3.tgz#dd249cef80c6fff2ba6a0d4e5beca913e04e25f8" - integrity sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A== + version "1.2.5" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" + integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== "@types/node@*": - version "20.8.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.2.tgz#d76fb80d87d0d8abfe334fc6d292e83e5524efc4" - integrity sha512-Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w== + version "20.11.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.17.tgz#cdd642d0e62ef3a861f88ddbc2b61e32578a9292" + integrity sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw== + dependencies: + undici-types "~5.26.4" "@types/normalize-package-data@^2.4.0": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz#9b0e3e8533fe5024ad32d6637eb9589988b6fdca" - integrity sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A== + version "2.4.4" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== "@types/readdir-glob@*": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@types/readdir-glob/-/readdir-glob-1.1.2.tgz#688a206aa258a3a5d17c7b053da3b9e04eabf431" - integrity sha512-vwAYrNN/8yhp/FJRU6HUSD0yk6xfoOS8HrZa8ZL7j+X8hJpaC1hTcAiXX2IxaAkkvrz9mLyoEhYZTE3cEYvA9Q== + version "1.1.5" + resolved "https://registry.yarnpkg.com/@types/readdir-glob/-/readdir-glob-1.1.5.tgz#21a4a98898fc606cb568ad815f2a0eedc24d412a" + integrity sha512-raiuEPUYqXu+nvtY2Pe8s8FEmZ3x5yAH4VkLdihcPdalvsHltomrRC9BzuStrJ9yk06470hS0Crw0f1pXqD+Hg== dependencies: "@types/node" "*" @@ -1513,9 +1542,9 @@ acorn-import-assertions@^1.9.0: integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== acorn@^8.7.1, acorn@^8.8.2: - version "8.10.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" - integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + version "8.11.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== agent-base@6, agent-base@^6.0.2: version "6.0.2" @@ -1676,18 +1705,18 @@ async-foreach@^0.1.3: integrity sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA== async@^3.2.4: - version "3.2.4" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" - integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== - -autoprefixer@^10.4.15: - version "10.4.16" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.16.tgz#fad1411024d8670880bdece3970aa72e3572feb8" - integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ== - dependencies: - browserslist "^4.21.10" - caniuse-lite "^1.0.30001538" - fraction.js "^4.3.6" + version "3.2.5" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" + integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== + +autoprefixer@^10.4.16: + version "10.4.17" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.17.tgz#35cd5695cbbe82f536a50fa025d561b01fdec8be" + integrity sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg== + dependencies: + browserslist "^4.22.2" + caniuse-lite "^1.0.30001578" + fraction.js "^4.3.7" normalize-range "^0.1.2" picocolors "^1.0.0" postcss-value-parser "^4.2.0" @@ -1700,29 +1729,29 @@ babel-loader@^9.1.2: find-cache-dir "^4.0.0" schema-utils "^4.0.0" -babel-plugin-polyfill-corejs2@^0.4.5: - version "0.4.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" - integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== +babel-plugin-polyfill-corejs2@^0.4.8: + version "0.4.8" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz#dbcc3c8ca758a290d47c3c6a490d59429b0d2269" + integrity sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.4.2" + "@babel/helper-define-polyfill-provider" "^0.5.0" semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.8.3: - version "0.8.4" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.4.tgz#1fac2b1dcef6274e72b3c72977ed8325cb330591" - integrity sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg== +babel-plugin-polyfill-corejs3@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz#9eea32349d94556c2ad3ab9b82ebb27d4bf04a81" + integrity sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - core-js-compat "^3.32.2" + "@babel/helper-define-polyfill-provider" "^0.5.0" + core-js-compat "^3.34.0" -babel-plugin-polyfill-regenerator@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" - integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== +babel-plugin-polyfill-regenerator@^0.5.5: + version "0.5.5" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz#8b0c8fc6434239e5d7b8a9d1f832bb2b0310f06a" + integrity sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" + "@babel/helper-define-polyfill-provider" "^0.5.0" balanced-match@^1.0.0: version "1.0.2" @@ -1775,14 +1804,14 @@ braces@^3.0.2: dependencies: fill-range "^7.0.1" -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.21.9, browserslist@^4.22.1: - version "4.22.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619" - integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ== +browserslist@^4.0.0, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.1, browserslist@^4.22.2, browserslist@^4.22.3: + version "4.23.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" + integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== dependencies: - caniuse-lite "^1.0.30001541" - electron-to-chromium "^1.4.535" - node-releases "^2.0.13" + caniuse-lite "^1.0.30001587" + electron-to-chromium "^1.4.668" + node-releases "^2.0.14" update-browserslist-db "^1.0.13" buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: @@ -1880,10 +1909,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001541: - version "1.0.30001546" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001546.tgz#10fdad03436cfe3cc632d3af7a99a0fb497407f0" - integrity sha512-zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001587: + version "1.0.30001587" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz#a0bce920155fa56a1885a69c74e1163fc34b4881" + integrity sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA== chalk@^2.4.2: version "2.4.2" @@ -2019,19 +2048,19 @@ convert-source-map@^2.0.0: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -core-js-compat@^3.31.0, core-js-compat@^3.32.2: - version "3.33.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.33.0.tgz#24aa230b228406450b2277b7c8bfebae932df966" - integrity sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw== +core-js-compat@^3.31.0, core-js-compat@^3.34.0: + version "3.36.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.36.0.tgz#087679119bc2fdbdefad0d45d8e5d307d45ba190" + integrity sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw== dependencies: - browserslist "^4.22.1" + browserslist "^4.22.3" core-util-is@~1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== -cosmiconfig@^8.2.0: +cosmiconfig@^8.3.5: version "8.3.6" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== @@ -2064,9 +2093,9 @@ cross-spawn@^7.0.3: which "^2.0.1" css-blank-pseudo@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-6.0.0.tgz#2bc6f812a5f60296c04c55b1696bad4300dcdbcc" - integrity sha512-VbfLlOWO7sBHBTn6pwDQzc07Z0SDydgDBfNfCE0nvrehdBNv9RKsuupIRa/qal0+fBZhAALyQDPMKz5lnvcchw== + version "6.0.1" + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-6.0.1.tgz#f79f8b84cc00f891e16aa85f14093c5e1c3499a8" + integrity sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw== dependencies: postcss-selector-parser "^6.0.13" @@ -2076,32 +2105,32 @@ css-declaration-sorter@^6.3.1: integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== css-has-pseudo@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-6.0.0.tgz#b8c8f39a19bc83c5be59fd251510a7e443c47968" - integrity sha512-X+r+JBuoO37FBOWVNhVJhxtSBUFHgHbrcc0CjFT28JEdOw1qaDwABv/uunyodUuSy2hMPe9j/HjssxSlvUmKjg== + version "6.0.1" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-6.0.1.tgz#05be77f1414315c3880a1fcc96a72471af4a8ecf" + integrity sha512-WwoVKqNxApfEI7dWFyaHoeFCcUPD+lPyjL6lNpRUNX7IyIUuVpawOTwwA5D0ZR6V2xQZonNPVj8kEcxzEaAQfQ== dependencies: - "@csstools/selector-specificity" "^3.0.0" + "@csstools/selector-specificity" "^3.0.1" postcss-selector-parser "^6.0.13" postcss-value-parser "^4.2.0" css-loader@^6.8.1: - version "6.8.1" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.8.1.tgz#0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88" - integrity sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g== + version "6.10.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.10.0.tgz#7c172b270ec7b833951b52c348861206b184a4b7" + integrity sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw== dependencies: icss-utils "^5.1.0" - postcss "^8.4.21" + postcss "^8.4.33" postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.3" - postcss-modules-scope "^3.0.0" + postcss-modules-local-by-default "^4.0.4" + postcss-modules-scope "^3.1.1" postcss-modules-values "^4.0.0" postcss-value-parser "^4.2.0" - semver "^7.3.8" + semver "^7.5.4" css-prefers-color-scheme@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.0.tgz#7e9b74062655ea15490e359cb456a3b9f4c93327" - integrity sha512-03QGAk/FXIRseDdLb7XAiu6gidQ0Nd8945xuM7VFVPpc6goJsG9uIO8xQjTxwbPdPIIV4o4AJoOJyt8gwDl67g== + version "9.0.1" + resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.1.tgz#30fcb94cc38b639b66fb99e1882ffd97f741feaa" + integrity sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g== css-select@^4.1.3: version "4.3.0" @@ -2127,10 +2156,10 @@ css-what@^6.0.1: resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== -cssdb@^7.7.2: - version "7.7.2" - resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.7.2.tgz#fbebd90edfc6af129fda4fd986f9dd604a209094" - integrity sha512-pQPYP7/kch4QlkTcLuUNiNL2v/E+O+VIdotT+ug62/+2B2/jkzs5fMM6RHCzGCZ9C82pODEMSIzRRUzJOrl78g== +cssdb@^7.9.0: + version "7.10.0" + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.10.0.tgz#08816db7b793f088263e8f61dfe8d7f11a3459f2" + integrity sha512-yGZ5tmA57gWh/uvdQBHs45wwFY0IBh3ypABk5sEubPBPSzXzkNgsWReqx7gdx6uhC+QoFBe+V8JwBB9/hQ6cIA== cssesc@^3.0.0: version "3.0.0" @@ -2193,7 +2222,7 @@ csso@^4.2.0: dependencies: css-tree "^1.1.2" -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.3: +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -2214,9 +2243,9 @@ decamelize@^1.1.0, decamelize@^1.2.0: integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decanter@^6.2.14: - version "6.3.0" - resolved "https://registry.yarnpkg.com/decanter/-/decanter-6.3.0.tgz#31fbbca080cf174ed30a83f0614f15fbbcc01253" - integrity sha512-dzP4GE1yZsesN08OShRJBkHBu2FspUXmn7pXoMhyi9YD2rTaRujU2jV0wL6agL7vZAdXJGlhnfSPlSqXxTAVtg== + version "6.3.3" + resolved "https://registry.yarnpkg.com/decanter/-/decanter-6.3.3.tgz#86a872b842642df2ebbe0eba5ec326eebaa46530" + integrity sha512-EubzQRguF79EDr4BHi4vQH6jSR3t1fIJNsjKv/cKDGmglF5JZpBmbraypdXDt3xkF64okCZcLViae2dN5Scl6w== dependencies: "@fortawesome/fontawesome-free" "^5.15" bourbon "^6.0" @@ -2277,10 +2306,10 @@ domutils@^2.8.0: domelementtype "^2.2.0" domhandler "^4.2.0" -electron-to-chromium@^1.4.535: - version "1.4.543" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.543.tgz#51116ffc9fba1ee93514d6a40d34676aa6d7d1c4" - integrity sha512-t2ZP4AcGE0iKCCQCBx/K2426crYdxD3YU6l0uK2EO3FZH0pbC4pFz/sZm2ruZsND6hQBTcDWWlo/MLpiOdif5g== +electron-to-chromium@^1.4.668: + version "1.4.669" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.669.tgz#37e9cc16cc2fbdd8e06a46fc1fd3a1249e091f64" + integrity sha512-E2SmpffFPrZhBSgf8ibqanRS2mpuk3FIRDzLDwt7WFpfgJMKDHJs0hmacyP0PS1cWsq0dVkwIIzlscNaterkPg== emoji-regex@^8.0.0: version "8.0.0" @@ -2320,9 +2349,9 @@ env-paths@^2.2.0: integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== envinfo@^7.7.3: - version "7.10.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13" - integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw== + version "7.11.1" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.1.tgz#2ffef77591057081b0129a8fd8cf6118da1b94e1" + integrity sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg== err-code@^2.0.2: version "2.0.3" @@ -2337,14 +2366,14 @@ error-ex@^1.3.1: is-arrayish "^0.2.1" es-module-lexer@^1.2.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz#c1b0dd5ada807a3b3155315911f364dc4e909db1" - integrity sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q== + version "1.4.1" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.4.1.tgz#41ea21b43908fe6a287ffcbe4300f790555331f5" + integrity sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w== escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== escape-string-regexp@^1.0.5: version "1.0.5" @@ -2392,9 +2421,9 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.12, fast-glob@^3.2.9: - version "3.3.1" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" - integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -2413,9 +2442,9 @@ fastest-levenshtein@^1.0.12: integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: reusify "^1.0.4" @@ -2464,10 +2493,15 @@ find-up@^6.3.0: locate-path "^7.1.0" path-exists "^5.0.0" -fraction.js@^4.3.6: - version "4.3.6" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.6.tgz#e9e3acec6c9a28cf7bc36cbe35eea4ceb2c5c92d" - integrity sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg== +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== fs-constants@^1.0.0: version "1.0.0" @@ -2495,6 +2529,11 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + gauge@^4.0.3: version "4.0.4" resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" @@ -2629,10 +2668,12 @@ has-unicode@^2.0.1: resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== -has@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.4.tgz#2eb2860e000011dae4f1406a86fe80e530fb2ec6" - integrity sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ== +hasown@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.1.tgz#26f48f039de2c0f8d3356c223fb8d50253519faa" + integrity sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA== + dependencies: + function-bind "^1.1.2" hosted-git-info@^2.1.4: version "2.8.9" @@ -2702,9 +2743,9 @@ ieee754@^1.1.13: integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore@^5.2.0: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== import-fresh@^3.3.0: version "3.3.0" @@ -2755,10 +2796,13 @@ interpret@^3.1.1: resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== +ip-address@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" + integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== + dependencies: + jsbn "1.1.0" + sprintf-js "^1.1.3" is-arrayish@^0.2.1: version "0.2.1" @@ -2766,11 +2810,11 @@ is-arrayish@^0.2.1: integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-core-module@^2.13.0, is-core-module@^2.5.0: - version "2.13.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" - integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: - has "^1.0.3" + hasown "^2.0.0" is-extglob@^2.1.1: version "2.1.1" @@ -2845,10 +2889,10 @@ jest-worker@^27.4.5: merge-stream "^2.0.0" supports-color "^8.0.0" -jiti@^1.18.2: - version "1.20.0" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.20.0.tgz#2d823b5852ee8963585c8dd8b7992ffc1ae83b42" - integrity sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA== +jiti@^1.20.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== js-base64@^2.4.9: version "2.6.4" @@ -2867,6 +2911,11 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" @@ -3132,11 +3181,12 @@ min-indent@^1.0.0: integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== mini-css-extract-plugin@^2.7.6: - version "2.7.6" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d" - integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw== + version "2.8.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.0.tgz#1aeae2a90a954b6426c9e8311eab36b450f553a0" + integrity sha512-CxmUYPFcTgET1zImteG/LZOy/4T5rTojesQXkSNBiquhydn78tfbCE9sjIjnJ/UcjNjOC1bphTCCW5rrS7cXAg== dependencies: schema-utils "^4.0.0" + tapable "^2.2.1" minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" @@ -3258,10 +3308,10 @@ nan@^2.17.0: resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== negotiator@^0.6.2, negotiator@^0.6.3: version "0.6.3" @@ -3289,10 +3339,10 @@ node-gyp@^8.4.1: tar "^6.1.2" which "^2.0.2" -node-releases@^2.0.13: - version "2.0.13" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" - integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== node-sass@^9.0.0: version "9.0.0" @@ -3522,25 +3572,27 @@ postcss-clamp@^4.1.0: dependencies: postcss-value-parser "^4.2.0" -postcss-color-functional-notation@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.1.tgz#b67d7c71fa1c82b09c130e02a37f0b6ceacbef63" - integrity sha512-IouVx77fASIjOChWxkvOjYGnYNKq286cSiKFJwWNICV9NP2xZWVOS9WOriR/8uIB2zt/44bzQyw4GteCLpP2SA== +postcss-color-functional-notation@^6.0.2: + version "6.0.4" + resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.4.tgz#2f1f8390d8d508713e43802230bf3ae0173622a7" + integrity sha512-YBzfVvVUNR4U3N0imzU1NPKCuwxzfHJkEP6imJxzsJ8LozRKeej9mWmg9Ef1ovJdb0xrGTRVzUxgTrMun5iw/Q== dependencies: - "@csstools/postcss-progressive-custom-properties" "^3.0.1" - postcss-value-parser "^4.2.0" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" postcss-color-hex-alpha@^9.0.2: - version "9.0.2" - resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.2.tgz#6d3ed50342802469880981a1999515d003ff7d79" - integrity sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg== + version "9.0.3" + resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.3.tgz#b7f0d3829218608c0d219e25aa06b1216393c69e" + integrity sha512-7sEHU4tAS6htlxun8AB9LDrCXoljxaC34tFVRlYKcvO+18r5fvGiXgv5bQzN40+4gXLCyWSMRK5FK31244WcCA== dependencies: postcss-value-parser "^4.2.0" postcss-color-rebeccapurple@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-9.0.1.tgz#d1266b9a9571ca478c8ce7ad97a15727eac3c6b2" - integrity sha512-ds4cq5BjRieizVb2PnvbJ0omg9VCo2/KzluvoFZbxuGpsGJ5BQSD93CHBooinEtangCM5YqUOerGDl4xGmOb6Q== + version "9.0.2" + resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-9.0.2.tgz#a5c7e605631eff2a7a230535bcf6aba29de4a270" + integrity sha512-f+RDEAPW2m8UbJWkSpRfV+QxhSaQhDMihI75DVGJJh4oRIoegjheeRtINFJum9D8BqGJcvD4GLjggTvCwZ4zuA== dependencies: postcss-value-parser "^4.2.0" @@ -3562,40 +3614,40 @@ postcss-convert-values@^5.1.3: browserslist "^4.21.4" postcss-value-parser "^4.2.0" -postcss-custom-media@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-10.0.1.tgz#48a4597451a69b1098e6eb11eb1166202171f9ed" - integrity sha512-fil7cosvzlIAYmZJPtNFcTH0Er7a3GveEK4q5Y/L24eWQHmiw8Fv/E5DMkVpdbNjkGzJxrvowOSt/Il9HZ06VQ== - dependencies: - "@csstools/cascade-layer-name-parser" "^1.0.4" - "@csstools/css-parser-algorithms" "^2.3.1" - "@csstools/css-tokenizer" "^2.2.0" - "@csstools/media-query-list-parser" "^2.1.4" - -postcss-custom-properties@^13.3.1: - version "13.3.2" - resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-13.3.2.tgz#88952f883003d897ade5c836e1e005b09a12f02b" - integrity sha512-2Coszybpo8lpLY24vy2CYv9AasiZ39/bs8Imv0pWMq55Gl8NWzfc24OAo3zIX7rc6uUJAqESnVOMZ6V6lpMjJA== +postcss-custom-media@^10.0.2: + version "10.0.2" + resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-10.0.2.tgz#70a244bbc59fc953ab6573e4e2c9624639aef08a" + integrity sha512-zcEFNRmDm2fZvTPdI1pIW3W//UruMcLosmMiCdpQnrCsTRzWlKQPYMa1ud9auL0BmrryKK1+JjIGn19K0UjO/w== dependencies: "@csstools/cascade-layer-name-parser" "^1.0.5" "@csstools/css-parser-algorithms" "^2.3.2" "@csstools/css-tokenizer" "^2.2.1" + "@csstools/media-query-list-parser" "^2.1.5" + +postcss-custom-properties@^13.3.2: + version "13.3.4" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-13.3.4.tgz#0ad5be700b692e0288ce3b2b406eac964244f197" + integrity sha512-9YN0gg9sG3OH+Z9xBrp2PWRb+O4msw+5Sbp3ZgqrblrwKspXVQe5zr5sVqi43gJGwW/Rv1A483PRQUzQOEewvA== + dependencies: + "@csstools/cascade-layer-name-parser" "^1.0.7" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" postcss-value-parser "^4.2.0" -postcss-custom-selectors@^7.1.5: - version "7.1.5" - resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-7.1.5.tgz#74e99ef5d7a3f84aaab246ba086975e8279b686e" - integrity sha512-0UYtz7GG10bZrRiUdZ/2Flt+hp5p/WP0T7JgAPZ/Xhgb0wFjW/p7QOjE+M58S9Z3x11P9YaNPcrsoOGewWYkcw== +postcss-custom-selectors@^7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-7.1.6.tgz#6d28812998dcd48f61a6a538141fc16cf2c42123" + integrity sha512-svsjWRaxqL3vAzv71dV0/65P24/FB8TbPX+lWyyf9SZ7aZm4S4NhCn7N3Bg+Z5sZunG3FS8xQ80LrCU9hb37cw== dependencies: - "@csstools/cascade-layer-name-parser" "^1.0.4" - "@csstools/css-parser-algorithms" "^2.3.1" - "@csstools/css-tokenizer" "^2.2.0" + "@csstools/cascade-layer-name-parser" "^1.0.5" + "@csstools/css-parser-algorithms" "^2.3.2" + "@csstools/css-tokenizer" "^2.2.1" postcss-selector-parser "^6.0.13" postcss-dir-pseudo-class@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.0.tgz#9e4e37d170f672520d3f38fd8376db0ca04d4e9c" - integrity sha512-Oy5BBi0dWPwij/IA+yDYj+/OBMQ9EPqAzTHeSNUYrUWdll/PRJmcbiUj0MNcsBi681I1gcSTLvMERPaXzdbvJg== + version "8.0.1" + resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.1.tgz#b93755f52fb90215301b1d3ecb7c5e6416930a1e" + integrity sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw== dependencies: postcss-selector-parser "^6.0.13" @@ -3619,25 +3671,25 @@ postcss-discard-overridden@^5.1.0: resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== -postcss-double-position-gradients@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.1.tgz#5f28489f5b33ce5e1e97bf1ea6b62cd7a5f9c0c2" - integrity sha512-ogcHzfC5q4nfySyZyNF7crvK3/MRDTh+akzE+l7bgJUjVkhgfahBuI+ZAm/5EeaVSVKnCOgqtC6wTyUFgLVLTw== +postcss-double-position-gradients@^5.0.2: + version "5.0.3" + resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.3.tgz#9345b273bd16056665209ce260be0d36ac211f65" + integrity sha512-QKYpwmaSm6HcdS0ndAuWSNNMv78R1oSySoh3mYBmctHWr2KWcwPJVakdOyU4lvFVW0GRu9wfIQwGeM4p3xU9ow== dependencies: - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" postcss-value-parser "^4.2.0" postcss-focus-visible@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-9.0.0.tgz#a81227428d6f1e524099c6581f7c7132f987e382" - integrity sha512-zA4TbVaIaT8npZBEROhZmlc+GBKE8AELPHXE7i4TmIUEQhw/P/mSJfY9t6tBzpQ1rABeGtEOHYrW4SboQeONMQ== + version "9.0.1" + resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-9.0.1.tgz#eede1032ce86b3bb2556d93ca5df63c68dfc2559" + integrity sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ== dependencies: postcss-selector-parser "^6.0.13" postcss-focus-within@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-8.0.0.tgz#8304380dd2dadc1c2dcfa52816ff86be7736fc16" - integrity sha512-E7+J9nuQzZaA37D/MUZMX1K817RZGDab8qw6pFwzAkDd/QtlWJ9/WTKmzewNiuxzeq6WWY7ATiRePVoDKp+DnA== + version "8.0.1" + resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-8.0.1.tgz#524af4c7eabae35cb1efa220a7903016fcc897fa" + integrity sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA== dependencies: postcss-selector-parser "^6.0.13" @@ -3647,40 +3699,40 @@ postcss-font-variant@^5.0.0: integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA== postcss-gap-properties@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-5.0.0.tgz#3bd77f3d51facb1da404b4edd72b8203929385a5" - integrity sha512-YjsEEL6890P7MCv6fch6Am1yq0EhQCJMXyT4LBohiu87+4/WqR7y5W3RIv53WdA901hhytgRvjlrAhibhW4qsA== + version "5.0.1" + resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-5.0.1.tgz#887b64655f42370b43f0ab266cc6dbabf504d276" + integrity sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw== postcss-image-set-function@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-6.0.1.tgz#e2bba0a0536a0c70f63933f7c5df68742e9615ca" - integrity sha512-VlZncC9hhZ5tg0JllY4g6Z28BeoPO8DIkelioEEkXL0AA0IORlqYpTi2L8TUnl4YQrlwvBgxVy+mdZJw5R/cIQ== + version "6.0.2" + resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-6.0.2.tgz#ddf62a4468207ce7de2f99154325adbe6c95c032" + integrity sha512-/O1xwqpJiz/apxGQi7UUfv1xUcorvkHZfvCYHPpRxxZj2WvjD0rg0+/+c+u5/Do5CpUg3XvfYxMrhcnjW1ArDQ== dependencies: postcss-value-parser "^4.2.0" -postcss-lab-function@^6.0.4: - version "6.0.6" - resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-6.0.6.tgz#e945326d3ec5b87e9c2dd89d8fcbbb9d05f10dd9" - integrity sha512-hZtIi0HPZg0Jc2Q7LL3TossaboSQVINYLT8zNRzp6zumjipl8vi80F2pNLO3euB4b8cRh6KlGdWKO0Q29pqtjg== +postcss-lab-function@^6.0.7: + version "6.0.9" + resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-6.0.9.tgz#9ef00afba26703a1a3d83d502401a66a98eabb96" + integrity sha512-PKFAVTBEWJYsoSTD7Kp/OzeiMsXaLX39Pv75XgUyF5VrbMfeTw+JqCGsvDP3dPhclh6BemdCFHcjXBG9gO4UCg== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" postcss-loader@^7.3.2: - version "7.3.3" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.3.3.tgz#6da03e71a918ef49df1bb4be4c80401df8e249dd" - integrity sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA== + version "7.3.4" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.3.4.tgz#aed9b79ce4ed7e9e89e56199d25ad1ec8f606209" + integrity sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A== dependencies: - cosmiconfig "^8.2.0" - jiti "^1.18.2" - semver "^7.3.8" + cosmiconfig "^8.3.5" + jiti "^1.20.0" + semver "^7.5.4" postcss-logical@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-7.0.0.tgz#9a83426e716e3c8f957dda3fd874edbcf22c754e" - integrity sha512-zYf3vHkoW82f5UZTEXChTJvH49Yl9X37axTZsJGxrCG2kOUwtaAoz9E7tqYg0lsIoJLybaL8fk/2mOi81zVIUw== + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-7.0.1.tgz#a3121f6510591b195321b16e65fbe13b1cfd3115" + integrity sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg== dependencies: postcss-value-parser "^4.2.0" @@ -3739,19 +3791,19 @@ postcss-modules-extract-imports@^3.0.0: resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== -postcss-modules-local-by-default@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" - integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== +postcss-modules-local-by-default@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz#7cbed92abd312b94aaea85b68226d3dec39a14e6" + integrity sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q== dependencies: icss-utils "^5.0.0" postcss-selector-parser "^6.0.2" postcss-value-parser "^4.1.0" -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== +postcss-modules-scope@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz#32cfab55e84887c079a19bbb215e721d683ef134" + integrity sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA== dependencies: postcss-selector-parser "^6.0.4" @@ -3763,11 +3815,11 @@ postcss-modules-values@^4.0.0: icss-utils "^5.0.0" postcss-nesting@^12.0.1: - version "12.0.1" - resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.0.1.tgz#abb76d15dfd59a9f7d03b4464f53b60a4d3795c4" - integrity sha512-6LCqCWP9pqwXw/njMvNK0hGY44Fxc4B2EsGbn6xDcxbNRzP8GYoxT7yabVVMLrX3quqOJ9hg2jYMsnkedOf8pA== + version "12.0.2" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.0.2.tgz#cb92061347db3e7c38c174c97cb01feff2eef439" + integrity sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ== dependencies: - "@csstools/selector-specificity" "^3.0.0" + "@csstools/selector-specificity" "^3.0.1" postcss-selector-parser "^6.0.13" postcss-normalize-charset@^5.1.0: @@ -3847,9 +3899,9 @@ postcss-ordered-values@^5.1.3: postcss-value-parser "^4.2.0" postcss-overflow-shorthand@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.0.tgz#1ed6d6c532cdf52b5dabec06662dc63f9207855c" - integrity sha512-2rlxDyeSics/hC2FuMdPnWiP9WUPZ5x7FTuArXLFVpaSQ2woPSfZS4RD59HuEokbZhs/wPUQJ1E3MT6zVv94MQ== + version "5.0.1" + resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.1.tgz#c0a124edad4f7ad88109275a60510e1fb07ab833" + integrity sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ== dependencies: postcss-value-parser "^4.2.0" @@ -3859,64 +3911,67 @@ postcss-page-break@^3.0.4: integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ== postcss-place@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-9.0.0.tgz#7e47851bf40d16ce06f6013453b706100ca6c102" - integrity sha512-qLEPD9VPH5opDVemwmRaujODF9nExn24VOC3ghgVLEvfYN7VZLwJHes0q/C9YR5hI2UC3VgBE8Wkdp1TxCXhtg== + version "9.0.1" + resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-9.0.1.tgz#c08c46a94e639c1ee3457ac96d50c50a89bd6ac3" + integrity sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q== dependencies: postcss-value-parser "^4.2.0" postcss-preset-env@^9.1.4: - version "9.1.4" - resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-9.1.4.tgz#9a4b0b7ac2b2eb2b319fc76fd4ede0dd3e61a524" - integrity sha512-k2scWtmYBZhjAzMJw8Fgc4hnfkZa4KpPjK0z6+tTAJ4/3ZAmaJJ1VBQ9T7OS0qvper8AyD+kqN2UB2tYFQ4eeA== - dependencies: - "@csstools/postcss-cascade-layers" "^4.0.0" - "@csstools/postcss-color-function" "^3.0.4" - "@csstools/postcss-color-mix-function" "^2.0.4" - "@csstools/postcss-exponential-functions" "^1.0.0" + version "9.3.0" + resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-9.3.0.tgz#58f296087cf3dc18cb75af11954c6c5822220327" + integrity sha512-ycw6doPrqV6QxDCtgiyGDef61bEfiSc59HGM4gOw/wxQxmKnhuEery61oOC/5ViENz/ycpRsuhTexs1kUBTvVw== + dependencies: + "@csstools/postcss-cascade-layers" "^4.0.1" + "@csstools/postcss-color-function" "^3.0.7" + "@csstools/postcss-color-mix-function" "^2.0.7" + "@csstools/postcss-exponential-functions" "^1.0.1" "@csstools/postcss-font-format-keywords" "^3.0.0" - "@csstools/postcss-gradients-interpolation-method" "^4.0.4" - "@csstools/postcss-hwb-function" "^3.0.3" - "@csstools/postcss-ic-unit" "^3.0.1" + "@csstools/postcss-gamut-mapping" "^1.0.0" + "@csstools/postcss-gradients-interpolation-method" "^4.0.7" + "@csstools/postcss-hwb-function" "^3.0.6" + "@csstools/postcss-ic-unit" "^3.0.2" "@csstools/postcss-initial" "^1.0.0" - "@csstools/postcss-is-pseudo-class" "^4.0.2" + "@csstools/postcss-is-pseudo-class" "^4.0.3" "@csstools/postcss-logical-float-and-clear" "^2.0.0" + "@csstools/postcss-logical-overflow" "^1.0.0" + "@csstools/postcss-logical-overscroll-behavior" "^1.0.0" "@csstools/postcss-logical-resize" "^2.0.0" - "@csstools/postcss-logical-viewport-units" "^2.0.2" - "@csstools/postcss-media-minmax" "^1.0.7" - "@csstools/postcss-media-queries-aspect-ratio-number-values" "^2.0.2" + "@csstools/postcss-logical-viewport-units" "^2.0.3" + "@csstools/postcss-media-minmax" "^1.1.0" + "@csstools/postcss-media-queries-aspect-ratio-number-values" "^2.0.3" "@csstools/postcss-nested-calc" "^3.0.0" "@csstools/postcss-normalize-display-values" "^3.0.1" - "@csstools/postcss-oklab-function" "^3.0.4" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" - "@csstools/postcss-relative-color-syntax" "^2.0.4" + "@csstools/postcss-oklab-function" "^3.0.7" + "@csstools/postcss-progressive-custom-properties" "^3.0.2" + "@csstools/postcss-relative-color-syntax" "^2.0.7" "@csstools/postcss-scope-pseudo-class" "^3.0.0" - "@csstools/postcss-stepped-value-functions" "^3.0.1" + "@csstools/postcss-stepped-value-functions" "^3.0.2" "@csstools/postcss-text-decoration-shorthand" "^3.0.3" - "@csstools/postcss-trigonometric-functions" "^3.0.1" + "@csstools/postcss-trigonometric-functions" "^3.0.2" "@csstools/postcss-unset-value" "^3.0.0" - autoprefixer "^10.4.15" - browserslist "^4.21.10" + autoprefixer "^10.4.16" + browserslist "^4.22.1" css-blank-pseudo "^6.0.0" css-has-pseudo "^6.0.0" css-prefers-color-scheme "^9.0.0" - cssdb "^7.7.2" + cssdb "^7.9.0" postcss-attribute-case-insensitive "^6.0.2" postcss-clamp "^4.1.0" - postcss-color-functional-notation "^6.0.1" + postcss-color-functional-notation "^6.0.2" postcss-color-hex-alpha "^9.0.2" postcss-color-rebeccapurple "^9.0.1" - postcss-custom-media "^10.0.1" - postcss-custom-properties "^13.3.1" - postcss-custom-selectors "^7.1.5" + postcss-custom-media "^10.0.2" + postcss-custom-properties "^13.3.2" + postcss-custom-selectors "^7.1.6" postcss-dir-pseudo-class "^8.0.0" - postcss-double-position-gradients "^5.0.1" + postcss-double-position-gradients "^5.0.2" postcss-focus-visible "^9.0.0" postcss-focus-within "^8.0.0" postcss-font-variant "^5.0.0" postcss-gap-properties "^5.0.0" postcss-image-set-function "^6.0.1" - postcss-lab-function "^6.0.4" + postcss-lab-function "^6.0.7" postcss-logical "^7.0.0" postcss-nesting "^12.0.1" postcss-opacity-percentage "^2.0.0" @@ -3929,9 +3984,9 @@ postcss-preset-env@^9.1.4: postcss-value-parser "^4.2.0" postcss-pseudo-class-any-link@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.0.tgz#5fb5b700e0ecdc845a94eb433b8ccff756cbf660" - integrity sha512-QNCYIL98VKFKY6HGDEJpF6+K/sg9bxcUYnOmNHJxZS5wsFDFaVoPeG68WAuhsqwbIBSo/b9fjEnTwY2mTSD+uA== + version "9.0.1" + resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.1.tgz#71c24a886765763d4e37e21a27ecc6f1c1a5d698" + integrity sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q== dependencies: postcss-selector-parser "^6.0.13" @@ -3963,9 +4018,9 @@ postcss-selector-not@^7.0.1: postcss-selector-parser "^6.0.10" postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: - version "6.0.13" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" - integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== + version "6.0.15" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz#11cc2b21eebc0b99ea374ffb9887174855a01535" + integrity sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -3990,12 +4045,12 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.2.1, postcss@^8.4.21: - version "8.4.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" - integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== +postcss@^8.2.1, postcss@^8.4.33: + version "8.4.35" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.35.tgz#60997775689ce09011edf083a549cea44aabe2f7" + integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== dependencies: - nanoid "^3.3.6" + nanoid "^3.3.7" picocolors "^1.0.0" source-map-js "^1.0.2" @@ -4018,9 +4073,9 @@ promise-retry@^2.0.1: retry "^0.12.0" punycode@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== queue-microtask@^1.2.2: version "1.2.3" @@ -4115,9 +4170,9 @@ regenerate@^1.4.2: integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== regenerator-runtime@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" - integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== regenerator-transform@^0.15.2: version "0.15.2" @@ -4173,9 +4228,9 @@ resolve-from@^5.0.0: integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0: - version "1.22.6" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" - integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: is-core-module "^2.13.0" path-parse "^1.0.7" @@ -4231,9 +4286,9 @@ sass-graph@^4.0.1: yargs "^17.2.1" sass-loader@^13.3.1: - version "13.3.2" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.2.tgz#460022de27aec772480f03de17f5ba88fa7e18c6" - integrity sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg== + version "13.3.3" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.3.tgz#60df5e858788cffb1a3215e5b92e9cba61e7e133" + integrity sha512-mt5YN2F1MOZr3d/wBRcZxeFgwgkH44wVc2zohO2YF6JiOMkiXe4BYRZpSu2sO1g71mo/j16txzUhsKZlqjVGzA== dependencies: neo-async "^2.6.2" @@ -4274,17 +4329,17 @@ semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.4, semver@^7.3.5, semver@^7.3.8: - version "7.5.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" - integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== +semver@^7.3.4, semver@^7.3.5, semver@^7.5.4: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== dependencies: lru-cache "^6.0.0" serialize-javascript@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" - integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== dependencies: randombytes "^2.1.0" @@ -4346,11 +4401,11 @@ socks-proxy-agent@^7.0.0: socks "^2.6.2" socks@^2.6.2: - version "2.7.1" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + version "2.7.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.3.tgz#7d8a75d7ce845c0a96f710917174dba0d543a785" + integrity sha512-vfuYK48HXCTFD03G/1/zkIls3Ebr2YNa4qU9gHDZdblHLiqhJrJGkY3+0Nx0JpN9qBhJbVObc1CNciT1bIZJxw== dependencies: - ip "^2.0.0" + ip-address "^9.0.5" smart-buffer "^4.2.0" source-list-map@^2.0.0: @@ -4390,9 +4445,9 @@ spdx-correct@^3.0.0: spdx-license-ids "^3.0.0" spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + version "2.4.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz#c07a4ede25b16e4f78e6707bbd84b15a45c19c1b" + integrity sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw== spdx-expression-parse@^3.0.0: version "3.0.1" @@ -4403,9 +4458,14 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.16" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz#a14f64e0954f6e25cc6587bd4f392522db0d998f" - integrity sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw== + version "3.0.17" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c" + integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== + +sprintf-js@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== ssri@^8.0.0, ssri@^8.0.1: version "8.0.1" @@ -4471,9 +4531,9 @@ strip-indent@^3.0.0: min-indent "^1.0.0" style-loader@^3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff" - integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw== + version "3.3.4" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.4.tgz#f30f786c36db03a45cbd55b6a70d930c479090e7" + integrity sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w== stylehacks@^5.1.1: version "5.1.1" @@ -4522,7 +4582,7 @@ svgo@^2.7.0: picocolors "^1.0.0" stable "^0.1.8" -tapable@^2.1.1, tapable@^2.2.0: +tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== @@ -4550,21 +4610,21 @@ tar@^6.0.2, tar@^6.1.11, tar@^6.1.2: mkdirp "^1.0.3" yallist "^4.0.0" -terser-webpack-plugin@^5.3.7: - version "5.3.9" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" - integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== +terser-webpack-plugin@^5.3.10: + version "5.3.10" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199" + integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== dependencies: - "@jridgewell/trace-mapping" "^0.3.17" + "@jridgewell/trace-mapping" "^0.3.20" jest-worker "^27.4.5" schema-utils "^3.1.1" serialize-javascript "^6.0.1" - terser "^5.16.8" + terser "^5.26.0" -terser@^5.16.8: - version "5.21.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.21.0.tgz#d2b27e92b5e56650bc83b6defa00a110f0b124b2" - integrity sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw== +terser@^5.26.0: + version "5.27.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.27.0.tgz#70108689d9ab25fef61c4e93e808e9fd092bf20c" + integrity sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -4608,6 +4668,11 @@ type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" @@ -4660,9 +4725,9 @@ unique-slug@^3.0.0: imurmurhash "^0.1.4" universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== update-browserslist-db@^1.0.13: version "1.0.13" @@ -4725,11 +4790,12 @@ webpack-fix-style-only-entries@^0.6.1: integrity sha512-wyIhoxS3DD3Fr9JA8hQPA+ZmaWnqPxx12Nv166wcsI/0fbReqyEtiIk2llOFYIg57WVS3XX5cZJxw2ji70R0sA== webpack-merge@^5.7.3: - version "5.9.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" - integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== + version "5.10.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.10.0.tgz#a3ad5d773241e9c682803abf628d4cd62b8a4177" + integrity sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA== dependencies: clone-deep "^4.0.1" + flat "^5.0.2" wildcard "^2.0.0" webpack-sources@^1.1.0: @@ -4746,18 +4812,18 @@ webpack-sources@^3.2.3: integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack@^5.85.0: - version "5.88.2" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.2.tgz#f62b4b842f1c6ff580f3fcb2ed4f0b579f4c210e" - integrity sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ== + version "5.90.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.90.1.tgz#62ab0c097d7cbe83d32523dbfbb645cdb7c3c01c" + integrity sha512-SstPdlAC5IvgFnhiRok8hqJo/+ArAbNv7rhU4fnWGHNVfN59HSQFaxZDSAL3IFG2YmqxuRs+IU33milSxbPlog== dependencies: "@types/eslint-scope" "^3.7.3" - "@types/estree" "^1.0.0" + "@types/estree" "^1.0.5" "@webassemblyjs/ast" "^1.11.5" "@webassemblyjs/wasm-edit" "^1.11.5" "@webassemblyjs/wasm-parser" "^1.11.5" acorn "^8.7.1" acorn-import-assertions "^1.9.0" - browserslist "^4.14.5" + browserslist "^4.21.10" chrome-trace-event "^1.0.2" enhanced-resolve "^5.15.0" es-module-lexer "^1.2.1" @@ -4771,7 +4837,7 @@ webpack@^5.85.0: neo-async "^2.6.2" schema-utils "^3.2.0" tapable "^2.1.1" - terser-webpack-plugin "^5.3.7" + terser-webpack-plugin "^5.3.10" watchpack "^2.4.0" webpack-sources "^3.2.3" From 1c56f8413c0f1f3a7c85e671573b83c510542c7d Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Wed, 14 Feb 2024 14:41:15 -0800 Subject: [PATCH 2/6] Fixed course template and cache keys --- .../Behavior/TeaserParagraphBehavior.php | 4 + .../dist/css/course-list-item.css | 2 +- .../dist/css/course-vertical-teaser.css | 2 +- .../lib/scss/course-list-item.scss | 3 +- .../lib/scss/course-vertical-teaser.scss | 3 +- .../course-list/course-item-list.twig | 6 +- .../course-list/course-list.ui_patterns.yml | 5 + .../course-vertical-teaser.twig | 5 +- .../course-vertical-teaser.ui_patterns.yml | 5 + modules/stanford_courses/yarn.lock | 1886 +++++++++-------- .../stanford_news/dist/css/news-list-item.css | 2 +- .../components/news-list-item/_list-item.scss | 3 +- 12 files changed, 1005 insertions(+), 921 deletions(-) diff --git a/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/TeaserParagraphBehavior.php b/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/TeaserParagraphBehavior.php index bee182e6..d7729463 100644 --- a/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/TeaserParagraphBehavior.php +++ b/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/TeaserParagraphBehavior.php @@ -59,6 +59,10 @@ public function view(array &$build, ParagraphInterface $paragraph, EntityViewDis } foreach (Element::children($build['su_entity_item']) as $delta) { $build['su_entity_item'][$delta]['#view_mode'] = 'stanford_h3_card'; + + // Replace the cache keys to match the view mode. + $cache_key = array_search('stanford_card', $build['su_entity_item'][$delta]['#cache']['keys']); + $build['su_entity_item'][$delta]['#cache']['keys'][$cache_key] = 'stanford_h3_card'; } } diff --git a/modules/stanford_courses/dist/css/course-list-item.css b/modules/stanford_courses/dist/css/course-list-item.css index 33202d61..a8bd1296 100644 --- a/modules/stanford_courses/dist/css/course-list-item.css +++ b/modules/stanford_courses/dist/css/course-list-item.css @@ -1 +1 @@ -.su-course-list-item .su-courses-edit-article a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:400;line-height:1;text-align:center;text-decoration:none;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.su-course-list-item .su-courses-edit-article a a{font-weight:400;text-decoration:none}.su-course-list-item .su-courses-edit-article a:active,.su-course-list-item .su-courses-edit-article a:focus,.su-course-list-item .su-courses-edit-article a:hover{text-decoration:underline}.su-course-list.su-list-unstyled{margin-bottom:7rem}@media only screen and (min-width:768px){.su-course-list.su-list-unstyled{margin-bottom:16.2rem}}@media only screen and (min-width:1500px){.su-course-list.su-list-unstyled{margin-bottom:17.1rem}}.su-course-list.su-list-unstyled li:first-of-type article{margin-top:0}.su-course-list-item{-ms-grid-columns:100%;border-bottom:1px solid #d5d5d4;display:-ms-grid;display:grid;grid-template-areas:"header" "headline" "instructors" "description";grid-template-columns:100%;margin-bottom:2rem;margin-top:3.4rem}@media only screen and (min-width:768px){.su-course-list-item{margin-top:5.8rem}}@media only screen and (min-width:1500px){.su-course-list-item{margin-top:6.1rem}}@media only screen and (min-width:768px){.su-course-list-item{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-list-item{margin-bottom:2.7rem}}.su-course-list-item .su-course-list__header{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.su-course-list-item .su-course-list__title h2{font-size:1.5625em;letter-spacing:-.012em}.su-course-list-item .su-course-list__title a{color:#b1040e;font-weight:700;text-decoration:none}.su-course-list-item .su-course-list__title a:focus,.su-course-list-item .su-course-list__title a:hover{text-decoration:underline}.su-course-list-item .su-course-list__instructors{margin-bottom:2rem}@media only screen and (min-width:768px){.su-course-list-item .su-course-list__instructors{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-list-item .su-course-list__instructors{margin-bottom:2.7rem}}.su-course-list-item .su-course-list__instructors h3{float:left;font-size:1em;line-height:1.4;margin-bottom:0;padding-right:10px}.su-course-list-item .su-course-list__instructors li{display:inline}.su-course-list-item .su-course-list__instructors li:after{content:",\A0"}.su-course-list-item .su-course-list__instructors li:last-of-type:after{content:""}.su-course-list-item .su-course-list__instructors li li:before{content:"\200B"}.su-course-list-item .su-course-list__description{margin-bottom:3.4rem}@media only screen and (min-width:768px){.su-course-list-item .su-course-list__description{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.su-course-list-item .su-course-list__description{margin-bottom:6.1rem}}.su-course-list-item .su-courses-edit-article a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem;text-align:right}.su-course-list-item .su-courses-edit-article a:after,.su-course-list-item .su-courses-edit-article a:before{background-color:#b1040e;color:#fff}.su-course-list-item .su-courses-edit-article a:focus,.su-course-list-item .su-courses-edit-article a:focus:after,.su-course-list-item .su-courses-edit-article a:focus:before,.su-course-list-item .su-courses-edit-article a:hover,.su-course-list-item .su-courses-edit-article a:hover:after,.su-course-list-item .su-courses-edit-article a:hover:before{background-color:#fff;color:#2e2d29}.su-course-list-item .su-courses-edit-article a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.su-course-list-item .su-courses-edit-article a:hover:after,.su-course-list-item .su-courses-edit-article a:hover:before{background-color:#2e2d29;color:#fff}.su-course-list-item .su-courses-edit-article a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.su-course-list-item .su-courses-edit-article a:focus:after,.su-course-list-item .su-courses-edit-article a:focus:before{background-color:#2e2d29;color:#fff}@media (min-width:992px){.flex-container .main-region{padding-left:3rem}}@media only screen and (min-width:992px) and (min-width:768px){.flex-container .main-region{padding-left:3.6rem}}@media only screen and (min-width:992px) and (min-width:1500px){.flex-container .main-region{padding-left:3.8rem}}@media (max-width:1199px){.filter-menu{margin-bottom:3.4rem}}@media only screen and (max-width:1199px) and (min-width:768px){.filter-menu{margin-bottom:5.8rem}}@media only screen and (max-width:1199px) and (min-width:1500px){.filter-menu{margin-bottom:6.1rem}} \ No newline at end of file +.su-course-list-item .su-courses-edit-article a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:400;line-height:1;text-align:center;text-decoration:none;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.su-course-list-item .su-courses-edit-article a a{font-weight:400;text-decoration:none}.su-course-list-item .su-courses-edit-article a:active,.su-course-list-item .su-courses-edit-article a:focus,.su-course-list-item .su-courses-edit-article a:hover{text-decoration:underline}.su-course-list.su-list-unstyled{margin-bottom:7rem}@media only screen and (min-width:768px){.su-course-list.su-list-unstyled{margin-bottom:16.2rem}}@media only screen and (min-width:1500px){.su-course-list.su-list-unstyled{margin-bottom:17.1rem}}.su-course-list.su-list-unstyled li:first-of-type article{margin-top:0}.su-course-list-item{-ms-grid-columns:100%;border-bottom:1px solid #d5d5d4;display:-ms-grid;display:grid;grid-template-areas:"header" "headline" "instructors" "description";grid-template-columns:100%;margin-bottom:2rem;margin-top:3.4rem}@media only screen and (min-width:768px){.su-course-list-item{margin-top:5.8rem}}@media only screen and (min-width:1500px){.su-course-list-item{margin-top:6.1rem}}@media only screen and (min-width:768px){.su-course-list-item{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-list-item{margin-bottom:2.7rem}}.su-course-list-item .su-course-list__header{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.su-course-list-item .su-course-list__title h2,.su-course-list-item .su-course-list__title h3{font-size:1.5625em;letter-spacing:-.012em}.su-course-list-item .su-course-list__title a{color:#b1040e;font-weight:700;text-decoration:none}.su-course-list-item .su-course-list__title a:focus,.su-course-list-item .su-course-list__title a:hover{text-decoration:underline}.su-course-list-item .su-course-list__instructors{margin-bottom:2rem}@media only screen and (min-width:768px){.su-course-list-item .su-course-list__instructors{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-list-item .su-course-list__instructors{margin-bottom:2.7rem}}.su-course-list-item .su-course-list__instructors h3{float:left;font-size:1em;line-height:1.4;margin-bottom:0;padding-right:10px}.su-course-list-item .su-course-list__instructors li{display:inline}.su-course-list-item .su-course-list__instructors li:after{content:",\A0"}.su-course-list-item .su-course-list__instructors li:last-of-type:after{content:""}.su-course-list-item .su-course-list__instructors li li:before{content:"\200B"}.su-course-list-item .su-course-list__description{margin-bottom:3.4rem}@media only screen and (min-width:768px){.su-course-list-item .su-course-list__description{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.su-course-list-item .su-course-list__description{margin-bottom:6.1rem}}.su-course-list-item .su-courses-edit-article a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem;text-align:right}.su-course-list-item .su-courses-edit-article a:after,.su-course-list-item .su-courses-edit-article a:before{background-color:#b1040e;color:#fff}.su-course-list-item .su-courses-edit-article a:focus,.su-course-list-item .su-courses-edit-article a:focus:after,.su-course-list-item .su-courses-edit-article a:focus:before,.su-course-list-item .su-courses-edit-article a:hover,.su-course-list-item .su-courses-edit-article a:hover:after,.su-course-list-item .su-courses-edit-article a:hover:before{background-color:#fff;color:#2e2d29}.su-course-list-item .su-courses-edit-article a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.su-course-list-item .su-courses-edit-article a:hover:after,.su-course-list-item .su-courses-edit-article a:hover:before{background-color:#2e2d29;color:#fff}.su-course-list-item .su-courses-edit-article a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.su-course-list-item .su-courses-edit-article a:focus:after,.su-course-list-item .su-courses-edit-article a:focus:before{background-color:#2e2d29;color:#fff}@media (min-width:992px){.flex-container .main-region{padding-left:3rem}}@media only screen and (min-width:992px) and (min-width:768px){.flex-container .main-region{padding-left:3.6rem}}@media only screen and (min-width:992px) and (min-width:1500px){.flex-container .main-region{padding-left:3.8rem}}@media (max-width:1199px){.filter-menu{margin-bottom:3.4rem}}@media only screen and (max-width:1199px) and (min-width:768px){.filter-menu{margin-bottom:5.8rem}}@media only screen and (max-width:1199px) and (min-width:1500px){.filter-menu{margin-bottom:6.1rem}} \ No newline at end of file diff --git a/modules/stanford_courses/dist/css/course-vertical-teaser.css b/modules/stanford_courses/dist/css/course-vertical-teaser.css index a706a5f3..16a470a5 100644 --- a/modules/stanford_courses/dist/css/course-vertical-teaser.css +++ b/modules/stanford_courses/dist/css/course-vertical-teaser.css @@ -1 +1 @@ -.su-card.su-course-vertical-teaser,.su-course-vertical-teaser{-ms-grid-columns:100%;display:-ms-grid;display:grid;grid-template-areas:"header" "headline";grid-template-columns:100%}@media only screen and (min-width:0){.su-course-vertical-teaser{padding-top:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser{padding-top:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser{padding-top:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser{margin-bottom:6.08rem}}.su-course-vertical-teaser:focus-within{outline:1px auto -webkit-focus-ring-color}.su-course-vertical-teaser .su-course-vertical-teaser__link:after{display:none}.su-course-vertical-teaser .su-course-header{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-left:3.8rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-right:3.8rem}}.su-course-vertical-teaser .su-course-header .su-course-academic-year,.su-course-vertical-teaser .su-course-header .su-course-code,.su-course-vertical-teaser .su-course-header .su-course-subject{display:inline}.su-course-vertical-teaser .su-course-link h2{font-size:1.5625em;letter-spacing:-.012em}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2{margin-left:3.8rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2{margin-right:3.8rem}}.su-course-vertical-teaser .su-course-link h2.su-link--external:after{background-color:#b1040e;height:20px;width:20px}.su-course-vertical-teaser .su-course-link a{color:#b1040e;font-weight:700;text-decoration:none}.su-course-vertical-teaser .su-course-link a:active,.su-course-vertical-teaser .su-course-link a:focus,.su-course-vertical-teaser .su-course-link a:hover{text-decoration:underline} \ No newline at end of file +.su-card.su-course-vertical-teaser,.su-course-vertical-teaser{-ms-grid-columns:100%;display:-ms-grid;display:grid;grid-template-areas:"header" "headline";grid-template-columns:100%}@media only screen and (min-width:0){.su-course-vertical-teaser{padding-top:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser{padding-top:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser{padding-top:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser{margin-bottom:6.08rem}}.su-course-vertical-teaser:focus-within{outline:1px auto -webkit-focus-ring-color}.su-course-vertical-teaser .su-course-vertical-teaser__link:after{display:none}.su-course-vertical-teaser .su-course-header{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-left:3.8rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-right:3.8rem}}.su-course-vertical-teaser .su-course-header .su-course-academic-year,.su-course-vertical-teaser .su-course-header .su-course-code,.su-course-vertical-teaser .su-course-header .su-course-subject{display:inline}.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{font-size:1.5625em;letter-spacing:-.012em}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.8rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.8rem}}.su-course-vertical-teaser .su-course-link h2.su-link--external:after,.su-course-vertical-teaser .su-course-link h3.su-link--external:after{background-color:#b1040e;height:20px;width:20px}.su-course-vertical-teaser .su-course-link a{color:#b1040e;font-weight:700;text-decoration:none}.su-course-vertical-teaser .su-course-link a:active,.su-course-vertical-teaser .su-course-link a:focus,.su-course-vertical-teaser .su-course-link a:hover{text-decoration:underline} \ No newline at end of file diff --git a/modules/stanford_courses/lib/scss/course-list-item.scss b/modules/stanford_courses/lib/scss/course-list-item.scss index ac2060f3..3c10aead 100644 --- a/modules/stanford_courses/lib/scss/course-list-item.scss +++ b/modules/stanford_courses/lib/scss/course-list-item.scss @@ -32,7 +32,8 @@ } .su-course-list__title { - h2 { + h2, + h3 { @include type-c; } diff --git a/modules/stanford_courses/lib/scss/course-vertical-teaser.scss b/modules/stanford_courses/lib/scss/course-vertical-teaser.scss index 750a3754..60a81da9 100644 --- a/modules/stanford_courses/lib/scss/course-vertical-teaser.scss +++ b/modules/stanford_courses/lib/scss/course-vertical-teaser.scss @@ -52,7 +52,8 @@ } .su-course-link { - h2 { + h2, + h3 { @include type-c; @include modular-spacing("margin-bottom", 1); @include modular-spacing("margin-left", 2); diff --git a/modules/stanford_courses/templates/components/course-list/course-item-list.twig b/modules/stanford_courses/templates/components/course-list/course-item-list.twig index a84e77b5..9db07a33 100644 --- a/modules/stanford_courses/templates/components/course-list/course-item-list.twig +++ b/modules/stanford_courses/templates/components/course-list/course-item-list.twig @@ -27,7 +27,7 @@ {% if headline is not empty %} {% set headingID = getUniqueId(headline|render) %} {% endif %} - +{% set header_tag = variant == 'h3_header' ? 'h3' : 'h2' %} @@ -38,9 +38,9 @@ {%- endif -%} {% if course_list_title|render_clean %} -

+ <{{ header_tag }} id="{{ headingID }}"> {{- course_list_title -}} -

+ {% endif %} {%- if course_list_url is not empty -%} diff --git a/modules/stanford_courses/templates/components/course-list/course-list.ui_patterns.yml b/modules/stanford_courses/templates/components/course-list/course-list.ui_patterns.yml index 319fd47f..f0112635 100644 --- a/modules/stanford_courses/templates/components/course-list/course-list.ui_patterns.yml +++ b/modules/stanford_courses/templates/components/course-list/course-list.ui_patterns.yml @@ -1,6 +1,11 @@ course_list: label: Course List Item description: "Building block component for the Course list page." + variants: + default: + label: Default + h3_header: + label: H3 Header fields: course_list_code: type: text diff --git a/modules/stanford_courses/templates/components/course-vertical-teaser/course-vertical-teaser.twig b/modules/stanford_courses/templates/components/course-vertical-teaser/course-vertical-teaser.twig index 65ec3c4c..d41c5efe 100644 --- a/modules/stanford_courses/templates/components/course-vertical-teaser/course-vertical-teaser.twig +++ b/modules/stanford_courses/templates/components/course-vertical-teaser/course-vertical-teaser.twig @@ -31,11 +31,12 @@ {%- endif -%} {% set course_url = course_url|render|striptags("")|trim %} +{% set header_tag = variant == 'h3_header' ? 'h3' : 'h2' %} {%- if course_code|render_clean is not empty or course_academic_year|render_clean is not empty -%} diff --git a/modules/stanford_courses/templates/components/course-vertical-teaser/course-vertical-teaser.ui_patterns.yml b/modules/stanford_courses/templates/components/course-vertical-teaser/course-vertical-teaser.ui_patterns.yml index ad5f6954..a97d0730 100644 --- a/modules/stanford_courses/templates/components/course-vertical-teaser/course-vertical-teaser.ui_patterns.yml +++ b/modules/stanford_courses/templates/components/course-vertical-teaser/course-vertical-teaser.ui_patterns.yml @@ -1,6 +1,11 @@ course_vertical_teaser: label: Course Vertical Teaser description: "Course Vertical Teaser" + variants: + default: + label: Default + h3_header: + label: H3 Header fields: course_code: type: text diff --git a/modules/stanford_courses/yarn.lock b/modules/stanford_courses/yarn.lock index fd4db718..4365ab3d 100644 --- a/modules/stanford_courses/yarn.lock +++ b/modules/stanford_courses/yarn.lock @@ -10,46 +10,46 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13": - version "7.22.13" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" - integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: - "@babel/highlight" "^7.22.13" + "@babel/highlight" "^7.23.4" chalk "^2.4.2" -"@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0" - integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.3", "@babel/compat-data@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" + integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== "@babel/core@^7.22.1": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.0.tgz#f8259ae0e52a123eb40f552551e647b506a94d83" - integrity sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ== + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.9.tgz#b028820718000f267870822fec434820e9b1e4d1" + integrity sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.23.0" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-module-transforms" "^7.23.0" - "@babel/helpers" "^7.23.0" - "@babel/parser" "^7.23.0" - "@babel/template" "^7.22.15" - "@babel/traverse" "^7.23.0" - "@babel/types" "^7.23.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.23.9" + "@babel/parser" "^7.23.9" + "@babel/template" "^7.23.9" + "@babel/traverse" "^7.23.9" + "@babel/types" "^7.23.9" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" - integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== +"@babel/generator@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== dependencies: - "@babel/types" "^7.23.0" + "@babel/types" "^7.23.6" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" @@ -61,40 +61,40 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== dependencies: "@babel/types" "^7.22.15" -"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52" - integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== +"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== dependencies: - "@babel/compat-data" "^7.22.9" - "@babel/helper-validator-option" "^7.22.15" - browserslist "^4.21.9" + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4" - integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== +"@babel/helper-create-class-features-plugin@^7.22.15": + version "7.23.10" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.10.tgz#25d55fafbaea31fd0e723820bb6cc3df72edf7ea" + integrity sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-member-expression-to-functions" "^7.23.0" "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-replace-supers" "^7.22.20" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" semver "^6.3.1" -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== @@ -103,10 +103,10 @@ regexpu-core "^5.3.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" - integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== +"@babel/helper-define-polyfill-provider@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz#465805b7361f461e86c680f1de21eaf88c25901b" + integrity sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -114,7 +114,7 @@ lodash.debounce "^4.0.8" resolve "^1.14.2" -"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": +"@babel/helper-environment-visitor@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== @@ -134,24 +134,24 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-member-expression-to-functions@^7.22.15": +"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== dependencies: "@babel/types" "^7.23.0" -"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5": +"@babel/helper-module-imports@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== dependencies: "@babel/types" "^7.22.15" -"@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz#3ec246457f6c842c0aee62a01f60739906f7047e" - integrity sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw== +"@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== dependencies: "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-module-imports" "^7.22.15" @@ -171,7 +171,7 @@ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== -"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": +"@babel/helper-remap-async-to-generator@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== @@ -180,7 +180,7 @@ "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-wrap-function" "^7.22.20" -"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": +"@babel/helper-replace-supers@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== @@ -210,20 +210,20 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-option@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" - integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== +"@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== "@babel/helper-wrap-function@^7.22.20": version "7.22.20" @@ -234,44 +234,52 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.22.19" -"@babel/helpers@^7.23.0": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.1.tgz#44e981e8ce2b9e99f8f0b703f3326a4636c16d15" - integrity sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA== +"@babel/helpers@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.9.tgz#c3e20bbe7f7a7e10cb9b178384b4affdf5995c7d" + integrity sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ== dependencies: - "@babel/template" "^7.22.15" - "@babel/traverse" "^7.23.0" - "@babel/types" "^7.23.0" + "@babel/template" "^7.23.9" + "@babel/traverse" "^7.23.9" + "@babel/types" "^7.23.9" -"@babel/highlight@^7.22.13": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" - integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: "@babel/helper-validator-identifier" "^7.22.20" chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.22.15", "@babel/parser@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" - integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== +"@babel/parser@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.9.tgz#7b903b6149b0f8fa7ad564af646c4c38a77fc44b" + integrity sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962" - integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" + integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz#2aeb91d337d4e1a1e7ce85b76a37f5301781200f" - integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" + integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.15" + "@babel/plugin-transform-optional-chaining" "^7.23.3" + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.7": + version "7.23.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz#516462a95d10a9618f197d39ad291a9b47ae1d7b" + integrity sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": version "7.21.0-placeholder-for-preset-env.2" @@ -313,17 +321,17 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-import-assertions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" - integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== +"@babel/plugin-syntax-import-assertions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" + integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" - integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== +"@babel/plugin-syntax-import-attributes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" + integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -405,211 +413,211 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" - integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== +"@babel/plugin-transform-arrow-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" + integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-generator-functions@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz#3b153af4a6b779f340d5b80d3f634f55820aefa3" - integrity sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w== +"@babel/plugin-transform-async-generator-functions@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz#9adaeb66fc9634a586c5df139c6240d41ed801ce" + integrity sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ== dependencies: - "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.9" + "@babel/helper-remap-async-to-generator" "^7.22.20" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-transform-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" - integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== +"@babel/plugin-transform-async-to-generator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" + integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== dependencies: - "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-module-imports" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" -"@babel/plugin-transform-block-scoped-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" - integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== +"@babel/plugin-transform-block-scoped-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" + integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz#8744d02c6c264d82e1a4bc5d2d501fd8aff6f022" - integrity sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g== +"@babel/plugin-transform-block-scoping@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" + integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-class-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" - integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== +"@babel/plugin-transform-class-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" + integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-class-static-block@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz#dc8cc6e498f55692ac6b4b89e56d87cec766c974" - integrity sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== +"@babel/plugin-transform-class-static-block@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" + integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.11" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-transform-classes@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b" - integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw== +"@babel/plugin-transform-classes@^7.23.8": + version "7.23.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz#d08ae096c240347badd68cdf1b6d1624a6435d92" + integrity sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-replace-supers" "^7.22.20" "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" - integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== +"@babel/plugin-transform-computed-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" + integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.5" + "@babel/template" "^7.22.15" -"@babel/plugin-transform-destructuring@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz#6447aa686be48b32eaf65a73e0e2c0bd010a266c" - integrity sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg== +"@babel/plugin-transform-destructuring@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" + integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" - integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== +"@babel/plugin-transform-dotall-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" + integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-duplicate-keys@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" - integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== +"@babel/plugin-transform-duplicate-keys@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" + integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dynamic-import@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz#2c7722d2a5c01839eaf31518c6ff96d408e447aa" - integrity sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== +"@babel/plugin-transform-dynamic-import@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" + integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-transform-exponentiation-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" - integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== +"@babel/plugin-transform-exponentiation-operator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" + integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-export-namespace-from@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz#b3c84c8f19880b6c7440108f8929caf6056db26c" - integrity sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== +"@babel/plugin-transform-export-namespace-from@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" + integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-transform-for-of@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29" - integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA== +"@babel/plugin-transform-for-of@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e" + integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" - integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== +"@babel/plugin-transform-function-name@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" + integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== dependencies: - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-function-name" "^7.23.0" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-json-strings@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz#689a34e1eed1928a40954e37f74509f48af67835" - integrity sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== +"@babel/plugin-transform-json-strings@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" + integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-transform-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" - integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== +"@babel/plugin-transform-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" + integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-logical-assignment-operators@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz#24c522a61688bde045b7d9bc3c2597a4d948fc9c" - integrity sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== +"@babel/plugin-transform-logical-assignment-operators@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" + integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-transform-member-expression-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" - integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== +"@babel/plugin-transform-member-expression-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" + integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-amd@^7.22.5": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz#05b2bc43373faa6d30ca89214731f76f966f3b88" - integrity sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw== +"@babel/plugin-transform-modules-amd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" + integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== dependencies: - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz#b3dba4757133b2762c00f4f94590cf6d52602481" - integrity sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ== +"@babel/plugin-transform-modules-commonjs@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" + integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== dependencies: - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.22.11": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz#77591e126f3ff4132a40595a6cccd00a6b60d160" - integrity sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg== +"@babel/plugin-transform-modules-systemjs@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz#105d3ed46e4a21d257f83a2f9e2ee4203ceda6be" + integrity sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw== dependencies: "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-identifier" "^7.22.20" -"@babel/plugin-transform-modules-umd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" - integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== +"@babel/plugin-transform-modules-umd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" + integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== dependencies: - "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": @@ -620,198 +628,199 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-new-target@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" - integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== +"@babel/plugin-transform-new-target@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" + integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz#debef6c8ba795f5ac67cd861a81b744c5d38d9fc" - integrity sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== +"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" + integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-transform-numeric-separator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz#498d77dc45a6c6db74bb829c02a01c1d719cbfbd" - integrity sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== +"@babel/plugin-transform-numeric-separator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" + integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-object-rest-spread@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz#21a95db166be59b91cde48775310c0df6e1da56f" - integrity sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== +"@babel/plugin-transform-object-rest-spread@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz#2b9c2d26bf62710460bdc0d1730d4f1048361b83" + integrity sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g== dependencies: - "@babel/compat-data" "^7.22.9" + "@babel/compat-data" "^7.23.3" "@babel/helper-compilation-targets" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.22.15" + "@babel/plugin-transform-parameters" "^7.23.3" -"@babel/plugin-transform-object-super@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" - integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== +"@babel/plugin-transform-object-super@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" + integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" -"@babel/plugin-transform-optional-catch-binding@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz#461cc4f578a127bb055527b3e77404cad38c08e0" - integrity sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== +"@babel/plugin-transform-optional-catch-binding@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" + integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz#73ff5fc1cf98f542f09f29c0631647d8ad0be158" - integrity sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g== +"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" + integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-transform-parameters@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114" - integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== +"@babel/plugin-transform-parameters@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" + integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-private-methods@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" - integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== +"@babel/plugin-transform-private-methods@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" + integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-private-property-in-object@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz#ad45c4fc440e9cb84c718ed0906d96cf40f9a4e1" - integrity sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== +"@babel/plugin-transform-private-property-in-object@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" + integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.11" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-transform-property-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" - integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== +"@babel/plugin-transform-property-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" + integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-regenerator@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" - integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== +"@babel/plugin-transform-regenerator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" + integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" regenerator-transform "^0.15.2" -"@babel/plugin-transform-reserved-words@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" - integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== +"@babel/plugin-transform-reserved-words@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" + integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-shorthand-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" - integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== +"@babel/plugin-transform-shorthand-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" + integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" - integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== +"@babel/plugin-transform-spread@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" + integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" - integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== +"@babel/plugin-transform-sticky-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" + integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-template-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" - integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== +"@babel/plugin-transform-template-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" + integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typeof-symbol@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" - integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== +"@babel/plugin-transform-typeof-symbol@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" + integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-escapes@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" - integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== +"@babel/plugin-transform-unicode-escapes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" + integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-property-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" - integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== +"@babel/plugin-transform-unicode-property-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" + integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" - integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== +"@babel/plugin-transform-unicode-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" + integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-sets-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" - integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== +"@babel/plugin-transform-unicode-sets-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" + integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/preset-env@^7.22.4": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.20.tgz#de9e9b57e1127ce0a2f580831717f7fb677ceedb" - integrity sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg== + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.23.9.tgz#beace3b7994560ed6bf78e4ae2073dff45387669" + integrity sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A== dependencies: - "@babel/compat-data" "^7.22.20" - "@babel/helper-compilation-targets" "^7.22.15" + "@babel/compat-data" "^7.23.5" + "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.15" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.15" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.7" "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.22.5" - "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-assertions" "^7.23.3" + "@babel/plugin-syntax-import-attributes" "^7.23.3" "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" @@ -823,59 +832,58 @@ "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.15" - "@babel/plugin-transform-async-to-generator" "^7.22.5" - "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.15" - "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.11" - "@babel/plugin-transform-classes" "^7.22.15" - "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.15" - "@babel/plugin-transform-dotall-regex" "^7.22.5" - "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.11" - "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.11" - "@babel/plugin-transform-for-of" "^7.22.15" - "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.11" - "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.11" - "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.15" - "@babel/plugin-transform-modules-systemjs" "^7.22.11" - "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-arrow-functions" "^7.23.3" + "@babel/plugin-transform-async-generator-functions" "^7.23.9" + "@babel/plugin-transform-async-to-generator" "^7.23.3" + "@babel/plugin-transform-block-scoped-functions" "^7.23.3" + "@babel/plugin-transform-block-scoping" "^7.23.4" + "@babel/plugin-transform-class-properties" "^7.23.3" + "@babel/plugin-transform-class-static-block" "^7.23.4" + "@babel/plugin-transform-classes" "^7.23.8" + "@babel/plugin-transform-computed-properties" "^7.23.3" + "@babel/plugin-transform-destructuring" "^7.23.3" + "@babel/plugin-transform-dotall-regex" "^7.23.3" + "@babel/plugin-transform-duplicate-keys" "^7.23.3" + "@babel/plugin-transform-dynamic-import" "^7.23.4" + "@babel/plugin-transform-exponentiation-operator" "^7.23.3" + "@babel/plugin-transform-export-namespace-from" "^7.23.4" + "@babel/plugin-transform-for-of" "^7.23.6" + "@babel/plugin-transform-function-name" "^7.23.3" + "@babel/plugin-transform-json-strings" "^7.23.4" + "@babel/plugin-transform-literals" "^7.23.3" + "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" + "@babel/plugin-transform-member-expression-literals" "^7.23.3" + "@babel/plugin-transform-modules-amd" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-modules-systemjs" "^7.23.9" + "@babel/plugin-transform-modules-umd" "^7.23.3" "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.11" - "@babel/plugin-transform-numeric-separator" "^7.22.11" - "@babel/plugin-transform-object-rest-spread" "^7.22.15" - "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.11" - "@babel/plugin-transform-optional-chaining" "^7.22.15" - "@babel/plugin-transform-parameters" "^7.22.15" - "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.11" - "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.10" - "@babel/plugin-transform-reserved-words" "^7.22.5" - "@babel/plugin-transform-shorthand-properties" "^7.22.5" - "@babel/plugin-transform-spread" "^7.22.5" - "@babel/plugin-transform-sticky-regex" "^7.22.5" - "@babel/plugin-transform-template-literals" "^7.22.5" - "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.10" - "@babel/plugin-transform-unicode-property-regex" "^7.22.5" - "@babel/plugin-transform-unicode-regex" "^7.22.5" - "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.23.3" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" + "@babel/plugin-transform-numeric-separator" "^7.23.4" + "@babel/plugin-transform-object-rest-spread" "^7.23.4" + "@babel/plugin-transform-object-super" "^7.23.3" + "@babel/plugin-transform-optional-catch-binding" "^7.23.4" + "@babel/plugin-transform-optional-chaining" "^7.23.4" + "@babel/plugin-transform-parameters" "^7.23.3" + "@babel/plugin-transform-private-methods" "^7.23.3" + "@babel/plugin-transform-private-property-in-object" "^7.23.4" + "@babel/plugin-transform-property-literals" "^7.23.3" + "@babel/plugin-transform-regenerator" "^7.23.3" + "@babel/plugin-transform-reserved-words" "^7.23.3" + "@babel/plugin-transform-shorthand-properties" "^7.23.3" + "@babel/plugin-transform-spread" "^7.23.3" + "@babel/plugin-transform-sticky-regex" "^7.23.3" + "@babel/plugin-transform-template-literals" "^7.23.3" + "@babel/plugin-transform-typeof-symbol" "^7.23.3" + "@babel/plugin-transform-unicode-escapes" "^7.23.3" + "@babel/plugin-transform-unicode-property-regex" "^7.23.3" + "@babel/plugin-transform-unicode-regex" "^7.23.3" + "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" "@babel/preset-modules" "0.1.6-no-external-plugins" - "@babel/types" "^7.22.19" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" + babel-plugin-polyfill-corejs2 "^0.4.8" + babel-plugin-polyfill-corejs3 "^0.9.0" + babel-plugin-polyfill-regenerator "^0.5.5" core-js-compat "^3.31.0" semver "^6.3.1" @@ -894,289 +902,308 @@ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== "@babel/runtime@^7.8.4": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.1.tgz#72741dc4d413338a91dcb044a86f3c0bc402646d" - integrity sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g== + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.9.tgz#47791a15e4603bb5f905bc0753801cf21d6345f7" + integrity sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.22.15", "@babel/template@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" - integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== +"@babel/template@^7.22.15", "@babel/template@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.23.9.tgz#f881d0487cba2828d3259dcb9ef5005a9731011a" + integrity sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA== dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/parser" "^7.22.15" - "@babel/types" "^7.22.15" + "@babel/code-frame" "^7.23.5" + "@babel/parser" "^7.23.9" + "@babel/types" "^7.23.9" -"@babel/traverse@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.0.tgz#18196ddfbcf4ccea324b7f6d3ada00d8c5a99c53" - integrity sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw== +"@babel/traverse@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.9.tgz#2f9d6aead6b564669394c5ce0f9302bb65b9d950" + integrity sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg== dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.23.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.23.0" - "@babel/types" "^7.23.0" - debug "^4.1.0" + "@babel/parser" "^7.23.9" + "@babel/types" "^7.23.9" + debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.4.4": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" - integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== +"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.23.9", "@babel/types@^7.4.4": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.9.tgz#1dd7b59a9a2b5c87f8b41e52770b5ecbf492e002" + integrity sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q== dependencies: - "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-string-parser" "^7.23.4" "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@csstools/cascade-layer-name-parser@^1.0.4", "@csstools/cascade-layer-name-parser@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.5.tgz#c4d276e32787651df0007af22c9fa70d9c9ca3c2" - integrity sha512-v/5ODKNBMfBl0us/WQjlfsvSlYxfZLhNMVIsuCPib2ulTwGKYbKJbwqw671+qH9Y4wvWVnu7LBChvml/wBKjFg== +"@csstools/cascade-layer-name-parser@^1.0.5", "@csstools/cascade-layer-name-parser@^1.0.7": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.7.tgz#9cfc36de9716d219492eb0e5ee75348b2213a8fd" + integrity sha512-9J4aMRJ7A2WRjaRLvsMeWrL69FmEuijtiW1XlK/sG+V0UJiHVYUyvj9mY4WAXfU/hGIiGOgL8e0jJcRyaZTjDQ== -"@csstools/color-helpers@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-3.0.2.tgz#6571d289af8bfcc3a8d75357b35e6d17a8ba6848" - integrity sha512-NMVs/l7Y9eIKL5XjbCHEgGcG8LOUT2qVcRjX6EzkCdlvftHVKr2tHIPzHavfrULRZ5Q2gxrJ9f44dAlj6fX97Q== +"@csstools/color-helpers@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-4.0.0.tgz#a1d6ffcefe5c1d389cbcca15f46da3cdaf241443" + integrity sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w== -"@csstools/css-calc@^1.1.4": - version "1.1.4" - resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.1.4.tgz#70bf4c5b379cdc256d3936bf4a21e3a3454a3d68" - integrity sha512-ZV1TSmToiNcQL1P3hfzlzZzA02mmVkVmXGaUDUqpYUG84PmLhVSZpKX+KfxAuOcK7de04UXSQPBrAvaya6iiGg== +"@csstools/css-calc@^1.1.6": + version "1.1.6" + resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.1.6.tgz#2d4e16725c3f981f7c6e469c306bcb1f490e1082" + integrity sha512-YHPAuFg5iA4qZGzMzvrQwzkvJpesXXyIUyaONflQrjtHB+BcFFbgltJkIkb31dMGO4SE9iZFA4HYpdk7+hnYew== -"@csstools/css-color-parser@^1.3.3": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-1.3.3.tgz#ccae33e97f196cd97b0e471b89b04735f27c9e80" - integrity sha512-8GHvh0jopx++NLfYg6e7Bb1snI+CrGdHxUdzjX6zERyjCRsL53dX0ZqE5i4z7thAHCaLRlQrAMIWgNI0EQkx7w== +"@csstools/css-color-parser@^1.5.1": + version "1.5.1" + resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-1.5.1.tgz#bddf5513a7327c511c9e1ec682419dcad1f91869" + integrity sha512-x+SajGB2paGrTjPOUorGi8iCztF008YMKXTn+XzGVDBEIVJ/W1121pPerpneJYGOe1m6zWLPLnzOPaznmQxKFw== dependencies: - "@csstools/color-helpers" "^3.0.2" - "@csstools/css-calc" "^1.1.4" + "@csstools/color-helpers" "^4.0.0" + "@csstools/css-calc" "^1.1.6" -"@csstools/css-parser-algorithms@^2.3.1", "@csstools/css-parser-algorithms@^2.3.2": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz#1e0d581dbf4518cb3e939c3b863cb7180c8cedad" - integrity sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA== +"@csstools/css-parser-algorithms@^2.3.2", "@csstools/css-parser-algorithms@^2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.5.0.tgz#0c03cd5418a9f404a05ff2ffcb1b69d04e8ec532" + integrity sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ== -"@csstools/css-tokenizer@^2.2.0", "@csstools/css-tokenizer@^2.2.1": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz#9dc431c9a5f61087af626e41ac2a79cce7bb253d" - integrity sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg== +"@csstools/css-tokenizer@^2.2.1", "@csstools/css-tokenizer@^2.2.3": + version "2.2.3" + resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.2.3.tgz#b099d543ea57b64f495915a095ead583866c50c6" + integrity sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg== -"@csstools/media-query-list-parser@^2.1.4", "@csstools/media-query-list-parser@^2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.5.tgz#94bc8b3c3fd7112a40b7bf0b483e91eba0654a0f" - integrity sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ== +"@csstools/media-query-list-parser@^2.1.5", "@csstools/media-query-list-parser@^2.1.7": + version "2.1.7" + resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.7.tgz#a4836e3dbd693081a30b32ce9c2a781e1be16788" + integrity sha512-lHPKJDkPUECsyAvD60joYfDmp8UERYxHGkFfyLJFTVK/ERJe0sVlIFLXU5XFxdjNDTerp5L4KeaKG+Z5S94qxQ== -"@csstools/postcss-cascade-layers@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.0.tgz#21f8556de640f9f9ccfb950c49a886280fe5497e" - integrity sha512-dVPVVqQG0FixjM9CG/+8eHTsCAxRKqmNh6H69IpruolPlnEF1611f2AoLK8TijTSAsqBSclKd4WHs1KUb/LdJw== +"@csstools/postcss-cascade-layers@^4.0.1": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.2.tgz#1a9212b150bc6106bcb1dfd4fc03f6fb42240037" + integrity sha512-PqM+jvg5T2tB4FHX+akrMGNWAygLupD4FNUjcv4PSvtVuWZ6ISxuo37m4jFGU7Jg3rCfloGzKd0+xfr5Ec3vZQ== dependencies: - "@csstools/selector-specificity" "^3.0.0" + "@csstools/selector-specificity" "^3.0.1" postcss-selector-parser "^6.0.13" -"@csstools/postcss-color-function@^3.0.4": - version "3.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-3.0.6.tgz#43574c05b8e2c6852d677936067a22eb9daf3ecc" - integrity sha512-qAGRJLJXIYeRgqIl4T9cuXgkOtp6JVgOnA2qRE3BRc5tj7HEAqXYdZ3/+bjM+R8im0Mm+TbBCZpTx/EOibtEAg== +"@csstools/postcss-color-function@^3.0.7": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-3.0.9.tgz#4e13e2b4b1b682a669c92ff676ccc35c99e69f9e" + integrity sha512-6Hbkw/4k73UH121l4LG+LNLKSvrfHqk3GHHH0A6/iFlD0xGmsWAr80Jd0VqXjfYbUTOGmJTOMMoxv3jvNxt1uw== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" -"@csstools/postcss-color-mix-function@^2.0.4": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.6.tgz#88fab56fbb701245b63d34eaa1416dbbb4b5fa7b" - integrity sha512-BixdhD297bYbCjD7hWO7rE6eOkCsQ2IzAyaKflVoijhnnhwLlALwMv6IQ+F8U2ACuRKQAJGYOYJkKoGbdbrWTA== +"@csstools/postcss-color-mix-function@^2.0.7": + version "2.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.9.tgz#ce1bc1decf307f93e6e6b0ee6ae14dd72295955c" + integrity sha512-fs1SOWJ/44DQSsDeJP+rxAkP2MYkCg6K4ZB8qJwFku2EjurgCAPiPZJvC6w94T1hBBinJwuMfT9qvvvniXyVgw== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" -"@csstools/postcss-exponential-functions@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.1.tgz#0d938f58ba5ac5c362e09ad22b5768b04ee82650" - integrity sha512-ZLK2iSK4DUxeypGce2PnQSdYugUqDTwxnhNiq1o6OyKMNYgYs4eKbvEhFG8JKr1sJWbeqBi5jRr0017l2EWVvg== +"@csstools/postcss-exponential-functions@^1.0.1": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.3.tgz#13cf794d2434d1d488f27bce3334359935b8f984" + integrity sha512-IfGtEg3eC4b8Nd/kPgO3SxgKb33YwhHVsL0eJ3UYihx6fzzAiZwNbWmVW9MZTQjZ5GacgKxa4iAHikGvpwuIjw== dependencies: - "@csstools/css-calc" "^1.1.4" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-calc" "^1.1.6" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" "@csstools/postcss-font-format-keywords@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.0.tgz#9ca3a3ca67122862addf8a1c0c61a6db02dea1cc" - integrity sha512-ntkGj+1uDa/u6lpjPxnkPcjJn7ChO/Kcy08YxctOZI7vwtrdYvFhmE476dq8bj1yna306+jQ9gzXIG/SWfOaRg== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.1.tgz#15ca8f8bd54568e4f3336b80ca0d20c903d02049" + integrity sha512-D1lcG2sfotTq6yBEOMV3myFxJLT10F3DLYZJMbiny5YToqzHWodZen8WId3UTimm0mEHitXqAUNL5jdd6RzVdA== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-gradients-interpolation-method@^4.0.4": - version "4.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.6.tgz#6a625784947c635f0c0c39854d8bf62b97c39ea2" - integrity sha512-3YoaQtoz5uomMylT1eoSLLmsVwo1f7uP24Pd39mV5Zo9Bj04m1Mk+Xxe2sdvsgvGF4RX05SyRX5rKNcd7p+K8Q== +"@csstools/postcss-gamut-mapping@^1.0.0": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.2.tgz#bef05c2bd2ad0b2c60f96e90e36173e0a79514d1" + integrity sha512-zf9KHGM2PTuJEm4ZYg4DTmzCir38EbZBzlMPMbA4jbhLDqXHkqwnQ+Z5+UNrU8y6seVu5B4vzZmZarTFQwe+Ig== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" -"@csstools/postcss-hwb-function@^3.0.3": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.5.tgz#437b56d3a994d05bdc315cdf0bb6aceb09e03639" - integrity sha512-ISRDhzB/dxsOnR+Z5GQmdOSIi4Q2lEf+7qdCsYMZJus971boaBzGL3A3W0U5m769qwDMRyy4CvHsRZP/8Vc2IQ== +"@csstools/postcss-gradients-interpolation-method@^4.0.7": + version "4.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.9.tgz#083bedd34e9e9e60cc4582bc58229cdc2750d8d5" + integrity sha512-PSqR6QH7h3ggOl8TsoH73kbwYTKVQjAJauGg6nDKwaGfi5IL5StV//ehrv1C7HuPsHixMTc9YoAuuv1ocT20EQ== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" -"@csstools/postcss-ic-unit@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.1.tgz#9d4964fe9da11f51463e0a141b3184ee3a23acb8" - integrity sha512-OkKZV0XZQixChA6r68O9UfGNFv06cPVcuT+MjpzfEuoCfbNWCj+b0dhsmdz776giQ+DymPmFDlTD+QJEFPI7rw== +"@csstools/postcss-hwb-function@^3.0.6": + version "3.0.8" + resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.8.tgz#4a21b447390998b3201ecc4dd6a8639f5e2a524d" + integrity sha512-CRQEG372Hivmt17rm/Ho22hBQI9K/a6grzGQ21Zwc7dyspmyG0ibmPIW8hn15vJmXqWGeNq7S+L2b8/OrU7O5A== + dependencies: + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + +"@csstools/postcss-ic-unit@^3.0.2": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.3.tgz#f1e257be491718d964a5ecebac39f2f469caf8a8" + integrity sha512-MpcmIL0/uMm/cFWh5V/9nbKKJ7jRr2qTYW5Q6zoE6HZ6uzOBJr2KRERv5/x8xzEBQ1MthDT7iP1EBp9luSQy7g== dependencies: - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" postcss-value-parser "^4.2.0" "@csstools/postcss-initial@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-initial/-/postcss-initial-1.0.0.tgz#e35ec12143a654b384fb81623970deeacedb0769" - integrity sha512-1l7iHHjIl5qmVeGItugr4ZOlCREDP71mNKqoEyxlosIoiu3Os1nPWMHpuCvDLCLiWI/ONTOg3nzJh7gwHOrqUA== + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-initial/-/postcss-initial-1.0.1.tgz#5aa378de9bfd0e6e377433f8986bdecf579e1268" + integrity sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg== -"@csstools/postcss-is-pseudo-class@^4.0.2": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.3.tgz#d8b04ff5eefb1a9bc8f1ab99b8f3b6b04b704480" - integrity sha512-/dt5M9Ty/x3Yiq0Nm/5PJJzwkVFchJgdjKVnryBPtoMCb9ohb/nDIJOwr/Wr3hK3FDs1EA1GE6PyRYsUmQPS8Q== +"@csstools/postcss-is-pseudo-class@^4.0.3": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.4.tgz#c95d3f8b355df1744c906d0ec5e69aedce4e9487" + integrity sha512-vTVO/uZixpTVAOQt3qZRUFJ/K1L03OfNkeJ8sFNDVNdVy/zW0h1L5WT7HIPMDUkvSrxQkFaCCybTZkUP7UESlQ== dependencies: - "@csstools/selector-specificity" "^3.0.0" + "@csstools/selector-specificity" "^3.0.1" postcss-selector-parser "^6.0.13" "@csstools/postcss-logical-float-and-clear@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.0.tgz#15e1b5d16dce01ad1e676167d0909e3958234eb5" - integrity sha512-Wki4vxsF6icRvRz8eF9bPpAvwaAt0RHwhVOyzfoFg52XiIMjb6jcbHkGxwpJXP4DVrnFEwpwmrz5aTRqOW82kg== + version "2.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.1.tgz#c70ed8293cc376b1572bf56794219f54dc58c54d" + integrity sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA== + +"@csstools/postcss-logical-overflow@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-1.0.1.tgz#d14631369f43ef989c7e32f051ddb6952a8ce35c" + integrity sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw== + +"@csstools/postcss-logical-overscroll-behavior@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-1.0.1.tgz#9305a6f0d08bb7b5f1a228272951f72d3bf9d44f" + integrity sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ== "@csstools/postcss-logical-resize@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.0.tgz#751bd5aab335c9973e346e3edacb2a0a16fa8296" - integrity sha512-lCQ1aX8c5+WI4t5EoYf3alTzJNNocMqTb+u1J9CINdDhFh1fjovqK+0aHalUHsNstZmzFPNzIkU4Mb3eM9U8SA== + version "2.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.1.tgz#a46c1b51055db96fb63af3bfe58909c773aea377" + integrity sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-logical-viewport-units@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.3.tgz#95e7195660bb8b05cd46f13d0495fe427e2db988" - integrity sha512-xeVxqND5rlQyqLGdH7rX34sIm/JbbQKxpKQP8oD1YQqUHHCLQR9NUS57WqJKajxKN6AcNAMWJhb5LUH5RfPcyA== +"@csstools/postcss-logical-viewport-units@^2.0.3": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.5.tgz#5517b609aeb76e7e94143514d77ff6c8c83f42f3" + integrity sha512-2fjSamKN635DSW6fEoyNd2Bkpv3FVblUpgk5cpghIgPW1aDHZE2SYfZK5xQALvjMYZVjfqsD5EbXA7uDVBQVQA== dependencies: - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-tokenizer" "^2.2.3" -"@csstools/postcss-media-minmax@^1.0.7": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.0.tgz#8d46317b6686cd49e05870ae3c8993e49a54149c" - integrity sha512-t5Li/DPC5QmW/6VFLfUvsw/4dNYYseWR0tOXDeJg/9EKUodBgNawz5tuk5vYKtNvoj+Q08odMuXcpS5YJj0AFA== +"@csstools/postcss-media-minmax@^1.1.0": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.2.tgz#3c7ad7bebde6b329c40c96c3a78073aaa0714bb8" + integrity sha512-7qTRTJxW96u2yiEaTep1+8nto1O/rEDacewKqH+Riq5E6EsHTOmGHxkB4Se5Ic5xgDC4I05lLZxzzxnlnSypxA== dependencies: - "@csstools/css-calc" "^1.1.4" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/media-query-list-parser" "^2.1.5" + "@csstools/css-calc" "^1.1.6" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/media-query-list-parser" "^2.1.7" -"@csstools/postcss-media-queries-aspect-ratio-number-values@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.3.tgz#a74355c828a13ede8e8390bcf2701a34a60696b3" - integrity sha512-IPL8AvnwMYW+cWtp+j8cW3MFN0RyXNT4hLOvs6Rf2N+NcbvXhSyKxZuE3W9Cv4KjaNoNoGx1d0UhT6tktq6tUw== +"@csstools/postcss-media-queries-aspect-ratio-number-values@^2.0.3": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.5.tgz#a78989a2c8012235d878e70eac203d9d51419114" + integrity sha512-XHMPasWYPWa9XaUHXU6Iq0RLfoAI+nvGTPj51hOizNsHaAyFiq2SL4JvF1DU8lM6B70+HVzKM09Isbyrr755Bw== dependencies: - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/media-query-list-parser" "^2.1.5" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/media-query-list-parser" "^2.1.7" "@csstools/postcss-nested-calc@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-3.0.0.tgz#b9069f5e1c2ea08de3840a5922e39af4e0ecf4b1" - integrity sha512-HsB66aDWAouOwD/GcfDTS0a7wCuVWaTpXcjl5VKP0XvFxDiU+r0T8FG7xgb6ovZNZ+qzvGIwRM+CLHhDgXrYgQ== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-3.0.1.tgz#94b462420d22539984bfe659339abba6971ff8f0" + integrity sha512-bwwababZpWRm0ByHaWBxTsDGTMhZKmtUNl3Wt0Eom8AY7ORgXx5qF9SSk1vEFrCi+HOfJT6M6W5KPgzXuQNRwQ== dependencies: postcss-value-parser "^4.2.0" "@csstools/postcss-normalize-display-values@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-3.0.1.tgz#8bacd4fa20434de67a7b1f4f64f6e4476922a98d" - integrity sha512-nUvRxI+ALJwkxZdPU4EDyuM380vP91sAGvI3jAOHs/sr3jfcCOzLkY6xKI1Mr526kZ3RivmMoYM/xq+XFyE/bw== + version "3.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-3.0.2.tgz#9013e6ade2fbd4cd725438c9ff0b1000062cf20d" + integrity sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-oklab-function@^3.0.4": - version "3.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.6.tgz#24494aec15c2f27051e9ed42660aa29998ccf47d" - integrity sha512-p//JBeyk57OsNT1y9snWqunJ5g39JXjJUVlOcUUNavKxwQiRcXx2otONy7fRj6y3XKHLvp8wcV7kn93rooNaYA== +"@csstools/postcss-oklab-function@^3.0.7": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.9.tgz#26e462e0ec18222f08e285afd6d9c9261ab55ee4" + integrity sha512-l639gpcBfL3ogJe+og1M5FixQn8iGX8+29V7VtTSCUB37VzpzOC05URfde7INIdiJT65DkHzgdJ64/QeYggU8A== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" -"@csstools/postcss-progressive-custom-properties@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.0.1.tgz#15251d880d60850df42deeb7702aab6c50ab74e7" - integrity sha512-yfdEk8o3CWPTusoInmGpOVCcMg1FikcKZyYB5ApULg9mES4FTGNuHK3MESscmm64yladcLNkPlz26O7tk3LMbA== +"@csstools/postcss-progressive-custom-properties@^3.0.2", "@csstools/postcss-progressive-custom-properties@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.0.3.tgz#8e0b61c204e80a3b4f82818f9738accb06894a06" + integrity sha512-WipTVh6JTMQfeIrzDV4wEPsV9NTzMK2jwXxyH6CGBktuWdivHnkioP/smp1x/0QDPQyx7NTS14RB+GV3zZZYEw== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-relative-color-syntax@^2.0.4": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.6.tgz#f446d47f952844ff57871f102a47d5ed9f3c11be" - integrity sha512-GAtXFxhKRWtPOV0wJ7ENCPZUSxJtVzsDvSCzTs8aaU1g1634SlpJWVNEDuVHllzJAWk/CB97p2qkDU3jITPL3A== +"@csstools/postcss-relative-color-syntax@^2.0.7": + version "2.0.9" + resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.9.tgz#6a6c5361a6ec02459e024fa2b769aa52f392038e" + integrity sha512-2UoaRd2iIuzUGtYgteN5fJ0s+OfCiV7PvCnw8MCh3om8+SeVinfG8D5sqBOvImxFVfrp6k60XF5RFlH6oc//fg== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" "@csstools/postcss-scope-pseudo-class@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-3.0.0.tgz#23f32181b7de9a33e7c7c71f7620b78284955b82" - integrity sha512-GFNVsD97OuEcfHmcT0/DAZWAvTM/FFBDQndIOLawNc1Wq8YqpZwBdHa063Lq+Irk7azygTT+Iinyg3Lt76p7rg== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-3.0.1.tgz#c5454ea2fb3cf9beaf212d3a631a5c18cd4fbc14" + integrity sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A== dependencies: postcss-selector-parser "^6.0.13" -"@csstools/postcss-stepped-value-functions@^3.0.1": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.2.tgz#a902395efbf9c5c30a6d902a7c65549fb3f49309" - integrity sha512-I3wX44MZVv+tDuWfrd3BTvRB/YRIM2F5v1MBtTI89sxpFn47mNpTwpPYUOGPVCgKlRDfZSlxIUYhUQmqRQZZFQ== +"@csstools/postcss-stepped-value-functions@^3.0.2": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.4.tgz#a97ae4d77dea36bb93b611712f872821ed796515" + integrity sha512-gyNQ2YaOVXPqLR737XtReRPVu7DGKBr9JBDLoiH1T+N1ggV3r4HotRCOC1l6rxVC0zOuU1KiOzUn9Z5W838/rg== dependencies: - "@csstools/css-calc" "^1.1.4" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-calc" "^1.1.6" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" "@csstools/postcss-text-decoration-shorthand@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.3.tgz#e0708cf41f94013837edca1c6db23d5d6dd3c10e" - integrity sha512-d5J9m49HhqXRcw1S6vTZuviHi/iknUKGjBpChiNK1ARg9sSa3b8m5lsWz5Izs8ISORZdv2bZRwbw5Z2R6gQ9kQ== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.4.tgz#b8c5216faa2c9d8a05b3f93da7b403dd5dd53a79" + integrity sha512-yUZmbnUemgQmja7SpOZeU45+P49wNEgQguRdyTktFkZsHf7Gof+ZIYfvF6Cm+LsU1PwSupy4yUeEKKjX5+k6cQ== dependencies: - "@csstools/color-helpers" "^3.0.2" + "@csstools/color-helpers" "^4.0.0" postcss-value-parser "^4.2.0" -"@csstools/postcss-trigonometric-functions@^3.0.1": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.2.tgz#b03d045015fc6e16d81e36e5783c545b5590a2f2" - integrity sha512-AwzNhF4QOKaLOKvMljwwFkeYXwufhRO15G+kKohHkyoNOL75xWkN+W2Y9ik9tSeAyDv+cYNlYaF+o/a79WjVjg== +"@csstools/postcss-trigonometric-functions@^3.0.2": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.4.tgz#23a5887f3c74c276a84ba66b9a963ea1731b531a" + integrity sha512-qj4Cxth6c38iNYzfJJWAxt8jsLrZaMVmbfGDDLOlI2YJeZoC3A5Su6/Kr7oXaPFRuspUu+4EQHngOktqVHWfVg== dependencies: - "@csstools/css-calc" "^1.1.4" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" + "@csstools/css-calc" "^1.1.6" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" "@csstools/postcss-unset-value@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.0.tgz#6d2f08140b41d3e70d805ccd2baaf64a6f59fdac" - integrity sha512-P0JD1WHh3avVyKKRKjd0dZIjCEeaBer8t1BbwGMUDtSZaLhXlLNBqZ8KkqHzYWXOJgHleXAny2/sx8LYl6qhEA== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.1.tgz#598a25630fd9ab0edf066d235916f7441404942a" + integrity sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg== -"@csstools/selector-specificity@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz#798622546b63847e82389e473fd67f2707d82247" - integrity sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g== +"@csstools/selector-specificity@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.1.tgz#d84597fbc0f897240c12fc0a31e492b036c70e40" + integrity sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww== "@discoveryjs/json-ext@^0.5.0": version "0.5.7" @@ -1203,9 +1230,9 @@ "@jridgewell/trace-mapping" "^0.3.9" "@jridgewell/resolve-uri@^3.1.0": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== "@jridgewell/set-array@^1.0.1": version "1.1.2" @@ -1225,10 +1252,10 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.19" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" - integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.22" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz#72a621e5de59f5f1ef792d0793a82ee20f645e4c" + integrity sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" @@ -1302,57 +1329,59 @@ integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== "@types/archiver@^5.3.1": - version "5.3.3" - resolved "https://registry.yarnpkg.com/@types/archiver/-/archiver-5.3.3.tgz#9cb632a67060602b1658c669b498d51dd8ce08ab" - integrity sha512-0ABdVcXL6jOwNGY+hjWPqrxUvKelBEwNLcuv/SV2vZ4YCH8w9NttFCt+/QqI5zgMX+iX/XqVy89/r7EmLJmMpQ== + version "5.3.4" + resolved "https://registry.yarnpkg.com/@types/archiver/-/archiver-5.3.4.tgz#32172d5a56f165b5b4ac902e366248bf03d3ae84" + integrity sha512-Lj7fLBIMwYFgViVVZHEdExZC3lVYsl+QL0VmdNdIzGZH544jHveYWij6qdnBgJQDnR7pMKliN9z2cPZFEbhyPw== dependencies: "@types/readdir-glob" "*" "@types/eslint-scope@^3.7.3": - version "3.7.5" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.5.tgz#e28b09dbb1d9d35fdfa8a884225f00440dfc5a3e" - integrity sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA== + version "3.7.7" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5" + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== dependencies: "@types/eslint" "*" "@types/estree" "*" "@types/eslint@*": - version "8.44.3" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.3.tgz#96614fae4875ea6328f56de38666f582d911d962" - integrity sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g== + version "8.56.2" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.2.tgz#1c72a9b794aa26a8b94ad26d5b9aa51c8a6384bb" + integrity sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw== dependencies: "@types/estree" "*" "@types/json-schema" "*" -"@types/estree@*", "@types/estree@^1.0.0": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.2.tgz#ff02bc3dc8317cd668dfec247b750ba1f1d62453" - integrity sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA== +"@types/estree@*", "@types/estree@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== "@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.13" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85" - integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ== + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/minimist@^1.2.0": - version "1.2.3" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.3.tgz#dd249cef80c6fff2ba6a0d4e5beca913e04e25f8" - integrity sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A== + version "1.2.5" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" + integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== "@types/node@*": - version "20.8.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.2.tgz#d76fb80d87d0d8abfe334fc6d292e83e5524efc4" - integrity sha512-Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w== + version "20.11.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.17.tgz#cdd642d0e62ef3a861f88ddbc2b61e32578a9292" + integrity sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw== + dependencies: + undici-types "~5.26.4" "@types/normalize-package-data@^2.4.0": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz#9b0e3e8533fe5024ad32d6637eb9589988b6fdca" - integrity sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A== + version "2.4.4" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== "@types/readdir-glob@*": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@types/readdir-glob/-/readdir-glob-1.1.2.tgz#688a206aa258a3a5d17c7b053da3b9e04eabf431" - integrity sha512-vwAYrNN/8yhp/FJRU6HUSD0yk6xfoOS8HrZa8ZL7j+X8hJpaC1hTcAiXX2IxaAkkvrz9mLyoEhYZTE3cEYvA9Q== + version "1.1.5" + resolved "https://registry.yarnpkg.com/@types/readdir-glob/-/readdir-glob-1.1.5.tgz#21a4a98898fc606cb568ad815f2a0eedc24d412a" + integrity sha512-raiuEPUYqXu+nvtY2Pe8s8FEmZ3x5yAH4VkLdihcPdalvsHltomrRC9BzuStrJ9yk06470hS0Crw0f1pXqD+Hg== dependencies: "@types/node" "*" @@ -1513,9 +1542,9 @@ acorn-import-assertions@^1.9.0: integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== acorn@^8.7.1, acorn@^8.8.2: - version "8.10.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" - integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + version "8.11.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== agent-base@6, agent-base@^6.0.2: version "6.0.2" @@ -1676,18 +1705,18 @@ async-foreach@^0.1.3: integrity sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA== async@^3.2.4: - version "3.2.4" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" - integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== - -autoprefixer@^10.4.15: - version "10.4.16" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.16.tgz#fad1411024d8670880bdece3970aa72e3572feb8" - integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ== - dependencies: - browserslist "^4.21.10" - caniuse-lite "^1.0.30001538" - fraction.js "^4.3.6" + version "3.2.5" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" + integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== + +autoprefixer@^10.4.16: + version "10.4.17" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.17.tgz#35cd5695cbbe82f536a50fa025d561b01fdec8be" + integrity sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg== + dependencies: + browserslist "^4.22.2" + caniuse-lite "^1.0.30001578" + fraction.js "^4.3.7" normalize-range "^0.1.2" picocolors "^1.0.0" postcss-value-parser "^4.2.0" @@ -1700,29 +1729,29 @@ babel-loader@^9.1.2: find-cache-dir "^4.0.0" schema-utils "^4.0.0" -babel-plugin-polyfill-corejs2@^0.4.5: - version "0.4.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" - integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== +babel-plugin-polyfill-corejs2@^0.4.8: + version "0.4.8" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz#dbcc3c8ca758a290d47c3c6a490d59429b0d2269" + integrity sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.4.2" + "@babel/helper-define-polyfill-provider" "^0.5.0" semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.8.3: - version "0.8.4" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.4.tgz#1fac2b1dcef6274e72b3c72977ed8325cb330591" - integrity sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg== +babel-plugin-polyfill-corejs3@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz#9eea32349d94556c2ad3ab9b82ebb27d4bf04a81" + integrity sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - core-js-compat "^3.32.2" + "@babel/helper-define-polyfill-provider" "^0.5.0" + core-js-compat "^3.34.0" -babel-plugin-polyfill-regenerator@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" - integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== +babel-plugin-polyfill-regenerator@^0.5.5: + version "0.5.5" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz#8b0c8fc6434239e5d7b8a9d1f832bb2b0310f06a" + integrity sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" + "@babel/helper-define-polyfill-provider" "^0.5.0" balanced-match@^1.0.0: version "1.0.2" @@ -1775,14 +1804,14 @@ braces@^3.0.2: dependencies: fill-range "^7.0.1" -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.21.9, browserslist@^4.22.1: - version "4.22.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619" - integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ== +browserslist@^4.0.0, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.1, browserslist@^4.22.2, browserslist@^4.22.3: + version "4.23.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" + integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== dependencies: - caniuse-lite "^1.0.30001541" - electron-to-chromium "^1.4.535" - node-releases "^2.0.13" + caniuse-lite "^1.0.30001587" + electron-to-chromium "^1.4.668" + node-releases "^2.0.14" update-browserslist-db "^1.0.13" buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: @@ -1880,10 +1909,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001541: - version "1.0.30001546" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001546.tgz#10fdad03436cfe3cc632d3af7a99a0fb497407f0" - integrity sha512-zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001587: + version "1.0.30001587" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz#a0bce920155fa56a1885a69c74e1163fc34b4881" + integrity sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA== chalk@^2.4.2: version "2.4.2" @@ -2019,19 +2048,19 @@ convert-source-map@^2.0.0: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -core-js-compat@^3.31.0, core-js-compat@^3.32.2: - version "3.33.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.33.0.tgz#24aa230b228406450b2277b7c8bfebae932df966" - integrity sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw== +core-js-compat@^3.31.0, core-js-compat@^3.34.0: + version "3.36.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.36.0.tgz#087679119bc2fdbdefad0d45d8e5d307d45ba190" + integrity sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw== dependencies: - browserslist "^4.22.1" + browserslist "^4.22.3" core-util-is@~1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== -cosmiconfig@^8.2.0: +cosmiconfig@^8.3.5: version "8.3.6" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== @@ -2064,9 +2093,9 @@ cross-spawn@^7.0.3: which "^2.0.1" css-blank-pseudo@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-6.0.0.tgz#2bc6f812a5f60296c04c55b1696bad4300dcdbcc" - integrity sha512-VbfLlOWO7sBHBTn6pwDQzc07Z0SDydgDBfNfCE0nvrehdBNv9RKsuupIRa/qal0+fBZhAALyQDPMKz5lnvcchw== + version "6.0.1" + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-6.0.1.tgz#f79f8b84cc00f891e16aa85f14093c5e1c3499a8" + integrity sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw== dependencies: postcss-selector-parser "^6.0.13" @@ -2076,32 +2105,32 @@ css-declaration-sorter@^6.3.1: integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== css-has-pseudo@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-6.0.0.tgz#b8c8f39a19bc83c5be59fd251510a7e443c47968" - integrity sha512-X+r+JBuoO37FBOWVNhVJhxtSBUFHgHbrcc0CjFT28JEdOw1qaDwABv/uunyodUuSy2hMPe9j/HjssxSlvUmKjg== + version "6.0.1" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-6.0.1.tgz#05be77f1414315c3880a1fcc96a72471af4a8ecf" + integrity sha512-WwoVKqNxApfEI7dWFyaHoeFCcUPD+lPyjL6lNpRUNX7IyIUuVpawOTwwA5D0ZR6V2xQZonNPVj8kEcxzEaAQfQ== dependencies: - "@csstools/selector-specificity" "^3.0.0" + "@csstools/selector-specificity" "^3.0.1" postcss-selector-parser "^6.0.13" postcss-value-parser "^4.2.0" css-loader@^6.8.1: - version "6.8.1" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.8.1.tgz#0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88" - integrity sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g== + version "6.10.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.10.0.tgz#7c172b270ec7b833951b52c348861206b184a4b7" + integrity sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw== dependencies: icss-utils "^5.1.0" - postcss "^8.4.21" + postcss "^8.4.33" postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.3" - postcss-modules-scope "^3.0.0" + postcss-modules-local-by-default "^4.0.4" + postcss-modules-scope "^3.1.1" postcss-modules-values "^4.0.0" postcss-value-parser "^4.2.0" - semver "^7.3.8" + semver "^7.5.4" css-prefers-color-scheme@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.0.tgz#7e9b74062655ea15490e359cb456a3b9f4c93327" - integrity sha512-03QGAk/FXIRseDdLb7XAiu6gidQ0Nd8945xuM7VFVPpc6goJsG9uIO8xQjTxwbPdPIIV4o4AJoOJyt8gwDl67g== + version "9.0.1" + resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.1.tgz#30fcb94cc38b639b66fb99e1882ffd97f741feaa" + integrity sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g== css-select@^4.1.3: version "4.3.0" @@ -2127,10 +2156,10 @@ css-what@^6.0.1: resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== -cssdb@^7.7.2: - version "7.7.2" - resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.7.2.tgz#fbebd90edfc6af129fda4fd986f9dd604a209094" - integrity sha512-pQPYP7/kch4QlkTcLuUNiNL2v/E+O+VIdotT+ug62/+2B2/jkzs5fMM6RHCzGCZ9C82pODEMSIzRRUzJOrl78g== +cssdb@^7.9.0: + version "7.10.0" + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.10.0.tgz#08816db7b793f088263e8f61dfe8d7f11a3459f2" + integrity sha512-yGZ5tmA57gWh/uvdQBHs45wwFY0IBh3ypABk5sEubPBPSzXzkNgsWReqx7gdx6uhC+QoFBe+V8JwBB9/hQ6cIA== cssesc@^3.0.0: version "3.0.0" @@ -2193,7 +2222,7 @@ csso@^4.2.0: dependencies: css-tree "^1.1.2" -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.3: +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -2214,9 +2243,9 @@ decamelize@^1.1.0, decamelize@^1.2.0: integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decanter@^6.2.14: - version "6.3.0" - resolved "https://registry.yarnpkg.com/decanter/-/decanter-6.3.0.tgz#31fbbca080cf174ed30a83f0614f15fbbcc01253" - integrity sha512-dzP4GE1yZsesN08OShRJBkHBu2FspUXmn7pXoMhyi9YD2rTaRujU2jV0wL6agL7vZAdXJGlhnfSPlSqXxTAVtg== + version "6.3.3" + resolved "https://registry.yarnpkg.com/decanter/-/decanter-6.3.3.tgz#86a872b842642df2ebbe0eba5ec326eebaa46530" + integrity sha512-EubzQRguF79EDr4BHi4vQH6jSR3t1fIJNsjKv/cKDGmglF5JZpBmbraypdXDt3xkF64okCZcLViae2dN5Scl6w== dependencies: "@fortawesome/fontawesome-free" "^5.15" bourbon "^6.0" @@ -2277,10 +2306,10 @@ domutils@^2.8.0: domelementtype "^2.2.0" domhandler "^4.2.0" -electron-to-chromium@^1.4.535: - version "1.4.542" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.542.tgz#9bfe19d8ddafc2591e4a17d04e60a5f5acc54965" - integrity sha512-6+cpa00G09N3sfh2joln4VUXHquWrOFx3FLZqiVQvl45+zS9DskDBTPvob+BhvFRmTBkyDSk0vvLMMRo/qc6mQ== +electron-to-chromium@^1.4.668: + version "1.4.669" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.669.tgz#37e9cc16cc2fbdd8e06a46fc1fd3a1249e091f64" + integrity sha512-E2SmpffFPrZhBSgf8ibqanRS2mpuk3FIRDzLDwt7WFpfgJMKDHJs0hmacyP0PS1cWsq0dVkwIIzlscNaterkPg== emoji-regex@^8.0.0: version "8.0.0" @@ -2320,9 +2349,9 @@ env-paths@^2.2.0: integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== envinfo@^7.7.3: - version "7.10.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13" - integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw== + version "7.11.1" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.1.tgz#2ffef77591057081b0129a8fd8cf6118da1b94e1" + integrity sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg== err-code@^2.0.2: version "2.0.3" @@ -2337,14 +2366,14 @@ error-ex@^1.3.1: is-arrayish "^0.2.1" es-module-lexer@^1.2.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz#c1b0dd5ada807a3b3155315911f364dc4e909db1" - integrity sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q== + version "1.4.1" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.4.1.tgz#41ea21b43908fe6a287ffcbe4300f790555331f5" + integrity sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w== escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== escape-string-regexp@^1.0.5: version "1.0.5" @@ -2392,9 +2421,9 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.12, fast-glob@^3.2.9: - version "3.3.1" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" - integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -2413,9 +2442,9 @@ fastest-levenshtein@^1.0.12: integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: reusify "^1.0.4" @@ -2464,10 +2493,15 @@ find-up@^6.3.0: locate-path "^7.1.0" path-exists "^5.0.0" -fraction.js@^4.3.6: - version "4.3.6" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.6.tgz#e9e3acec6c9a28cf7bc36cbe35eea4ceb2c5c92d" - integrity sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg== +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== fs-constants@^1.0.0: version "1.0.0" @@ -2495,6 +2529,11 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + gauge@^4.0.3: version "4.0.4" resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" @@ -2629,10 +2668,12 @@ has-unicode@^2.0.1: resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== -has@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.4.tgz#2eb2860e000011dae4f1406a86fe80e530fb2ec6" - integrity sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ== +hasown@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.1.tgz#26f48f039de2c0f8d3356c223fb8d50253519faa" + integrity sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA== + dependencies: + function-bind "^1.1.2" hosted-git-info@^2.1.4: version "2.8.9" @@ -2702,9 +2743,9 @@ ieee754@^1.1.13: integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore@^5.2.0: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== import-fresh@^3.3.0: version "3.3.0" @@ -2755,10 +2796,13 @@ interpret@^3.1.1: resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== +ip-address@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" + integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== + dependencies: + jsbn "1.1.0" + sprintf-js "^1.1.3" is-arrayish@^0.2.1: version "0.2.1" @@ -2766,11 +2810,11 @@ is-arrayish@^0.2.1: integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-core-module@^2.13.0, is-core-module@^2.5.0: - version "2.13.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" - integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: - has "^1.0.3" + hasown "^2.0.0" is-extglob@^2.1.1: version "2.1.1" @@ -2845,10 +2889,10 @@ jest-worker@^27.4.5: merge-stream "^2.0.0" supports-color "^8.0.0" -jiti@^1.18.2: - version "1.20.0" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.20.0.tgz#2d823b5852ee8963585c8dd8b7992ffc1ae83b42" - integrity sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA== +jiti@^1.20.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== js-base64@^2.4.9: version "2.6.4" @@ -2867,6 +2911,11 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" @@ -3132,11 +3181,12 @@ min-indent@^1.0.0: integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== mini-css-extract-plugin@^2.7.6: - version "2.7.6" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d" - integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw== + version "2.8.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.0.tgz#1aeae2a90a954b6426c9e8311eab36b450f553a0" + integrity sha512-CxmUYPFcTgET1zImteG/LZOy/4T5rTojesQXkSNBiquhydn78tfbCE9sjIjnJ/UcjNjOC1bphTCCW5rrS7cXAg== dependencies: schema-utils "^4.0.0" + tapable "^2.2.1" minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" @@ -3258,10 +3308,10 @@ nan@^2.17.0: resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== negotiator@^0.6.2, negotiator@^0.6.3: version "0.6.3" @@ -3289,10 +3339,10 @@ node-gyp@^8.4.1: tar "^6.1.2" which "^2.0.2" -node-releases@^2.0.13: - version "2.0.13" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" - integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== node-sass@^9.0.0: version "9.0.0" @@ -3522,25 +3572,27 @@ postcss-clamp@^4.1.0: dependencies: postcss-value-parser "^4.2.0" -postcss-color-functional-notation@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.1.tgz#b67d7c71fa1c82b09c130e02a37f0b6ceacbef63" - integrity sha512-IouVx77fASIjOChWxkvOjYGnYNKq286cSiKFJwWNICV9NP2xZWVOS9WOriR/8uIB2zt/44bzQyw4GteCLpP2SA== +postcss-color-functional-notation@^6.0.2: + version "6.0.4" + resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.4.tgz#2f1f8390d8d508713e43802230bf3ae0173622a7" + integrity sha512-YBzfVvVUNR4U3N0imzU1NPKCuwxzfHJkEP6imJxzsJ8LozRKeej9mWmg9Ef1ovJdb0xrGTRVzUxgTrMun5iw/Q== dependencies: - "@csstools/postcss-progressive-custom-properties" "^3.0.1" - postcss-value-parser "^4.2.0" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" postcss-color-hex-alpha@^9.0.2: - version "9.0.2" - resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.2.tgz#6d3ed50342802469880981a1999515d003ff7d79" - integrity sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg== + version "9.0.3" + resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.3.tgz#b7f0d3829218608c0d219e25aa06b1216393c69e" + integrity sha512-7sEHU4tAS6htlxun8AB9LDrCXoljxaC34tFVRlYKcvO+18r5fvGiXgv5bQzN40+4gXLCyWSMRK5FK31244WcCA== dependencies: postcss-value-parser "^4.2.0" postcss-color-rebeccapurple@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-9.0.1.tgz#d1266b9a9571ca478c8ce7ad97a15727eac3c6b2" - integrity sha512-ds4cq5BjRieizVb2PnvbJ0omg9VCo2/KzluvoFZbxuGpsGJ5BQSD93CHBooinEtangCM5YqUOerGDl4xGmOb6Q== + version "9.0.2" + resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-9.0.2.tgz#a5c7e605631eff2a7a230535bcf6aba29de4a270" + integrity sha512-f+RDEAPW2m8UbJWkSpRfV+QxhSaQhDMihI75DVGJJh4oRIoegjheeRtINFJum9D8BqGJcvD4GLjggTvCwZ4zuA== dependencies: postcss-value-parser "^4.2.0" @@ -3562,40 +3614,40 @@ postcss-convert-values@^5.1.3: browserslist "^4.21.4" postcss-value-parser "^4.2.0" -postcss-custom-media@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-10.0.1.tgz#48a4597451a69b1098e6eb11eb1166202171f9ed" - integrity sha512-fil7cosvzlIAYmZJPtNFcTH0Er7a3GveEK4q5Y/L24eWQHmiw8Fv/E5DMkVpdbNjkGzJxrvowOSt/Il9HZ06VQ== - dependencies: - "@csstools/cascade-layer-name-parser" "^1.0.4" - "@csstools/css-parser-algorithms" "^2.3.1" - "@csstools/css-tokenizer" "^2.2.0" - "@csstools/media-query-list-parser" "^2.1.4" - -postcss-custom-properties@^13.3.1: - version "13.3.2" - resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-13.3.2.tgz#88952f883003d897ade5c836e1e005b09a12f02b" - integrity sha512-2Coszybpo8lpLY24vy2CYv9AasiZ39/bs8Imv0pWMq55Gl8NWzfc24OAo3zIX7rc6uUJAqESnVOMZ6V6lpMjJA== +postcss-custom-media@^10.0.2: + version "10.0.2" + resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-10.0.2.tgz#70a244bbc59fc953ab6573e4e2c9624639aef08a" + integrity sha512-zcEFNRmDm2fZvTPdI1pIW3W//UruMcLosmMiCdpQnrCsTRzWlKQPYMa1ud9auL0BmrryKK1+JjIGn19K0UjO/w== dependencies: "@csstools/cascade-layer-name-parser" "^1.0.5" "@csstools/css-parser-algorithms" "^2.3.2" "@csstools/css-tokenizer" "^2.2.1" + "@csstools/media-query-list-parser" "^2.1.5" + +postcss-custom-properties@^13.3.2: + version "13.3.4" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-13.3.4.tgz#0ad5be700b692e0288ce3b2b406eac964244f197" + integrity sha512-9YN0gg9sG3OH+Z9xBrp2PWRb+O4msw+5Sbp3ZgqrblrwKspXVQe5zr5sVqi43gJGwW/Rv1A483PRQUzQOEewvA== + dependencies: + "@csstools/cascade-layer-name-parser" "^1.0.7" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" postcss-value-parser "^4.2.0" -postcss-custom-selectors@^7.1.5: - version "7.1.5" - resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-7.1.5.tgz#74e99ef5d7a3f84aaab246ba086975e8279b686e" - integrity sha512-0UYtz7GG10bZrRiUdZ/2Flt+hp5p/WP0T7JgAPZ/Xhgb0wFjW/p7QOjE+M58S9Z3x11P9YaNPcrsoOGewWYkcw== +postcss-custom-selectors@^7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-7.1.6.tgz#6d28812998dcd48f61a6a538141fc16cf2c42123" + integrity sha512-svsjWRaxqL3vAzv71dV0/65P24/FB8TbPX+lWyyf9SZ7aZm4S4NhCn7N3Bg+Z5sZunG3FS8xQ80LrCU9hb37cw== dependencies: - "@csstools/cascade-layer-name-parser" "^1.0.4" - "@csstools/css-parser-algorithms" "^2.3.1" - "@csstools/css-tokenizer" "^2.2.0" + "@csstools/cascade-layer-name-parser" "^1.0.5" + "@csstools/css-parser-algorithms" "^2.3.2" + "@csstools/css-tokenizer" "^2.2.1" postcss-selector-parser "^6.0.13" postcss-dir-pseudo-class@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.0.tgz#9e4e37d170f672520d3f38fd8376db0ca04d4e9c" - integrity sha512-Oy5BBi0dWPwij/IA+yDYj+/OBMQ9EPqAzTHeSNUYrUWdll/PRJmcbiUj0MNcsBi681I1gcSTLvMERPaXzdbvJg== + version "8.0.1" + resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.1.tgz#b93755f52fb90215301b1d3ecb7c5e6416930a1e" + integrity sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw== dependencies: postcss-selector-parser "^6.0.13" @@ -3619,25 +3671,25 @@ postcss-discard-overridden@^5.1.0: resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== -postcss-double-position-gradients@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.1.tgz#5f28489f5b33ce5e1e97bf1ea6b62cd7a5f9c0c2" - integrity sha512-ogcHzfC5q4nfySyZyNF7crvK3/MRDTh+akzE+l7bgJUjVkhgfahBuI+ZAm/5EeaVSVKnCOgqtC6wTyUFgLVLTw== +postcss-double-position-gradients@^5.0.2: + version "5.0.3" + resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.3.tgz#9345b273bd16056665209ce260be0d36ac211f65" + integrity sha512-QKYpwmaSm6HcdS0ndAuWSNNMv78R1oSySoh3mYBmctHWr2KWcwPJVakdOyU4lvFVW0GRu9wfIQwGeM4p3xU9ow== dependencies: - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" postcss-value-parser "^4.2.0" postcss-focus-visible@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-9.0.0.tgz#a81227428d6f1e524099c6581f7c7132f987e382" - integrity sha512-zA4TbVaIaT8npZBEROhZmlc+GBKE8AELPHXE7i4TmIUEQhw/P/mSJfY9t6tBzpQ1rABeGtEOHYrW4SboQeONMQ== + version "9.0.1" + resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-9.0.1.tgz#eede1032ce86b3bb2556d93ca5df63c68dfc2559" + integrity sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ== dependencies: postcss-selector-parser "^6.0.13" postcss-focus-within@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-8.0.0.tgz#8304380dd2dadc1c2dcfa52816ff86be7736fc16" - integrity sha512-E7+J9nuQzZaA37D/MUZMX1K817RZGDab8qw6pFwzAkDd/QtlWJ9/WTKmzewNiuxzeq6WWY7ATiRePVoDKp+DnA== + version "8.0.1" + resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-8.0.1.tgz#524af4c7eabae35cb1efa220a7903016fcc897fa" + integrity sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA== dependencies: postcss-selector-parser "^6.0.13" @@ -3647,40 +3699,40 @@ postcss-font-variant@^5.0.0: integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA== postcss-gap-properties@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-5.0.0.tgz#3bd77f3d51facb1da404b4edd72b8203929385a5" - integrity sha512-YjsEEL6890P7MCv6fch6Am1yq0EhQCJMXyT4LBohiu87+4/WqR7y5W3RIv53WdA901hhytgRvjlrAhibhW4qsA== + version "5.0.1" + resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-5.0.1.tgz#887b64655f42370b43f0ab266cc6dbabf504d276" + integrity sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw== postcss-image-set-function@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-6.0.1.tgz#e2bba0a0536a0c70f63933f7c5df68742e9615ca" - integrity sha512-VlZncC9hhZ5tg0JllY4g6Z28BeoPO8DIkelioEEkXL0AA0IORlqYpTi2L8TUnl4YQrlwvBgxVy+mdZJw5R/cIQ== + version "6.0.2" + resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-6.0.2.tgz#ddf62a4468207ce7de2f99154325adbe6c95c032" + integrity sha512-/O1xwqpJiz/apxGQi7UUfv1xUcorvkHZfvCYHPpRxxZj2WvjD0rg0+/+c+u5/Do5CpUg3XvfYxMrhcnjW1ArDQ== dependencies: postcss-value-parser "^4.2.0" -postcss-lab-function@^6.0.4: - version "6.0.6" - resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-6.0.6.tgz#e945326d3ec5b87e9c2dd89d8fcbbb9d05f10dd9" - integrity sha512-hZtIi0HPZg0Jc2Q7LL3TossaboSQVINYLT8zNRzp6zumjipl8vi80F2pNLO3euB4b8cRh6KlGdWKO0Q29pqtjg== +postcss-lab-function@^6.0.7: + version "6.0.9" + resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-6.0.9.tgz#9ef00afba26703a1a3d83d502401a66a98eabb96" + integrity sha512-PKFAVTBEWJYsoSTD7Kp/OzeiMsXaLX39Pv75XgUyF5VrbMfeTw+JqCGsvDP3dPhclh6BemdCFHcjXBG9gO4UCg== dependencies: - "@csstools/css-color-parser" "^1.3.3" - "@csstools/css-parser-algorithms" "^2.3.2" - "@csstools/css-tokenizer" "^2.2.1" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" + "@csstools/css-color-parser" "^1.5.1" + "@csstools/css-parser-algorithms" "^2.5.0" + "@csstools/css-tokenizer" "^2.2.3" + "@csstools/postcss-progressive-custom-properties" "^3.0.3" postcss-loader@^7.3.2: - version "7.3.3" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.3.3.tgz#6da03e71a918ef49df1bb4be4c80401df8e249dd" - integrity sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA== + version "7.3.4" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.3.4.tgz#aed9b79ce4ed7e9e89e56199d25ad1ec8f606209" + integrity sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A== dependencies: - cosmiconfig "^8.2.0" - jiti "^1.18.2" - semver "^7.3.8" + cosmiconfig "^8.3.5" + jiti "^1.20.0" + semver "^7.5.4" postcss-logical@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-7.0.0.tgz#9a83426e716e3c8f957dda3fd874edbcf22c754e" - integrity sha512-zYf3vHkoW82f5UZTEXChTJvH49Yl9X37axTZsJGxrCG2kOUwtaAoz9E7tqYg0lsIoJLybaL8fk/2mOi81zVIUw== + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-7.0.1.tgz#a3121f6510591b195321b16e65fbe13b1cfd3115" + integrity sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg== dependencies: postcss-value-parser "^4.2.0" @@ -3739,19 +3791,19 @@ postcss-modules-extract-imports@^3.0.0: resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== -postcss-modules-local-by-default@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" - integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== +postcss-modules-local-by-default@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz#7cbed92abd312b94aaea85b68226d3dec39a14e6" + integrity sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q== dependencies: icss-utils "^5.0.0" postcss-selector-parser "^6.0.2" postcss-value-parser "^4.1.0" -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== +postcss-modules-scope@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz#32cfab55e84887c079a19bbb215e721d683ef134" + integrity sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA== dependencies: postcss-selector-parser "^6.0.4" @@ -3763,11 +3815,11 @@ postcss-modules-values@^4.0.0: icss-utils "^5.0.0" postcss-nesting@^12.0.1: - version "12.0.1" - resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.0.1.tgz#abb76d15dfd59a9f7d03b4464f53b60a4d3795c4" - integrity sha512-6LCqCWP9pqwXw/njMvNK0hGY44Fxc4B2EsGbn6xDcxbNRzP8GYoxT7yabVVMLrX3quqOJ9hg2jYMsnkedOf8pA== + version "12.0.2" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.0.2.tgz#cb92061347db3e7c38c174c97cb01feff2eef439" + integrity sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ== dependencies: - "@csstools/selector-specificity" "^3.0.0" + "@csstools/selector-specificity" "^3.0.1" postcss-selector-parser "^6.0.13" postcss-normalize-charset@^5.1.0: @@ -3847,9 +3899,9 @@ postcss-ordered-values@^5.1.3: postcss-value-parser "^4.2.0" postcss-overflow-shorthand@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.0.tgz#1ed6d6c532cdf52b5dabec06662dc63f9207855c" - integrity sha512-2rlxDyeSics/hC2FuMdPnWiP9WUPZ5x7FTuArXLFVpaSQ2woPSfZS4RD59HuEokbZhs/wPUQJ1E3MT6zVv94MQ== + version "5.0.1" + resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.1.tgz#c0a124edad4f7ad88109275a60510e1fb07ab833" + integrity sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ== dependencies: postcss-value-parser "^4.2.0" @@ -3859,64 +3911,67 @@ postcss-page-break@^3.0.4: integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ== postcss-place@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-9.0.0.tgz#7e47851bf40d16ce06f6013453b706100ca6c102" - integrity sha512-qLEPD9VPH5opDVemwmRaujODF9nExn24VOC3ghgVLEvfYN7VZLwJHes0q/C9YR5hI2UC3VgBE8Wkdp1TxCXhtg== + version "9.0.1" + resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-9.0.1.tgz#c08c46a94e639c1ee3457ac96d50c50a89bd6ac3" + integrity sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q== dependencies: postcss-value-parser "^4.2.0" postcss-preset-env@^9.1.4: - version "9.1.4" - resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-9.1.4.tgz#9a4b0b7ac2b2eb2b319fc76fd4ede0dd3e61a524" - integrity sha512-k2scWtmYBZhjAzMJw8Fgc4hnfkZa4KpPjK0z6+tTAJ4/3ZAmaJJ1VBQ9T7OS0qvper8AyD+kqN2UB2tYFQ4eeA== - dependencies: - "@csstools/postcss-cascade-layers" "^4.0.0" - "@csstools/postcss-color-function" "^3.0.4" - "@csstools/postcss-color-mix-function" "^2.0.4" - "@csstools/postcss-exponential-functions" "^1.0.0" + version "9.3.0" + resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-9.3.0.tgz#58f296087cf3dc18cb75af11954c6c5822220327" + integrity sha512-ycw6doPrqV6QxDCtgiyGDef61bEfiSc59HGM4gOw/wxQxmKnhuEery61oOC/5ViENz/ycpRsuhTexs1kUBTvVw== + dependencies: + "@csstools/postcss-cascade-layers" "^4.0.1" + "@csstools/postcss-color-function" "^3.0.7" + "@csstools/postcss-color-mix-function" "^2.0.7" + "@csstools/postcss-exponential-functions" "^1.0.1" "@csstools/postcss-font-format-keywords" "^3.0.0" - "@csstools/postcss-gradients-interpolation-method" "^4.0.4" - "@csstools/postcss-hwb-function" "^3.0.3" - "@csstools/postcss-ic-unit" "^3.0.1" + "@csstools/postcss-gamut-mapping" "^1.0.0" + "@csstools/postcss-gradients-interpolation-method" "^4.0.7" + "@csstools/postcss-hwb-function" "^3.0.6" + "@csstools/postcss-ic-unit" "^3.0.2" "@csstools/postcss-initial" "^1.0.0" - "@csstools/postcss-is-pseudo-class" "^4.0.2" + "@csstools/postcss-is-pseudo-class" "^4.0.3" "@csstools/postcss-logical-float-and-clear" "^2.0.0" + "@csstools/postcss-logical-overflow" "^1.0.0" + "@csstools/postcss-logical-overscroll-behavior" "^1.0.0" "@csstools/postcss-logical-resize" "^2.0.0" - "@csstools/postcss-logical-viewport-units" "^2.0.2" - "@csstools/postcss-media-minmax" "^1.0.7" - "@csstools/postcss-media-queries-aspect-ratio-number-values" "^2.0.2" + "@csstools/postcss-logical-viewport-units" "^2.0.3" + "@csstools/postcss-media-minmax" "^1.1.0" + "@csstools/postcss-media-queries-aspect-ratio-number-values" "^2.0.3" "@csstools/postcss-nested-calc" "^3.0.0" "@csstools/postcss-normalize-display-values" "^3.0.1" - "@csstools/postcss-oklab-function" "^3.0.4" - "@csstools/postcss-progressive-custom-properties" "^3.0.1" - "@csstools/postcss-relative-color-syntax" "^2.0.4" + "@csstools/postcss-oklab-function" "^3.0.7" + "@csstools/postcss-progressive-custom-properties" "^3.0.2" + "@csstools/postcss-relative-color-syntax" "^2.0.7" "@csstools/postcss-scope-pseudo-class" "^3.0.0" - "@csstools/postcss-stepped-value-functions" "^3.0.1" + "@csstools/postcss-stepped-value-functions" "^3.0.2" "@csstools/postcss-text-decoration-shorthand" "^3.0.3" - "@csstools/postcss-trigonometric-functions" "^3.0.1" + "@csstools/postcss-trigonometric-functions" "^3.0.2" "@csstools/postcss-unset-value" "^3.0.0" - autoprefixer "^10.4.15" - browserslist "^4.21.10" + autoprefixer "^10.4.16" + browserslist "^4.22.1" css-blank-pseudo "^6.0.0" css-has-pseudo "^6.0.0" css-prefers-color-scheme "^9.0.0" - cssdb "^7.7.2" + cssdb "^7.9.0" postcss-attribute-case-insensitive "^6.0.2" postcss-clamp "^4.1.0" - postcss-color-functional-notation "^6.0.1" + postcss-color-functional-notation "^6.0.2" postcss-color-hex-alpha "^9.0.2" postcss-color-rebeccapurple "^9.0.1" - postcss-custom-media "^10.0.1" - postcss-custom-properties "^13.3.1" - postcss-custom-selectors "^7.1.5" + postcss-custom-media "^10.0.2" + postcss-custom-properties "^13.3.2" + postcss-custom-selectors "^7.1.6" postcss-dir-pseudo-class "^8.0.0" - postcss-double-position-gradients "^5.0.1" + postcss-double-position-gradients "^5.0.2" postcss-focus-visible "^9.0.0" postcss-focus-within "^8.0.0" postcss-font-variant "^5.0.0" postcss-gap-properties "^5.0.0" postcss-image-set-function "^6.0.1" - postcss-lab-function "^6.0.4" + postcss-lab-function "^6.0.7" postcss-logical "^7.0.0" postcss-nesting "^12.0.1" postcss-opacity-percentage "^2.0.0" @@ -3929,9 +3984,9 @@ postcss-preset-env@^9.1.4: postcss-value-parser "^4.2.0" postcss-pseudo-class-any-link@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.0.tgz#5fb5b700e0ecdc845a94eb433b8ccff756cbf660" - integrity sha512-QNCYIL98VKFKY6HGDEJpF6+K/sg9bxcUYnOmNHJxZS5wsFDFaVoPeG68WAuhsqwbIBSo/b9fjEnTwY2mTSD+uA== + version "9.0.1" + resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.1.tgz#71c24a886765763d4e37e21a27ecc6f1c1a5d698" + integrity sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q== dependencies: postcss-selector-parser "^6.0.13" @@ -3963,9 +4018,9 @@ postcss-selector-not@^7.0.1: postcss-selector-parser "^6.0.10" postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: - version "6.0.13" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" - integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== + version "6.0.15" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz#11cc2b21eebc0b99ea374ffb9887174855a01535" + integrity sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -3990,12 +4045,12 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.2.1, postcss@^8.4.21: - version "8.4.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" - integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== +postcss@^8.2.1, postcss@^8.4.33: + version "8.4.35" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.35.tgz#60997775689ce09011edf083a549cea44aabe2f7" + integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== dependencies: - nanoid "^3.3.6" + nanoid "^3.3.7" picocolors "^1.0.0" source-map-js "^1.0.2" @@ -4018,9 +4073,9 @@ promise-retry@^2.0.1: retry "^0.12.0" punycode@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== queue-microtask@^1.2.2: version "1.2.3" @@ -4115,9 +4170,9 @@ regenerate@^1.4.2: integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== regenerator-runtime@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" - integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== regenerator-transform@^0.15.2: version "0.15.2" @@ -4173,9 +4228,9 @@ resolve-from@^5.0.0: integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0: - version "1.22.6" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" - integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: is-core-module "^2.13.0" path-parse "^1.0.7" @@ -4231,9 +4286,9 @@ sass-graph@^4.0.1: yargs "^17.2.1" sass-loader@^13.3.1: - version "13.3.2" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.2.tgz#460022de27aec772480f03de17f5ba88fa7e18c6" - integrity sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg== + version "13.3.3" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.3.tgz#60df5e858788cffb1a3215e5b92e9cba61e7e133" + integrity sha512-mt5YN2F1MOZr3d/wBRcZxeFgwgkH44wVc2zohO2YF6JiOMkiXe4BYRZpSu2sO1g71mo/j16txzUhsKZlqjVGzA== dependencies: neo-async "^2.6.2" @@ -4274,17 +4329,17 @@ semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.4, semver@^7.3.5, semver@^7.3.8: - version "7.5.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" - integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== +semver@^7.3.4, semver@^7.3.5, semver@^7.5.4: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== dependencies: lru-cache "^6.0.0" serialize-javascript@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" - integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== dependencies: randombytes "^2.1.0" @@ -4346,11 +4401,11 @@ socks-proxy-agent@^7.0.0: socks "^2.6.2" socks@^2.6.2: - version "2.7.1" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + version "2.7.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.3.tgz#7d8a75d7ce845c0a96f710917174dba0d543a785" + integrity sha512-vfuYK48HXCTFD03G/1/zkIls3Ebr2YNa4qU9gHDZdblHLiqhJrJGkY3+0Nx0JpN9qBhJbVObc1CNciT1bIZJxw== dependencies: - ip "^2.0.0" + ip-address "^9.0.5" smart-buffer "^4.2.0" source-list-map@^2.0.0: @@ -4390,9 +4445,9 @@ spdx-correct@^3.0.0: spdx-license-ids "^3.0.0" spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + version "2.4.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz#c07a4ede25b16e4f78e6707bbd84b15a45c19c1b" + integrity sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw== spdx-expression-parse@^3.0.0: version "3.0.1" @@ -4403,9 +4458,14 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.16" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz#a14f64e0954f6e25cc6587bd4f392522db0d998f" - integrity sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw== + version "3.0.17" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c" + integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== + +sprintf-js@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== ssri@^8.0.0, ssri@^8.0.1: version "8.0.1" @@ -4471,9 +4531,9 @@ strip-indent@^3.0.0: min-indent "^1.0.0" style-loader@^3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff" - integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw== + version "3.3.4" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.4.tgz#f30f786c36db03a45cbd55b6a70d930c479090e7" + integrity sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w== stylehacks@^5.1.1: version "5.1.1" @@ -4522,7 +4582,7 @@ svgo@^2.7.0: picocolors "^1.0.0" stable "^0.1.8" -tapable@^2.1.1, tapable@^2.2.0: +tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== @@ -4550,21 +4610,21 @@ tar@^6.0.2, tar@^6.1.11, tar@^6.1.2: mkdirp "^1.0.3" yallist "^4.0.0" -terser-webpack-plugin@^5.3.7: - version "5.3.9" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" - integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== +terser-webpack-plugin@^5.3.10: + version "5.3.10" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199" + integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== dependencies: - "@jridgewell/trace-mapping" "^0.3.17" + "@jridgewell/trace-mapping" "^0.3.20" jest-worker "^27.4.5" schema-utils "^3.1.1" serialize-javascript "^6.0.1" - terser "^5.16.8" + terser "^5.26.0" -terser@^5.16.8: - version "5.21.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.21.0.tgz#d2b27e92b5e56650bc83b6defa00a110f0b124b2" - integrity sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw== +terser@^5.26.0: + version "5.27.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.27.0.tgz#70108689d9ab25fef61c4e93e808e9fd092bf20c" + integrity sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -4608,6 +4668,11 @@ type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" @@ -4660,9 +4725,9 @@ unique-slug@^3.0.0: imurmurhash "^0.1.4" universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== update-browserslist-db@^1.0.13: version "1.0.13" @@ -4725,11 +4790,12 @@ webpack-fix-style-only-entries@^0.6.1: integrity sha512-wyIhoxS3DD3Fr9JA8hQPA+ZmaWnqPxx12Nv166wcsI/0fbReqyEtiIk2llOFYIg57WVS3XX5cZJxw2ji70R0sA== webpack-merge@^5.7.3: - version "5.9.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" - integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== + version "5.10.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.10.0.tgz#a3ad5d773241e9c682803abf628d4cd62b8a4177" + integrity sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA== dependencies: clone-deep "^4.0.1" + flat "^5.0.2" wildcard "^2.0.0" webpack-sources@^1.1.0: @@ -4746,18 +4812,18 @@ webpack-sources@^3.2.3: integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack@^5.85.0: - version "5.88.2" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.2.tgz#f62b4b842f1c6ff580f3fcb2ed4f0b579f4c210e" - integrity sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ== + version "5.90.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.90.1.tgz#62ab0c097d7cbe83d32523dbfbb645cdb7c3c01c" + integrity sha512-SstPdlAC5IvgFnhiRok8hqJo/+ArAbNv7rhU4fnWGHNVfN59HSQFaxZDSAL3IFG2YmqxuRs+IU33milSxbPlog== dependencies: "@types/eslint-scope" "^3.7.3" - "@types/estree" "^1.0.0" + "@types/estree" "^1.0.5" "@webassemblyjs/ast" "^1.11.5" "@webassemblyjs/wasm-edit" "^1.11.5" "@webassemblyjs/wasm-parser" "^1.11.5" acorn "^8.7.1" acorn-import-assertions "^1.9.0" - browserslist "^4.14.5" + browserslist "^4.21.10" chrome-trace-event "^1.0.2" enhanced-resolve "^5.15.0" es-module-lexer "^1.2.1" @@ -4771,7 +4837,7 @@ webpack@^5.85.0: neo-async "^2.6.2" schema-utils "^3.2.0" tapable "^2.1.1" - terser-webpack-plugin "^5.3.7" + terser-webpack-plugin "^5.3.10" watchpack "^2.4.0" webpack-sources "^3.2.3" diff --git a/modules/stanford_news/dist/css/news-list-item.css b/modules/stanford_news/dist/css/news-list-item.css index 3ca6e602..d3b7c732 100644 --- a/modules/stanford_news/dist/css/news-list-item.css +++ b/modules/stanford_news/dist/css/news-list-item.css @@ -1 +1 @@ -.field--name-su-news-view-field .stanford-news--cards-any,.field--name-su-news-view-field .stanford-news--list-any{margin-left:auto;margin-right:auto;max-width:1100px}@media only screen and (min-width:0){.section-stanford-news-views-header h1{margin-bottom:6.4rem;margin-top:8rem}}@media only screen and (min-width:768px){.section-stanford-news-views-header h1{margin-bottom:7.2rem;margin-top:9rem}}@media only screen and (min-width:1500px){.section-stanford-news-views-header h1{margin-bottom:7.6rem;margin-top:9.5rem}}@media only screen and (min-width:0){.section-news-views-views .main-region{padding-left:3.2rem}}@media only screen and (min-width:768px){.section-news-views-views .main-region{padding-left:3.6rem}}@media only screen and (min-width:1500px){.section-news-views-views .main-region{padding-left:3.8rem}}@media only screen and (min-width:0){.menu--news-topics{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.menu--news-topics{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.menu--news-topics{margin-bottom:6.08rem}}.su-news-list__item-date+.su-news-list__item .media{margin-top:-29px}@media (min-width:1200px){.views-infinite-scroll-content-wrapper div:first-child .su-news-list{padding-top:0}}.su-news-list{list-style:none;overflow:auto;padding-left:0}.su-news-list:first-of-type>article{padding-top:0}.su-news-list .su-news-list__item-date{grid-area:date}.su-news-list .image{grid-area:article-image}.su-news-list .su-news-list__headline-dek{grid-area:headline}@media (max-width:1199px){.su-news-list .su-news-list__header{-ms-grid-columns:100%;display:-ms-grid;display:grid;grid-template-areas:"date" "headline" "dek";grid-template-columns:100%}.su-news-list .su-news-list__item-date{-ms-grid-column:1;-ms-grid-row:1}.su-news-list .su-news-list__headline-dek{-ms-grid-column:1;-ms-grid-row:2}}@media (min-width:1200px){.su-news-list .su-news-list__header{-ms-grid-columns:65% 35%;display:-ms-grid;display:grid;grid-template-areas:"date date" "headline article-image" "headline article-image";grid-template-columns:65% 35%}.su-news-list .su-news-list__item-date{-ms-grid-column-span:2;-ms-grid-column:1;-ms-grid-row:1}.su-news-list .image{-ms-grid-row-span:2;-ms-grid-column:2;-ms-grid-row:2}.su-news-list .su-news-list__headline-dek{-ms-grid-row-span:2;-ms-grid-column:1;-ms-grid-row:2}}.su-news-list .su-news-list-image__empty .su-news-list__header{-ms-grid-columns:100%;display:-ms-grid;display:grid;grid-template-areas:"date" "headline" "dek";grid-template-columns:100%}.su-news-list .su-news-article{border-bottom:1px solid #d2d3d4;margin:0;padding:0}@media only screen and (min-width:0){.su-news-list .su-news-article{padding-bottom:5.12rem;padding-top:5.12rem}}@media only screen and (min-width:768px){.su-news-list .su-news-article{padding-bottom:5.76rem;padding-top:5.76rem}}@media only screen and (min-width:1500px){.su-news-list .su-news-article{padding-bottom:6.08rem;padding-top:6.08rem}}.su-news-list .su-news-list__item-date{-webkit-box-ordinal-group:0;-ms-flex-order:-1;font-size:1.8rem;line-height:1.3;order:-1}@media (max-width:767px){.su-news-list .su-news-list__item-date{font-size:1.6rem}}@media only screen and (min-width:0){.su-news-list .image .media{margin-left:4rem}}@media only screen and (min-width:768px){.su-news-list .image .media{margin-left:4.5rem}}@media only screen and (min-width:1500px){.su-news-list .image .media{margin-left:4.75rem}}@media (max-width:1199px){.su-news-list .image .media{display:none}}.su-news-list a{color:#006cb8;color:#b1040e;font-weight:600;text-decoration:underline;text-decoration:none}.su-news-list a:active,.su-news-list a:focus,.su-news-list a:hover{color:#2e2d29}.su-news-list a:active,.su-news-list a:focus,.su-news-list a:hover,.su-news-list a:visited{text-decoration:underline}.su-news-list h2{display:inline;font-size:1.5625em}@media only screen and (min-width:0){.su-news-list h2{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-news-list h2{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-news-list h2{margin-bottom:2.74rem}}.su-news-list h2:focus{outline:none}.su-news-list .su-link--external:after{background-color:#b1040e;height:1.8rem;width:1.8rem}@media only screen and (min-width:768px){.su-news-list .su-news-list__dek{font-size:2.1rem;line-height:1.7}}@media only screen and (min-width:0){.su-news-list .su-news-list__dek{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-news-list .su-news-list__dek{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-news-list .su-news-list__dek{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-news-list .su-news-list__dek{margin-top:1.07rem}}@media only screen and (min-width:768px){.su-news-list .su-news-list__dek{margin-top:1.2rem}}@media only screen and (min-width:1500px){.su-news-list .su-news-list__dek{margin-top:1.27rem}}.su-news-list ul{list-style:none;overflow:auto;padding-bottom:0;padding-left:0}.su-news-list ul li{display:inline-block;padding-right:1.1rem}@media only screen and (min-width:768px){.su-news-list ul li{padding-right:1.2rem}}@media only screen and (min-width:1500px){.su-news-list ul li{padding-right:1.3rem}}.su-news-list ul li:after{content:", "}.su-news-list ul li:last-of-type:after{content:""}.container-2-items .paragraph--type--stanford-lists .su-news-list h2,.container-3-items .paragraph--type--stanford-lists .su-news-list h2{max-width:unset}@media only screen and (min-width:0){.views-infinite-scroll-content-wrapper{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.views-infinite-scroll-content-wrapper{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.views-infinite-scroll-content-wrapper{margin-bottom:7.6rem}}@media only screen and (min-width:0){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:11.2rem}}@media only screen and (min-width:768px){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:12.6rem}}@media only screen and (min-width:1500px){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:13.3rem}}.su-news-external .su-news-list__item a{text-decoration:none}@supports ((-webkit-mask-repeat:no-repeat) or (mask-repeat:no-repeat)){.su-news-external .su-news-list__item a:after{content:"";display:inline-block;height:10px;-webkit-mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy41OTcgMS40NTNjLjI4OS4zMDUuNDM0LjcyLjM5NyAxLjE0TDIyLjU0IDE5LjQ2YTEuNDU4IDEuNDU4IDAgMCAxLTEuNTc1IDEuMzM0IDEuNDYzIDEuNDYzIDAgMCAxLTEuMzIzLTEuNTg4bDEuMTM2LTEzLjE3MS0xOC4zNTIgMTYuNTljLS41OTkuNTQxLTEuNTE4LjQ5LTIuMDU0LS4xMTNhMS40NzUgMS40NzUgMCAwIDEgLjExMi0yLjA3bDE4LjA3My0xNi4zNC0xMy40MDYuNTYzYTEuNDYgMS40NiAwIDAgMS0xLjUxMy0xLjQwNEExLjQ2MiAxLjQ2MiAwIDAgMSA1LjAzIDEuNzM1TDIyLjQ4NSAxYy40MTgtLjAxNy44MjMuMTQ3IDEuMTEyLjQ1MloiIGZpbGw9IiMyRTJEMjkiLz48L3N2Zz4=) no-repeat 0 0;mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy41OTcgMS40NTNjLjI4OS4zMDUuNDM0LjcyLjM5NyAxLjE0TDIyLjU0IDE5LjQ2YTEuNDU4IDEuNDU4IDAgMCAxLTEuNTc1IDEuMzM0IDEuNDYzIDEuNDYzIDAgMCAxLTEuMzIzLTEuNTg4bDEuMTM2LTEzLjE3MS0xOC4zNTIgMTYuNTljLS41OTkuNTQxLTEuNTE4LjQ5LTIuMDU0LS4xMTNhMS40NzUgMS40NzUgMCAwIDEgLjExMi0yLjA3bDE4LjA3My0xNi4zNC0xMy40MDYuNTYzYTEuNDYgMS40NiAwIDAgMS0xLjUxMy0xLjQwNEExLjQ2MiAxLjQ2MiAwIDAgMSA1LjAzIDEuNzM1TDIyLjQ4NSAxYy40MTgtLjAxNy44MjMuMTQ3IDEuMTEyLjQ1MloiIGZpbGw9IiMyRTJEMjkiLz48L3N2Zz4=) no-repeat 0 0;-webkit-mask-size:contain;mask-size:contain;width:10px}.su-news-external .su-news-list__item a:focus:after,.su-news-external .su-news-list__item a:hover:after{background-color:#2e2d29}.su-news-external .su-news-list__item a:after{background-color:#006cb8;margin-left:.4em;margin-right:.3em;-webkit-transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out,-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out}.su-news-external .su-news-list__item a:focus:after,.su-news-external .su-news-list__item a:hover:after{-webkit-transform:translate3d(.15em,-.15em,0);transform:translate3d(.15em,-.15em,0)}}.su-news-external .su-news-list__item a:after{background-color:#b1040e;height:1.8rem;width:1.8rem}.su-news-edit-article a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem;text-align:right}.su-news-edit-article a:after,.su-news-edit-article a:before{background-color:#b1040e;color:#fff}.su-news-edit-article a:focus,.su-news-edit-article a:focus:after,.su-news-edit-article a:focus:before,.su-news-edit-article a:hover,.su-news-edit-article a:hover:after,.su-news-edit-article a:hover:before{background-color:#fff;color:#2e2d29}.su-news-edit-article a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.su-news-edit-article a:hover:after,.su-news-edit-article a:hover:before{background-color:#2e2d29;color:#fff}.su-news-edit-article a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.su-news-edit-article a:focus:after,.su-news-edit-article a:focus:before{background-color:#2e2d29;color:#fff}@media only screen and (min-width:0){.stanford-news-terms--results-for{margin-bottom:4rem}}@media only screen and (min-width:768px){.stanford-news-terms--results-for{margin-bottom:4.5rem}}@media only screen and (min-width:1500px){.stanford-news-terms--results-for{margin-bottom:4.75rem}}.stanford-news-terms--results-for a,.stanford-news-terms--results-for span{font-size:1.8rem;line-height:1.3}@media (max-width:767px){.stanford-news-terms--results-for a,.stanford-news-terms--results-for span{font-size:1.6rem}}@media (max-width:1199px){.section-news-views-views .left-region.flex-lg-3-of-12{-webkit-box-flex:1;-ms-flex:auto;flex:auto;max-width:100%}}.su-news-edit-article a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;line-height:1;text-align:center;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.su-news-edit-article a,.su-news-edit-article a a{font-weight:400;text-decoration:none}.su-news-edit-article a:active,.su-news-edit-article a:focus,.su-news-edit-article a:hover{text-decoration:underline}.mailchimp-magazine-block.flex-8-of-12{margin:0 auto}.mailchimp-magazine-block #mc_embed_signup_scroll{background-color:#f4f4f4;border:0;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.25);box-shadow:0 1px 2px rgba(0,0,0,.25);text-align:center}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-bottom:4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-bottom:4.5rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-bottom:4.75rem}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-left:4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-left:4.5rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-left:4.75rem}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-right:4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-right:4.5rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-right:4.75rem}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll{margin-bottom:9.6rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll{margin-bottom:10.8rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll{margin-bottom:11.4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll p{font-size:2.1rem;line-height:1.7}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll p{margin-top:1.6rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll p{margin-top:1.8rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll p{margin-top:1.9rem}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll form{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll form{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll form{margin-bottom:1.9rem}}.mailchimp-magazine-block #mc_embed_signup_scroll h2{font-size:1.5625em;letter-spacing:-.012em;margin:0}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll h2{padding-top:4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll h2{padding-top:4.5rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll h2{padding-top:4.75rem}}.mailchimp-magazine-block #mc_embed_signup_scroll .mc_signup_submission_wrapper{-webkit-box-pack:center;-ms-flex-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center}.mailchimp-magazine-block #mc_embed_signup_scroll .mc-field-group{float:none}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll .mc-field-group input{font-size:2.1rem;line-height:1.7}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll .button{margin-left:1.6rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll .button{margin-left:1.8rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll .button{margin-left:1.9rem}}.mailchimp-magazine-block #mc_embed_signup_scroll form{margin-bottom:0} \ No newline at end of file +.field--name-su-news-view-field .stanford-news--cards-any,.field--name-su-news-view-field .stanford-news--list-any{margin-left:auto;margin-right:auto;max-width:1100px}@media only screen and (min-width:0){.section-stanford-news-views-header h1{margin-bottom:6.4rem;margin-top:8rem}}@media only screen and (min-width:768px){.section-stanford-news-views-header h1{margin-bottom:7.2rem;margin-top:9rem}}@media only screen and (min-width:1500px){.section-stanford-news-views-header h1{margin-bottom:7.6rem;margin-top:9.5rem}}@media only screen and (min-width:0){.section-news-views-views .main-region{padding-left:3.2rem}}@media only screen and (min-width:768px){.section-news-views-views .main-region{padding-left:3.6rem}}@media only screen and (min-width:1500px){.section-news-views-views .main-region{padding-left:3.8rem}}@media only screen and (min-width:0){.menu--news-topics{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.menu--news-topics{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.menu--news-topics{margin-bottom:6.08rem}}.su-news-list__item-date+.su-news-list__item .media{margin-top:-29px}@media (min-width:1200px){.views-infinite-scroll-content-wrapper div:first-child .su-news-list{padding-top:0}}.su-news-list{list-style:none;overflow:auto;padding-left:0}.su-news-list:first-of-type>article{padding-top:0}.su-news-list .su-news-list__item-date{grid-area:date}.su-news-list .image{grid-area:article-image}.su-news-list .su-news-list__headline-dek{grid-area:headline}@media (max-width:1199px){.su-news-list .su-news-list__header{-ms-grid-columns:100%;display:-ms-grid;display:grid;grid-template-areas:"date" "headline" "dek";grid-template-columns:100%}.su-news-list .su-news-list__item-date{-ms-grid-column:1;-ms-grid-row:1}.su-news-list .su-news-list__headline-dek{-ms-grid-column:1;-ms-grid-row:2}}@media (min-width:1200px){.su-news-list .su-news-list__header{-ms-grid-columns:65% 35%;display:-ms-grid;display:grid;grid-template-areas:"date date" "headline article-image" "headline article-image";grid-template-columns:65% 35%}.su-news-list .su-news-list__item-date{-ms-grid-column-span:2;-ms-grid-column:1;-ms-grid-row:1}.su-news-list .image{-ms-grid-row-span:2;-ms-grid-column:2;-ms-grid-row:2}.su-news-list .su-news-list__headline-dek{-ms-grid-row-span:2;-ms-grid-column:1;-ms-grid-row:2}}.su-news-list .su-news-list-image__empty .su-news-list__header{-ms-grid-columns:100%;display:-ms-grid;display:grid;grid-template-areas:"date" "headline" "dek";grid-template-columns:100%}.su-news-list .su-news-article{border-bottom:1px solid #d2d3d4;margin:0;padding:0}@media only screen and (min-width:0){.su-news-list .su-news-article{padding-bottom:5.12rem;padding-top:5.12rem}}@media only screen and (min-width:768px){.su-news-list .su-news-article{padding-bottom:5.76rem;padding-top:5.76rem}}@media only screen and (min-width:1500px){.su-news-list .su-news-article{padding-bottom:6.08rem;padding-top:6.08rem}}.su-news-list .su-news-list__item-date{-webkit-box-ordinal-group:0;-ms-flex-order:-1;font-size:1.8rem;line-height:1.3;order:-1}@media (max-width:767px){.su-news-list .su-news-list__item-date{font-size:1.6rem}}@media only screen and (min-width:0){.su-news-list .image .media{margin-left:4rem}}@media only screen and (min-width:768px){.su-news-list .image .media{margin-left:4.5rem}}@media only screen and (min-width:1500px){.su-news-list .image .media{margin-left:4.75rem}}@media (max-width:1199px){.su-news-list .image .media{display:none}}.su-news-list a{color:#006cb8;color:#b1040e;font-weight:600;text-decoration:underline;text-decoration:none}.su-news-list a:active,.su-news-list a:focus,.su-news-list a:hover{color:#2e2d29}.su-news-list a:active,.su-news-list a:focus,.su-news-list a:hover,.su-news-list a:visited{text-decoration:underline}.su-news-list h2,.su-news-list h3{display:inline;font-size:1.5625em}@media only screen and (min-width:0){.su-news-list h2,.su-news-list h3{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-news-list h2,.su-news-list h3{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-news-list h2,.su-news-list h3{margin-bottom:2.74rem}}.su-news-list h2:focus,.su-news-list h3:focus{outline:none}.su-news-list .su-link--external:after{background-color:#b1040e;height:1.8rem;width:1.8rem}@media only screen and (min-width:768px){.su-news-list .su-news-list__dek{font-size:2.1rem;line-height:1.7}}@media only screen and (min-width:0){.su-news-list .su-news-list__dek{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-news-list .su-news-list__dek{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-news-list .su-news-list__dek{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-news-list .su-news-list__dek{margin-top:1.07rem}}@media only screen and (min-width:768px){.su-news-list .su-news-list__dek{margin-top:1.2rem}}@media only screen and (min-width:1500px){.su-news-list .su-news-list__dek{margin-top:1.27rem}}.su-news-list ul{list-style:none;overflow:auto;padding-bottom:0;padding-left:0}.su-news-list ul li{display:inline-block;padding-right:1.1rem}@media only screen and (min-width:768px){.su-news-list ul li{padding-right:1.2rem}}@media only screen and (min-width:1500px){.su-news-list ul li{padding-right:1.3rem}}.su-news-list ul li:after{content:", "}.su-news-list ul li:last-of-type:after{content:""}.container-2-items .paragraph--type--stanford-lists .su-news-list h2,.container-3-items .paragraph--type--stanford-lists .su-news-list h2{max-width:unset}@media only screen and (min-width:0){.views-infinite-scroll-content-wrapper{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.views-infinite-scroll-content-wrapper{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.views-infinite-scroll-content-wrapper{margin-bottom:7.6rem}}@media only screen and (min-width:0){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:11.2rem}}@media only screen and (min-width:768px){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:12.6rem}}@media only screen and (min-width:1500px){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:13.3rem}}.su-news-external .su-news-list__item a{text-decoration:none}@supports ((-webkit-mask-repeat:no-repeat) or (mask-repeat:no-repeat)){.su-news-external .su-news-list__item a:after{content:"";display:inline-block;height:10px;-webkit-mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy41OTcgMS40NTNjLjI4OS4zMDUuNDM0LjcyLjM5NyAxLjE0TDIyLjU0IDE5LjQ2YTEuNDU4IDEuNDU4IDAgMCAxLTEuNTc1IDEuMzM0IDEuNDYzIDEuNDYzIDAgMCAxLTEuMzIzLTEuNTg4bDEuMTM2LTEzLjE3MS0xOC4zNTIgMTYuNTljLS41OTkuNTQxLTEuNTE4LjQ5LTIuMDU0LS4xMTNhMS40NzUgMS40NzUgMCAwIDEgLjExMi0yLjA3bDE4LjA3My0xNi4zNC0xMy40MDYuNTYzYTEuNDYgMS40NiAwIDAgMS0xLjUxMy0xLjQwNEExLjQ2MiAxLjQ2MiAwIDAgMSA1LjAzIDEuNzM1TDIyLjQ4NSAxYy40MTgtLjAxNy44MjMuMTQ3IDEuMTEyLjQ1MloiIGZpbGw9IiMyRTJEMjkiLz48L3N2Zz4=) no-repeat 0 0;mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy41OTcgMS40NTNjLjI4OS4zMDUuNDM0LjcyLjM5NyAxLjE0TDIyLjU0IDE5LjQ2YTEuNDU4IDEuNDU4IDAgMCAxLTEuNTc1IDEuMzM0IDEuNDYzIDEuNDYzIDAgMCAxLTEuMzIzLTEuNTg4bDEuMTM2LTEzLjE3MS0xOC4zNTIgMTYuNTljLS41OTkuNTQxLTEuNTE4LjQ5LTIuMDU0LS4xMTNhMS40NzUgMS40NzUgMCAwIDEgLjExMi0yLjA3bDE4LjA3My0xNi4zNC0xMy40MDYuNTYzYTEuNDYgMS40NiAwIDAgMS0xLjUxMy0xLjQwNEExLjQ2MiAxLjQ2MiAwIDAgMSA1LjAzIDEuNzM1TDIyLjQ4NSAxYy40MTgtLjAxNy44MjMuMTQ3IDEuMTEyLjQ1MloiIGZpbGw9IiMyRTJEMjkiLz48L3N2Zz4=) no-repeat 0 0;-webkit-mask-size:contain;mask-size:contain;width:10px}.su-news-external .su-news-list__item a:focus:after,.su-news-external .su-news-list__item a:hover:after{background-color:#2e2d29}.su-news-external .su-news-list__item a:after{background-color:#006cb8;margin-left:.4em;margin-right:.3em;-webkit-transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out,-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out}.su-news-external .su-news-list__item a:focus:after,.su-news-external .su-news-list__item a:hover:after{-webkit-transform:translate3d(.15em,-.15em,0);transform:translate3d(.15em,-.15em,0)}}.su-news-external .su-news-list__item a:after{background-color:#b1040e;height:1.8rem;width:1.8rem}.su-news-edit-article a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem;text-align:right}.su-news-edit-article a:after,.su-news-edit-article a:before{background-color:#b1040e;color:#fff}.su-news-edit-article a:focus,.su-news-edit-article a:focus:after,.su-news-edit-article a:focus:before,.su-news-edit-article a:hover,.su-news-edit-article a:hover:after,.su-news-edit-article a:hover:before{background-color:#fff;color:#2e2d29}.su-news-edit-article a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.su-news-edit-article a:hover:after,.su-news-edit-article a:hover:before{background-color:#2e2d29;color:#fff}.su-news-edit-article a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.su-news-edit-article a:focus:after,.su-news-edit-article a:focus:before{background-color:#2e2d29;color:#fff}@media only screen and (min-width:0){.stanford-news-terms--results-for{margin-bottom:4rem}}@media only screen and (min-width:768px){.stanford-news-terms--results-for{margin-bottom:4.5rem}}@media only screen and (min-width:1500px){.stanford-news-terms--results-for{margin-bottom:4.75rem}}.stanford-news-terms--results-for a,.stanford-news-terms--results-for span{font-size:1.8rem;line-height:1.3}@media (max-width:767px){.stanford-news-terms--results-for a,.stanford-news-terms--results-for span{font-size:1.6rem}}@media (max-width:1199px){.section-news-views-views .left-region.flex-lg-3-of-12{-webkit-box-flex:1;-ms-flex:auto;flex:auto;max-width:100%}}.su-news-edit-article a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;line-height:1;text-align:center;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.su-news-edit-article a,.su-news-edit-article a a{font-weight:400;text-decoration:none}.su-news-edit-article a:active,.su-news-edit-article a:focus,.su-news-edit-article a:hover{text-decoration:underline}.mailchimp-magazine-block.flex-8-of-12{margin:0 auto}.mailchimp-magazine-block #mc_embed_signup_scroll{background-color:#f4f4f4;border:0;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.25);box-shadow:0 1px 2px rgba(0,0,0,.25);text-align:center}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-bottom:4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-bottom:4.5rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-bottom:4.75rem}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-left:4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-left:4.5rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-left:4.75rem}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-right:4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-right:4.5rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll{padding-right:4.75rem}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll{margin-bottom:9.6rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll{margin-bottom:10.8rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll{margin-bottom:11.4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll p{font-size:2.1rem;line-height:1.7}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll p{margin-top:1.6rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll p{margin-top:1.8rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll p{margin-top:1.9rem}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll form{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll form{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll form{margin-bottom:1.9rem}}.mailchimp-magazine-block #mc_embed_signup_scroll h2{font-size:1.5625em;letter-spacing:-.012em;margin:0}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll h2{padding-top:4rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll h2{padding-top:4.5rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll h2{padding-top:4.75rem}}.mailchimp-magazine-block #mc_embed_signup_scroll .mc_signup_submission_wrapper{-webkit-box-pack:center;-ms-flex-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center}.mailchimp-magazine-block #mc_embed_signup_scroll .mc-field-group{float:none}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll .mc-field-group input{font-size:2.1rem;line-height:1.7}}@media only screen and (min-width:0){.mailchimp-magazine-block #mc_embed_signup_scroll .button{margin-left:1.6rem}}@media only screen and (min-width:768px){.mailchimp-magazine-block #mc_embed_signup_scroll .button{margin-left:1.8rem}}@media only screen and (min-width:1500px){.mailchimp-magazine-block #mc_embed_signup_scroll .button{margin-left:1.9rem}}.mailchimp-magazine-block #mc_embed_signup_scroll form{margin-bottom:0} \ No newline at end of file diff --git a/modules/stanford_news/lib/scss/components/news-list-item/_list-item.scss b/modules/stanford_news/lib/scss/components/news-list-item/_list-item.scss index d215e2a9..27f75e19 100644 --- a/modules/stanford_news/lib/scss/components/news-list-item/_list-item.scss +++ b/modules/stanford_news/lib/scss/components/news-list-item/_list-item.scss @@ -132,7 +132,8 @@ } } - h2 { + h2, + h3 { @include modular-spacing('margin-bottom', 1); @include modular-typography(2); From b0cb89b65df48497bd0db7e8bc03c9c6ad24ae3b Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Wed, 14 Feb 2024 15:05:40 -0800 Subject: [PATCH 3/6] Add unit tests --- .../Behavior/TeaserParagraphBehaviorTest.php | 109 ++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 modules/jumpstart_ui/tests/src/Unit/Plugin/paragraphs/Behavior/TeaserParagraphBehaviorTest.php diff --git a/modules/jumpstart_ui/tests/src/Unit/Plugin/paragraphs/Behavior/TeaserParagraphBehaviorTest.php b/modules/jumpstart_ui/tests/src/Unit/Plugin/paragraphs/Behavior/TeaserParagraphBehaviorTest.php new file mode 100644 index 00000000..e555023e --- /dev/null +++ b/modules/jumpstart_ui/tests/src/Unit/Plugin/paragraphs/Behavior/TeaserParagraphBehaviorTest.php @@ -0,0 +1,109 @@ +createMock(EntityFieldManagerInterface::class); + + $container = new ContainerBuilder(); + $container->set('entity_field.manager', $field_manager); + $container->set('string_translation', $this->getStringTranslationStub()); + \Drupal::setContainer($container); + } + + /** + * The paragraph behavior should only be available to hero pattern displays. + */ + public function testApplication() { + $paragraph_type = $this->createMock(ParagraphsType::class); + $paragraph_type->method('id')->willReturn('foo'); + $this->assertFalse(TeaserParagraphBehavior::isApplicable($paragraph_type)); + + $paragraph_type = $this->createMock(ParagraphsType::class); + $paragraph_type->method('id')->willReturn('stanford_entity'); + $this->assertTrue(TeaserParagraphBehavior::isApplicable($paragraph_type)); + } + + public function testForm() { + $plugin = TeaserParagraphBehavior::create(\Drupal::getContainer(), [], '', []); + $paragraph = $this->createMock(ParagraphInterface::class); + $paragraph->method('getBehaviorSetting')->willReturn(FALSE); + $form = []; + $form_state = new FormState(); + $form = $plugin->buildBehaviorForm($paragraph, $form, $form_state); + $this->assertArrayHasKey('hide_heading', $form); + $this->assertFalse($form['hide_heading']['#default_value']); + } + + public function testView() { + $plugin = TeaserParagraphBehavior::create(\Drupal::getContainer(), [], '', []); + $build = ['su_entity_headline' => ['foo']]; + $paragraph = $this->createMock(Paragraph::class); + $paragraph->method('getBehaviorSetting')->willReturn(TRUE); + $display = $this->createMock(EntityViewDisplayInterface::class); + $plugin->view($build, $paragraph, $display, 'foo'); + // No changes with no items. + $this->assertEquals(['su_entity_headline' => ['foo']], $build); + + $build['su_entity_item'][0] = [ + '#view_mode' => 'foobar', + '#cache' => ['keys' => ['foobar']] + ]; + $plugin->view($build, $paragraph, $display, 'foo'); + $this->assertContains('visually-hidden', $build['su_entity_headline']['#attributes']['class']); + $this->assertContains('stanford_h3_card', $build['su_entity_item'][0]['#cache']['keys']); + } + + /** + * Load and get mock display entities. + * + * @param array $ids + * Array of display ids. + * + * @return array + * Keyed array of mock displays. + */ + public function loadMultipleDisplayCallback($ids = []) { + $return = []; + foreach ($ids as $id) { + $ds_settings = NULL; + switch ($id) { + case 'paragraph.foo.hero': + $ds_settings = ['id' => 'pattern_hero']; + break; + } + $return[$id] = $this->createMock(EntityDisplayInterface::class); + $return[$id]->method('getThirdPartySetting') + ->willReturn($ds_settings); + } + return $return; + } + +} From 454f447dce2d3c76c0b4a7960d57e5cde608df03 Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Thu, 15 Feb 2024 14:57:12 -0800 Subject: [PATCH 4/6] D8CORE-7213 Update list paragraphs with headline field populated and required --- modules/jumpstart_ui/jumpstart_ui.install | 61 +++++++++++++++++++ .../Behavior/ListParagraphBehavior.php | 10 +++ 2 files changed, 71 insertions(+) create mode 100644 modules/jumpstart_ui/jumpstart_ui.install diff --git a/modules/jumpstart_ui/jumpstart_ui.install b/modules/jumpstart_ui/jumpstart_ui.install new file mode 100644 index 00000000..660786b2 --- /dev/null +++ b/modules/jumpstart_ui/jumpstart_ui.install @@ -0,0 +1,61 @@ +getStorage('paragraph'); + if (empty($sandbox['ids'])) { + $sandbox['ids'] = $paragraph_storage->getQuery() + ->accessCheck(FALSE) + ->condition('type', 'stanford_lists') + ->condition('su_list_headline', '', 'IS NULL') + ->condition('su_list_view', '', '<>') + ->execute(); + $sandbox['total'] = count($sandbox['ids']); + } + $ids = array_splice($sandbox['ids'], 0, 25); + + /** @var \Drupal\paragraphs\ParagraphInterface $paragraph */ + foreach ($paragraph_storage->loadMultiple($ids) as $paragraph) { + $behaviors = $paragraph->getAllBehaviorSettings(); + $behaviors['list_paragraph']['hide_heading'] = TRUE; + $paragraph->setBehaviorSettings('list_paragraph', $behaviors['list_paragraph']); + + $view = $paragraph->get('su_list_view')->get(0)->getValue(); + $new_header = 'Site content'; + + switch ($view['target_id']) { + case 'stanford_basic_pages': + $new_header = 'Site Pages'; + break; + + case 'stanford_courses': + $new_header = 'Courses'; + break; + + case 'stanford_event_series': + $new_header = 'Event Series'; + break; + + case 'stanford_events': + $new_header = 'Events'; + break; + + case 'stanford_news': + $new_header = 'Site news'; + break; + + case 'stanford_person': + $new_header = 'People'; + break; + } + $paragraph->set('su_list_headline', $new_header)->save(); + } + $sandbox['#finished'] = count($sandbox['ids']) ? 1 - count($sandbox['ids']) / $sandbox['total'] : 1; +} diff --git a/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/ListParagraphBehavior.php b/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/ListParagraphBehavior.php index 57578405..abe07958 100644 --- a/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/ListParagraphBehavior.php +++ b/modules/jumpstart_ui/src/Plugin/paragraphs/Behavior/ListParagraphBehavior.php @@ -44,6 +44,11 @@ public function buildBehaviorForm(ParagraphInterface $paragraph, array &$form, F '#description' => $this->t('This message will appear for site visitors if there are no items displayed in the list.'), '#default_value' => $paragraph->getBehaviorSetting('list_paragraph', 'empty_message'), ]; + $form['hide_heading'] = [ + '#type' => 'checkbox', + '#title' => $this->t('Visually Hide Heading'), + '#default_value' => $paragraph->getBehaviorSetting('list_paragraph', 'hide_heading', FALSE), + ]; return $form; } @@ -51,6 +56,11 @@ public function buildBehaviorForm(ParagraphInterface $paragraph, array &$form, F * {@inheritDoc} */ public function view(array &$build, ParagraphInterface $paragraph, EntityViewDisplayInterface $display, $view_mode) { + // Visually hide the header. + if ($paragraph->getBehaviorSetting('list_paragraph', 'hide_heading', FALSE) && isset($build['su_list_headline'][0])) { + $build['su_list_headline']['#attributes']['class'][] = 'visually-hidden'; + } + if (!isset($build['su_list_view']) || !empty(Element::children($build['su_list_view']))) { return; } From 3d5182d514af56aaac6e1648269f4fe6ebb6abd8 Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Mon, 26 Feb 2024 16:30:19 -0800 Subject: [PATCH 5/6] Use div instead of span --- .../dist/templates/decanter/components/card/card.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jumpstart_ui/dist/templates/decanter/components/card/card.twig b/modules/jumpstart_ui/dist/templates/decanter/components/card/card.twig index 7fe622bb..80b1cfc3 100644 --- a/modules/jumpstart_ui/dist/templates/decanter/components/card/card.twig +++ b/modules/jumpstart_ui/dist/templates/decanter/components/card/card.twig @@ -129,7 +129,7 @@ {# Card Super Headline #} {%- block block_card_super_headline %} {% if card_super_headline is not empty %} - {{ card_super_headline }} +
{{ card_super_headline }}
{% endif -%} {% endblock -%} From 86123cdb20e3abf3f8c3536c49bee074dab81ca0 Mon Sep 17 00:00:00 2001 From: Jacob Wilson <49299083+jdwjdwjdw@users.noreply.github.com> Date: Wed, 28 Feb 2024 12:38:33 -0800 Subject: [PATCH 6/6] D8CORE-7212 Update "Teaser" paragraph type styles (#298) * Update teaser styles * Remove commented out code --- .../dist/css/component/stanford-page.css | 2 +- .../stanford-page/_basic-page-types.scss | 11 +++++--- .../dist/css/course-vertical-teaser.css | 2 +- .../lib/scss/course-vertical-teaser.scss | 4 +++ .../dist/css/stanford_events.event-card.css | 2 +- .../stanford_events.event-card.scss | 7 ++++- .../dist/css/news-vertical-teaser.css | 2 +- .../_news-vertical-teaser.scss | 14 +++++++++- .../dist/css/component/node/stanford_page.css | 2 +- .../scss/component/node/stanford_page.scss | 26 ++++++++++++++++++- 10 files changed, 61 insertions(+), 11 deletions(-) diff --git a/modules/stanford_basic_page_types/dist/css/component/stanford-page.css b/modules/stanford_basic_page_types/dist/css/component/stanford-page.css index 5a5143a6..8b4f3f88 100644 --- a/modules/stanford_basic_page_types/dist/css/component/stanford-page.css +++ b/modules/stanford_basic_page_types/dist/css/component/stanford-page.css @@ -1 +1 @@ -.js-pager__items .pager__item .button{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:400;line-height:1;text-align:center;text-decoration:none;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.js-pager__items .pager__item .button a{font-weight:400;text-decoration:none}.js-pager__items .pager__item .button:active,.js-pager__items .pager__item .button:focus,.js-pager__items .pager__item .button:hover{text-decoration:underline}.stanford-page.su-page-description{margin-bottom:46px}@media only screen and (min-width:768px){.stanford-page.su-page-description{font-size:2.1rem;line-height:1.7}}@media (min-width:992px){.stanford-page.su-page-description{max-width:85ch}}@media only screen and (max-width:991px) and (min-width:0){.ds-entity--stanford-page .su-card{margin-bottom:3.2rem}}@media only screen and (max-width:991px) and (min-width:768px){.ds-entity--stanford-page .su-card{margin-bottom:3.6rem}}@media only screen and (max-width:991px) and (min-width:1500px){.ds-entity--stanford-page .su-card{margin-bottom:3.8rem}}@media only screen and (min-width:0){.ds-entity--stanford-page .su-card .su-card__contents{padding:2.31rem}}@media only screen and (min-width:768px){.ds-entity--stanford-page .su-card .su-card__contents{padding:2.6rem}}@media only screen and (min-width:1500px){.ds-entity--stanford-page .su-card .su-card__contents{padding:2.74rem}}.ds-entity--stanford-page .su-card .su-card__contents h2{font-size:1.5625em;letter-spacing:-.012em;margin-left:0;margin-right:0}@media only screen and (max-width:767px) and (min-width:0){.ds-entity--stanford-page .su-card .su-card__contents h2{margin-top:2.31rem}}@media only screen and (max-width:767px) and (min-width:768px){.ds-entity--stanford-page .su-card .su-card__contents h2{margin-top:2.6rem}}@media only screen and (max-width:767px) and (min-width:1500px){.ds-entity--stanford-page .su-card .su-card__contents h2{margin-top:2.74rem}}.ds-entity--stanford-page .su-card .su-card__contents a{color:#2e2d29;display:inline-block;font-weight:700;text-decoration:none}@supports ((-webkit-mask-repeat:no-repeat) or (mask-repeat:no-repeat)){.ds-entity--stanford-page .su-card .su-card__contents a:after{content:"";display:inline-block;height:.65em;-webkit-mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0uNDE2LjUxMUExLjUyNSAxLjUyNSAwIDAgMSAyLjYxNC40MjhsMTAuODg5IDEwLjRjLjMxNy4zMDIuNDk3LjcyNy40OTcgMS4xNzIgMCAuNDQ1LS4xOC44Ny0uNDk3IDEuMTcybC0xMC44ODkgMTAuNGExLjUyNSAxLjUyNSAwIDAgMS0yLjE5OC0uMDgzIDEuNjMyIDEuNjMyIDAgMCAxIC4wODEtMi4yNjJMMTAuMTU4IDEyIC40OTggMi43NzJBMS42MzIgMS42MzIgMCAwIDEgLjQxNS41MTJaIiBmaWxsPSIjMkUyRDI5Ii8+PC9zdmc+) no-repeat 0 0;mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0uNDE2LjUxMUExLjUyNSAxLjUyNSAwIDAgMSAyLjYxNC40MjhsMTAuODg5IDEwLjRjLjMxNy4zMDIuNDk3LjcyNy40OTcgMS4xNzIgMCAuNDQ1LS4xOC44Ny0uNDk3IDEuMTcybC0xMC44ODkgMTAuNGExLjUyNSAxLjUyNSAwIDAgMS0yLjE5OC0uMDgzIDEuNjMyIDEuNjMyIDAgMCAxIC4wODEtMi4yNjJMMTAuMTU4IDEyIC40OTggMi43NzJBMS42MzIgMS42MzIgMCAwIDEgLjQxNS41MTJaIiBmaWxsPSIjMkUyRDI5Ii8+PC9zdmc+) no-repeat 0 0;-webkit-mask-size:contain;mask-size:contain;width:.65em}.ds-entity--stanford-page .su-card .su-card__contents a:focus:after,.ds-entity--stanford-page .su-card .su-card__contents a:hover:after{background-color:#2e2d29}.ds-entity--stanford-page .su-card .su-card__contents a:after{background-color:#006cb8;margin-left:.4em;margin-right:.3em;-webkit-transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out,-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out}.ds-entity--stanford-page .su-card .su-card__contents a:focus:after,.ds-entity--stanford-page .su-card .su-card__contents a:hover:after{-webkit-transform:translateX(.2em);transform:translateX(.2em)}}@media only screen and (min-width:0){.ds-entity--stanford-page .su-card .su-card__contents a{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.ds-entity--stanford-page .su-card .su-card__contents a{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.ds-entity--stanford-page .su-card .su-card__contents a{margin-bottom:1.9rem}}.ds-entity--stanford-page .su-card .su-card__contents a:hover{color:#2e2d29;text-decoration:underline}.ds-entity--stanford-page .su-card .su-card__contents a:focus{outline:none}.ds-entity--stanford-page .su-card .su-card__contents a:after{background-color:#b1040e;height:1.2rem;width:1.2rem}.ds-entity--stanford-page .su-card .su-card__contents a:hover:after{background-color:#b1040e}@media (max-width:767px){.ds-entity--stanford-page .su-card img{display:-webkit-box;display:-ms-flexbox;display:flex}}.js-pager__items{text-align:center}.js-pager__items .pager__item{display:inline-block}.js-pager__items .pager__item .button{background-color:#b1040e;color:#fff;font-size:2.5rem;padding:1.3rem 2.8rem 1.5rem}.js-pager__items .pager__item .button:after,.js-pager__items .pager__item .button:before{background-color:#fff;color:#b1040e}.js-pager__items .pager__item .button:focus,.js-pager__items .pager__item .button:hover{background-color:#2e2d29;color:#fff}.js-pager__items .pager__item .button:focus:after,.js-pager__items .pager__item .button:focus:before,.js-pager__items .pager__item .button:hover:after,.js-pager__items .pager__item .button:hover:before{background-color:#fff}.js-pager__items .pager__item .button:focus{-webkit-box-shadow:0 0 3px #53565a,0 0 7px #53565a;box-shadow:0 0 3px #53565a,0 0 7px #53565a}@media only screen and (min-width:768px){.js-pager__items .pager__item .button{font-size:2.8rem;padding:1.5rem 3rem 1.8rem}}@media only screen and (min-width:1500px){.js-pager__items .pager__item .button{font-size:3rem}}@media only screen and (min-width:0){.views-infinite-scroll-content-wrapper{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.views-infinite-scroll-content-wrapper{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.views-infinite-scroll-content-wrapper{margin-bottom:7.6rem}}@media only screen and (min-width:0){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:11.2rem}}@media only screen and (min-width:768px){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:12.6rem}}@media only screen and (min-width:1500px){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:13.3rem}}@media (min-width:1200px){.views-infinite-scroll-content-wrapper div:first-child .su-basic-page-types-list{padding-top:0}}.su-basic-page-types-view-row{-webkit-box-pack:justify;-ms-flex-pack:justify;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.su-basic-page-types-view-column{margin:0;width:calc(33% - 40px)}@media (max-width:991px){.su-basic-page-types-view-column{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.su-basic-page-types-view-column:first-child:last-child{width:100%}.su-basic-page-types-view-column:first-child:nth-last-child(2),.su-basic-page-types-view-column:nth-child(2):last-child{width:calc(50% - 40px)}@media only screen and (min-width:0){.su-basic-page-types-view-column:nth-child(n+4){margin-top:5.12rem}}@media only screen and (min-width:768px){.su-basic-page-types-view-column:nth-child(n+4){margin-top:5.76rem}}@media only screen and (min-width:1500px){.su-basic-page-types-view-column:nth-child(n+4){margin-top:6.08rem}} \ No newline at end of file +.js-pager__items .pager__item .button{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:400;line-height:1;text-align:center;text-decoration:none;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.js-pager__items .pager__item .button a{font-weight:400;text-decoration:none}.js-pager__items .pager__item .button:active,.js-pager__items .pager__item .button:focus,.js-pager__items .pager__item .button:hover{text-decoration:underline}.stanford-page.su-page-description{margin-bottom:46px}@media only screen and (min-width:768px){.stanford-page.su-page-description{font-size:2.1rem;line-height:1.7}}@media (min-width:992px){.stanford-page.su-page-description{max-width:85ch}}@media only screen and (max-width:991px) and (min-width:0){.ds-entity--stanford-page .su-card{margin-bottom:3.2rem}}@media only screen and (max-width:991px) and (min-width:768px){.ds-entity--stanford-page .su-card{margin-bottom:3.6rem}}@media only screen and (max-width:991px) and (min-width:1500px){.ds-entity--stanford-page .su-card{margin-bottom:3.8rem}}.ds-entity--stanford-page .su-card .su-card__contents{padding:3rem}.ds-entity--stanford-page .su-card .su-card__contents h2{font-size:1.5625em;letter-spacing:-.012em}@media only screen and (max-width:767px) and (min-width:0){.ds-entity--stanford-page .su-card .su-card__contents h2{margin-top:2.31rem}}@media only screen and (max-width:767px) and (min-width:768px){.ds-entity--stanford-page .su-card .su-card__contents h2{margin-top:2.6rem}}@media only screen and (max-width:767px) and (min-width:1500px){.ds-entity--stanford-page .su-card .su-card__contents h2{margin-top:2.74rem}}.ds-entity--stanford-page .su-card .su-card__contents h3{font-size:1.4em}@media only screen and (max-width:767px) and (min-width:0){.ds-entity--stanford-page .su-card .su-card__contents h3{margin-top:2.31rem}}@media only screen and (max-width:767px) and (min-width:768px){.ds-entity--stanford-page .su-card .su-card__contents h3{margin-top:2.6rem}}@media only screen and (max-width:767px) and (min-width:1500px){.ds-entity--stanford-page .su-card .su-card__contents h3{margin-top:2.74rem}}.ds-entity--stanford-page .su-card .su-card__contents a{color:#2e2d29;display:inline-block;font-weight:700;text-decoration:none}@supports ((-webkit-mask-repeat:no-repeat) or (mask-repeat:no-repeat)){.ds-entity--stanford-page .su-card .su-card__contents a:after{content:"";display:inline-block;height:.65em;-webkit-mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0uNDE2LjUxMUExLjUyNSAxLjUyNSAwIDAgMSAyLjYxNC40MjhsMTAuODg5IDEwLjRjLjMxNy4zMDIuNDk3LjcyNy40OTcgMS4xNzIgMCAuNDQ1LS4xOC44Ny0uNDk3IDEuMTcybC0xMC44ODkgMTAuNGExLjUyNSAxLjUyNSAwIDAgMS0yLjE5OC0uMDgzIDEuNjMyIDEuNjMyIDAgMCAxIC4wODEtMi4yNjJMMTAuMTU4IDEyIC40OTggMi43NzJBMS42MzIgMS42MzIgMCAwIDEgLjQxNS41MTJaIiBmaWxsPSIjMkUyRDI5Ii8+PC9zdmc+) no-repeat 0 0;mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0uNDE2LjUxMUExLjUyNSAxLjUyNSAwIDAgMSAyLjYxNC40MjhsMTAuODg5IDEwLjRjLjMxNy4zMDIuNDk3LjcyNy40OTcgMS4xNzIgMCAuNDQ1LS4xOC44Ny0uNDk3IDEuMTcybC0xMC44ODkgMTAuNGExLjUyNSAxLjUyNSAwIDAgMS0yLjE5OC0uMDgzIDEuNjMyIDEuNjMyIDAgMCAxIC4wODEtMi4yNjJMMTAuMTU4IDEyIC40OTggMi43NzJBMS42MzIgMS42MzIgMCAwIDEgLjQxNS41MTJaIiBmaWxsPSIjMkUyRDI5Ii8+PC9zdmc+) no-repeat 0 0;-webkit-mask-size:contain;mask-size:contain;width:.65em}.ds-entity--stanford-page .su-card .su-card__contents a:focus:after,.ds-entity--stanford-page .su-card .su-card__contents a:hover:after{background-color:#2e2d29}.ds-entity--stanford-page .su-card .su-card__contents a:after{background-color:#006cb8;margin-left:.4em;margin-right:.3em;-webkit-transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out,-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out}.ds-entity--stanford-page .su-card .su-card__contents a:focus:after,.ds-entity--stanford-page .su-card .su-card__contents a:hover:after{-webkit-transform:translateX(.2em);transform:translateX(.2em)}}@media only screen and (min-width:0){.ds-entity--stanford-page .su-card .su-card__contents a{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.ds-entity--stanford-page .su-card .su-card__contents a{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.ds-entity--stanford-page .su-card .su-card__contents a{margin-bottom:1.9rem}}.ds-entity--stanford-page .su-card .su-card__contents a:hover{color:#2e2d29;text-decoration:underline}.ds-entity--stanford-page .su-card .su-card__contents a:focus{outline:none}.ds-entity--stanford-page .su-card .su-card__contents a:after{background-color:#b1040e;height:1.2rem;width:1.2rem}.ds-entity--stanford-page .su-card .su-card__contents a:hover:after{background-color:#b1040e}@media (max-width:767px){.ds-entity--stanford-page .su-card img{display:-webkit-box;display:-ms-flexbox;display:flex}}.js-pager__items{text-align:center}.js-pager__items .pager__item{display:inline-block}.js-pager__items .pager__item .button{background-color:#b1040e;color:#fff;font-size:2.5rem;padding:1.3rem 2.8rem 1.5rem}.js-pager__items .pager__item .button:after,.js-pager__items .pager__item .button:before{background-color:#fff;color:#b1040e}.js-pager__items .pager__item .button:focus,.js-pager__items .pager__item .button:hover{background-color:#2e2d29;color:#fff}.js-pager__items .pager__item .button:focus:after,.js-pager__items .pager__item .button:focus:before,.js-pager__items .pager__item .button:hover:after,.js-pager__items .pager__item .button:hover:before{background-color:#fff}.js-pager__items .pager__item .button:focus{-webkit-box-shadow:0 0 3px #53565a,0 0 7px #53565a;box-shadow:0 0 3px #53565a,0 0 7px #53565a}@media only screen and (min-width:768px){.js-pager__items .pager__item .button{font-size:2.8rem;padding:1.5rem 3rem 1.8rem}}@media only screen and (min-width:1500px){.js-pager__items .pager__item .button{font-size:3rem}}@media only screen and (min-width:0){.views-infinite-scroll-content-wrapper{margin-bottom:6.4rem}}@media only screen and (min-width:768px){.views-infinite-scroll-content-wrapper{margin-bottom:7.2rem}}@media only screen and (min-width:1500px){.views-infinite-scroll-content-wrapper{margin-bottom:7.6rem}}@media only screen and (min-width:0){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:11.2rem}}@media only screen and (min-width:768px){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:12.6rem}}@media only screen and (min-width:1500px){.views-infinite-scroll-content-wrapper+.js-pager__items{margin-bottom:13.3rem}}@media (min-width:1200px){.views-infinite-scroll-content-wrapper div:first-child .su-basic-page-types-list{padding-top:0}}.su-basic-page-types-view-row{-webkit-box-pack:justify;-ms-flex-pack:justify;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.su-basic-page-types-view-column{margin:0;width:calc(33% - 40px)}@media (max-width:991px){.su-basic-page-types-view-column{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.su-basic-page-types-view-column:first-child:last-child{width:100%}.su-basic-page-types-view-column:first-child:nth-last-child(2),.su-basic-page-types-view-column:nth-child(2):last-child{width:calc(50% - 40px)}@media only screen and (min-width:0){.su-basic-page-types-view-column:nth-child(n+4){margin-top:5.12rem}}@media only screen and (min-width:768px){.su-basic-page-types-view-column:nth-child(n+4){margin-top:5.76rem}}@media only screen and (min-width:1500px){.su-basic-page-types-view-column:nth-child(n+4){margin-top:6.08rem}} \ No newline at end of file diff --git a/modules/stanford_basic_page_types/lib/scss/component/stanford-page/_basic-page-types.scss b/modules/stanford_basic_page_types/lib/scss/component/stanford-page/_basic-page-types.scss index b9d60ba5..fc3fc6c5 100644 --- a/modules/stanford_basic_page_types/lib/scss/component/stanford-page/_basic-page-types.scss +++ b/modules/stanford_basic_page_types/lib/scss/component/stanford-page/_basic-page-types.scss @@ -25,16 +25,21 @@ } .su-card__contents { - @include modular-spacing("padding", 1); + padding: 3rem; h2 { @include type-c; @include grid-media-max("sm") { @include modular-spacing("margin-top", 1); } + } + + h3 { + font-size: 1.4em; - margin-left: 0; - margin-right: 0; + @include grid-media-max("sm") { + @include modular-spacing("margin-top", 1); + } } a { diff --git a/modules/stanford_courses/dist/css/course-vertical-teaser.css b/modules/stanford_courses/dist/css/course-vertical-teaser.css index 16a470a5..866b44b1 100644 --- a/modules/stanford_courses/dist/css/course-vertical-teaser.css +++ b/modules/stanford_courses/dist/css/course-vertical-teaser.css @@ -1 +1 @@ -.su-card.su-course-vertical-teaser,.su-course-vertical-teaser{-ms-grid-columns:100%;display:-ms-grid;display:grid;grid-template-areas:"header" "headline";grid-template-columns:100%}@media only screen and (min-width:0){.su-course-vertical-teaser{padding-top:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser{padding-top:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser{padding-top:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser{margin-bottom:6.08rem}}.su-course-vertical-teaser:focus-within{outline:1px auto -webkit-focus-ring-color}.su-course-vertical-teaser .su-course-vertical-teaser__link:after{display:none}.su-course-vertical-teaser .su-course-header{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-left:3.8rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-right:3.8rem}}.su-course-vertical-teaser .su-course-header .su-course-academic-year,.su-course-vertical-teaser .su-course-header .su-course-code,.su-course-vertical-teaser .su-course-header .su-course-subject{display:inline}.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{font-size:1.5625em;letter-spacing:-.012em}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.8rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.8rem}}.su-course-vertical-teaser .su-course-link h2.su-link--external:after,.su-course-vertical-teaser .su-course-link h3.su-link--external:after{background-color:#b1040e;height:20px;width:20px}.su-course-vertical-teaser .su-course-link a{color:#b1040e;font-weight:700;text-decoration:none}.su-course-vertical-teaser .su-course-link a:active,.su-course-vertical-teaser .su-course-link a:focus,.su-course-vertical-teaser .su-course-link a:hover{text-decoration:underline} \ No newline at end of file +.su-card.su-course-vertical-teaser,.su-course-vertical-teaser{-ms-grid-columns:100%;display:-ms-grid;display:grid;grid-template-areas:"header" "headline";grid-template-columns:100%}@media only screen and (min-width:0){.su-course-vertical-teaser{padding-top:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser{padding-top:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser{padding-top:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser{margin-bottom:6.08rem}}.su-course-vertical-teaser:focus-within{outline:1px auto -webkit-focus-ring-color}.su-course-vertical-teaser .su-course-vertical-teaser__link:after{display:none}.su-course-vertical-teaser .su-course-header{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-left:3.8rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-header{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-header{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-header{margin-right:3.8rem}}.su-course-vertical-teaser .su-course-header .su-course-academic-year,.su-course-vertical-teaser .su-course-header .su-course-code,.su-course-vertical-teaser .su-course-header .su-course-subject{display:inline}.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{font-size:1.5625em;letter-spacing:-.012em}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-left:3.8rem}}@media only screen and (min-width:0){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-course-vertical-teaser .su-course-link h2,.su-course-vertical-teaser .su-course-link h3{margin-right:3.8rem}}.su-course-vertical-teaser .su-course-link h2.su-link--external:after,.su-course-vertical-teaser .su-course-link h3.su-link--external:after{background-color:#b1040e;height:20px;width:20px}.su-course-vertical-teaser .su-course-link h3{font-size:1.4em}.su-course-vertical-teaser .su-course-link a{color:#b1040e;font-weight:700;text-decoration:none}.su-course-vertical-teaser .su-course-link a:active,.su-course-vertical-teaser .su-course-link a:focus,.su-course-vertical-teaser .su-course-link a:hover{text-decoration:underline} \ No newline at end of file diff --git a/modules/stanford_courses/lib/scss/course-vertical-teaser.scss b/modules/stanford_courses/lib/scss/course-vertical-teaser.scss index 60a81da9..a9f7274b 100644 --- a/modules/stanford_courses/lib/scss/course-vertical-teaser.scss +++ b/modules/stanford_courses/lib/scss/course-vertical-teaser.scss @@ -68,6 +68,10 @@ } } + h3 { + font-size: 1.4em; + } + a { color: $su-color-bright-red; font-weight: $su-font-bold; diff --git a/modules/stanford_events/dist/css/stanford_events.event-card.css b/modules/stanford_events/dist/css/stanford_events.event-card.css index 1e1f6311..8366aee0 100644 --- a/modules/stanford_events/dist/css/stanford_events.event-card.css +++ b/modules/stanford_events/dist/css/stanford_events.event-card.css @@ -1 +1 @@ -.su-card .su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.su-event-list-item__date{max-width:45px}@media only screen and (min-width:0){.su-event-list-item__date{margin-bottom:1.6rem;margin-right:4rem}}@media only screen and (min-width:768px){.su-event-list-item__date{margin-bottom:1.8rem;margin-right:4.5rem}}@media only screen and (min-width:1500px){.su-event-list-item__date{margin-bottom:1.9rem;margin-right:4.75rem}}@media (max-width:767px){.su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}}.su-event-list-item__date span{display:block}.su-event-list-item__date .su-event-end-month,.su-event-list-item__date .su-event-start-month{color:#2e2d29;font-size:1em;font-weight:700;text-transform:uppercase}.su-event-list-item__date .su-event-list-item__date__seperator{color:#2e2d29;font-size:1.8rem;line-height:1.3;white-space:nowrap}@media (max-width:767px){.su-event-list-item__date .su-event-list-item__date__seperator{font-size:1.6rem}}@media only screen and (min-width:0){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.9rem}}@media (max-width:767px){.su-event-list-item__date .su-event-list-item__date__seperator{min-width:45px}}.su-event-list-item__date .su-event-end-date,.su-event-list-item__date .su-event-start-date{color:#2e2d29;font-size:2.44141em;font-weight:700}.su-event-card{padding:3rem 3rem 3.2rem}@media only screen and (min-width:768px){.su-event-card{padding:3.6rem 3.6rem 4.5rem}}@media only screen and (min-width:1500px){.su-event-card{padding:3.8rem 3.8rem 4.8rem}}.su-event-card .event_list_item__type{display:inline-block;padding-bottom:1.5rem}@media only screen and (min-width:768px){.su-event-card .event_list_item__type{padding-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-event-card .event_list_item__type{padding-bottom:1.9rem}}.su-event-card.su-card .su-event-list-item__details .event-list-item__type a{color:#b1040e;font-size:1.8rem;font-weight:400;line-height:1.3;text-decoration:none}@media (max-width:767px){.su-event-card.su-card .su-event-list-item__details .event-list-item__type a{font-size:1.6rem}}.su-event-card.su-card .su-event-list-item__details .event-list-item__type a:active,.su-event-card.su-card .su-event-list-item__details .event-list-item__type a:focus,.su-event-card.su-card .su-event-list-item__details .event-list-item__type a:hover{color:#2e2d29;text-decoration:underline}.su-event-card h2{font-size:1.95312em}.su-event-card h2 a{color:#2e2d29;font-weight:700;text-decoration:none}.su-event-card h2 a:active,.su-event-card h2 a:focus,.su-event-card h2 a:hover{color:#b1040e;text-decoration:underline}.su-event-card h2 a:active:after,.su-event-card h2 a:focus:after,.su-event-card h2 a:hover:after{background-color:#b1040e}.su-event-card h2 a:after{background-color:#b1040e;height:20px;width:20px}.stanford-events-more-events-block .event_list_item__type a{color:#b1040e;font-weight:400;text-decoration:none}.stanford-events-more-events-block .event_list_item__type a:focus,.stanford-events-more-events-block .event_list_item__type a:hover{color:#2e2d29;text-decoration:underline}.views-field-su-event-date-time{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8rem;line-height:1.3}@media (max-width:767px){.views-field-su-event-date-time{font-size:1.6rem}}@media only screen and (min-width:0){.views-field-su-event-date-time{margin-bottom:.8rem}}@media only screen and (min-width:768px){.views-field-su-event-date-time{margin-bottom:.9rem}}@media only screen and (min-width:1500px){.views-field-su-event-date-time{margin-bottom:.95rem}}@media only screen and (min-width:0){.views-field-su-event-date-time span{padding-right:.8rem}}@media only screen and (min-width:768px){.views-field-su-event-date-time span{padding-right:.9rem}}@media only screen and (min-width:1500px){.views-field-su-event-date-time span{padding-right:.95rem}}.views-field-su-event-date-time span:before{color:#2e2d29;font-family:Font Awesome\ 5 Free;font-weight:600}.date-icon:before{content:"\f073"}@media (max-width:767px){.date-icon:before{left:-16px}}@media only screen and (min-width:992px) and (min-width:0){.stanford-events.cards .views-row:not(:first-of-type){padding-top:5.12rem}}@media only screen and (min-width:992px) and (min-width:768px){.stanford-events.cards .views-row:not(:first-of-type){padding-top:5.76rem}}@media only screen and (min-width:992px) and (min-width:1500px){.stanford-events.cards .views-row:not(:first-of-type){padding-top:6.08rem}}.su-event-card.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{font-size:1.25em;font-weight:700}@media only screen and (min-width:0){.su-event-card.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.su-event-card.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.su-event-card.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:3.8rem}}.su-event-card.su-event-list-item .su-event-list-item__details .event_list_item__type a{color:#b1040e;font-weight:400;text-decoration:none}.su-event-card.su-event-list-item .su-event-list-item__details .event_list_item__type a:focus,.su-event-card.su-event-list-item .su-event-list-item__details .event_list_item__type a:hover{color:#2e2d29;text-decoration:underline}.su-event-card.su-event-list-item .su-event-list-item__details h2{font-size:1.5625em}.su-event-card.su-event-list-item .su-event-list-item__details h2>a{color:#2e2d29;text-decoration:none}.su-event-card.su-event-list-item .su-event-list-item__details h2>a:focus,.su-event-card.su-event-list-item .su-event-list-item__details h2>a:hover{color:#b1040e;text-decoration:underline}@media (min-width:992px){.stanford-events.cards .views-view-grid .flex-container{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.stanford-events.cards .views-view-grid .flex-container>div{margin-right:2rem}}@media only screen and (min-width:992px) and (min-width:768px){.stanford-events.cards .views-view-grid .flex-container>div{margin-right:2.6rem}}@media only screen and (min-width:992px) and (min-width:1500px){.stanford-events.cards .views-view-grid .flex-container>div{margin-right:2.7rem}}@media (min-width:992px){.stanford-events.cards .views-view-grid .flex-container div:last-of-type{margin-right:0}} \ No newline at end of file +.su-card .su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.su-event-list-item__date{max-width:45px}@media only screen and (min-width:0){.su-event-list-item__date{margin-bottom:1.6rem;margin-right:4rem}}@media only screen and (min-width:768px){.su-event-list-item__date{margin-bottom:1.8rem;margin-right:4.5rem}}@media only screen and (min-width:1500px){.su-event-list-item__date{margin-bottom:1.9rem;margin-right:4.75rem}}@media (max-width:767px){.su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}}.su-event-list-item__date span{display:block}.su-event-list-item__date .su-event-end-month,.su-event-list-item__date .su-event-start-month{color:#2e2d29;font-size:1em;font-weight:700;text-transform:uppercase}.su-event-list-item__date .su-event-list-item__date__seperator{color:#2e2d29;font-size:1.8rem;line-height:1.3;white-space:nowrap}@media (max-width:767px){.su-event-list-item__date .su-event-list-item__date__seperator{font-size:1.6rem}}@media only screen and (min-width:0){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-event-list-item__date .su-event-list-item__date__seperator{margin-bottom:1.9rem}}@media (max-width:767px){.su-event-list-item__date .su-event-list-item__date__seperator{min-width:45px}}.su-event-list-item__date .su-event-end-date,.su-event-list-item__date .su-event-start-date{color:#2e2d29;font-size:2.44141em;font-weight:700}.su-event-card{padding:3rem 3rem 3.2rem}@media only screen and (min-width:768px){.su-event-card{padding:3.6rem 3.6rem 4.5rem}}@media only screen and (min-width:1500px){.su-event-card{padding:3.8rem 3.8rem 4.8rem}}.su-event-card .event_list_item__type{display:inline-block;padding-bottom:1.5rem}@media only screen and (min-width:768px){.su-event-card .event_list_item__type{padding-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-event-card .event_list_item__type{padding-bottom:1.9rem}}.su-event-card.su-card .su-event-list-item__details .event-list-item__type a{color:#b1040e;font-size:1.8rem;font-weight:400;line-height:1.3;text-decoration:none}@media (max-width:767px){.su-event-card.su-card .su-event-list-item__details .event-list-item__type a{font-size:1.6rem}}.su-event-card.su-card .su-event-list-item__details .event-list-item__type a:active,.su-event-card.su-card .su-event-list-item__details .event-list-item__type a:focus,.su-event-card.su-card .su-event-list-item__details .event-list-item__type a:hover{color:#2e2d29;text-decoration:underline}.su-event-card h2{font-size:1.95312em}.su-event-card h2 a{color:#2e2d29;font-weight:700;text-decoration:none}.su-event-card h2 a:active,.su-event-card h2 a:focus,.su-event-card h2 a:hover{color:#b1040e;text-decoration:underline}.su-event-card h2 a:active:after,.su-event-card h2 a:focus:after,.su-event-card h2 a:hover:after{background-color:#b1040e}.su-event-card h2 a:after{background-color:#b1040e;height:20px;width:20px}.stanford-events-more-events-block .event_list_item__type a{color:#b1040e;font-weight:400;text-decoration:none}.stanford-events-more-events-block .event_list_item__type a:focus,.stanford-events-more-events-block .event_list_item__type a:hover{color:#2e2d29;text-decoration:underline}.views-field-su-event-date-time{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:1.8rem;line-height:1.3}@media (max-width:767px){.views-field-su-event-date-time{font-size:1.6rem}}@media only screen and (min-width:0){.views-field-su-event-date-time{margin-bottom:.8rem}}@media only screen and (min-width:768px){.views-field-su-event-date-time{margin-bottom:.9rem}}@media only screen and (min-width:1500px){.views-field-su-event-date-time{margin-bottom:.95rem}}@media only screen and (min-width:0){.views-field-su-event-date-time span{padding-right:.8rem}}@media only screen and (min-width:768px){.views-field-su-event-date-time span{padding-right:.9rem}}@media only screen and (min-width:1500px){.views-field-su-event-date-time span{padding-right:.95rem}}.views-field-su-event-date-time span:before{color:#2e2d29;font-family:Font Awesome\ 5 Free;font-weight:600}.date-icon:before{content:"\f073"}@media (max-width:767px){.date-icon:before{left:-16px}}@media only screen and (min-width:992px) and (min-width:0){.stanford-events.cards .views-row:not(:first-of-type){padding-top:5.12rem}}@media only screen and (min-width:992px) and (min-width:768px){.stanford-events.cards .views-row:not(:first-of-type){padding-top:5.76rem}}@media only screen and (min-width:992px) and (min-width:1500px){.stanford-events.cards .views-row:not(:first-of-type){padding-top:6.08rem}}.su-event-card.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{font-size:1.25em;font-weight:700}@media only screen and (min-width:0){.su-event-card.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.su-event-card.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.su-event-card.su-event-list-item .su-event-list-item__details .event-list-item__subheadline{margin-bottom:3.8rem}}.su-event-card.su-event-list-item .su-event-list-item__details .event_list_item__type a{color:#b1040e;font-weight:400;text-decoration:none}.su-event-card.su-event-list-item .su-event-list-item__details .event_list_item__type a:focus,.su-event-card.su-event-list-item .su-event-list-item__details .event_list_item__type a:hover{color:#2e2d29;text-decoration:underline}.su-event-card.su-event-list-item .su-event-list-item__details h2,.su-event-card.su-event-list-item .su-event-list-item__details h3{font-size:1.5625em}.su-event-card.su-event-list-item .su-event-list-item__details h2>a,.su-event-card.su-event-list-item .su-event-list-item__details h3>a{color:#2e2d29;text-decoration:none}.su-event-card.su-event-list-item .su-event-list-item__details h2>a:focus,.su-event-card.su-event-list-item .su-event-list-item__details h2>a:hover,.su-event-card.su-event-list-item .su-event-list-item__details h3>a:focus,.su-event-card.su-event-list-item .su-event-list-item__details h3>a:hover{color:#b1040e;text-decoration:underline}.su-event-card.su-event-list-item .su-event-list-item__details h3{font-size:1.4em}@media (min-width:992px){.stanford-events.cards .views-view-grid .flex-container{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.stanford-events.cards .views-view-grid .flex-container>div{margin-right:2rem}}@media only screen and (min-width:992px) and (min-width:768px){.stanford-events.cards .views-view-grid .flex-container>div{margin-right:2.6rem}}@media only screen and (min-width:992px) and (min-width:1500px){.stanford-events.cards .views-view-grid .flex-container>div{margin-right:2.7rem}}@media (min-width:992px){.stanford-events.cards .views-view-grid .flex-container div:last-of-type{margin-right:0}} \ No newline at end of file diff --git a/modules/stanford_events/lib/scss/components/event-card/stanford_events.event-card.scss b/modules/stanford_events/lib/scss/components/event-card/stanford_events.event-card.scss index 78eead45..183f8a85 100644 --- a/modules/stanford_events/lib/scss/components/event-card/stanford_events.event-card.scss +++ b/modules/stanford_events/lib/scss/components/event-card/stanford_events.event-card.scss @@ -43,7 +43,8 @@ } } - h2 { + h2, + h3 { @include modular-typography(2); > a { @@ -57,6 +58,10 @@ } } } + + h3 { + font-size: 1.4em; + } } } } diff --git a/modules/stanford_news/dist/css/news-vertical-teaser.css b/modules/stanford_news/dist/css/news-vertical-teaser.css index 834dac6d..d2b26738 100644 --- a/modules/stanford_news/dist/css/news-vertical-teaser.css +++ b/modules/stanford_news/dist/css/news-vertical-teaser.css @@ -1 +1 @@ -.news-vertical-teaser__footer a,.stanford-news--cards>.more-link a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:400;line-height:1;text-align:center;text-decoration:none;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.news-vertical-teaser__footer a a,.stanford-news--cards>.more-link a a{font-weight:400;text-decoration:none}.news-vertical-teaser__footer a:active,.news-vertical-teaser__footer a:focus,.news-vertical-teaser__footer a:hover,.stanford-news--cards>.more-link a:active,.stanford-news--cards>.more-link a:focus,.stanford-news--cards>.more-link a:hover{text-decoration:underline}@media (max-width:991px){.stanford-news--cards .flex-container .more-news-view{display:block}.stanford-news--cards .flex-container .more-news-view .flex-4-of-12{max-width:100%}}.stanford-news--cards>.more-link{text-align:center}@media only screen and (min-width:0){.stanford-news--cards>.more-link{margin-bottom:14.4rem;margin-top:4rem}}@media only screen and (min-width:768px){.stanford-news--cards>.more-link{margin-bottom:16.2rem;margin-top:4.5rem}}@media only screen and (min-width:1500px){.stanford-news--cards>.more-link{margin-bottom:17.1rem;margin-top:4.75rem}}.stanford-news--cards>.more-link a{background-color:#b1040e;color:#fff;padding:1rem 2rem 1.15rem}.stanford-news--cards>.more-link a:after,.stanford-news--cards>.more-link a:before{background-color:#fff;color:#b1040e}.stanford-news--cards>.more-link a:focus,.stanford-news--cards>.more-link a:hover{background-color:#2e2d29;color:#fff}.stanford-news--cards>.more-link a:focus:after,.stanford-news--cards>.more-link a:focus:before,.stanford-news--cards>.more-link a:hover:after,.stanford-news--cards>.more-link a:hover:before{background-color:#fff}.stanford-news--cards>.more-link a:focus{-webkit-box-shadow:0 0 3px #53565a,0 0 7px #53565a;box-shadow:0 0 3px #53565a,0 0 7px #53565a}.more-news-view>div:nth-child(-n+3){-webkit-box-flex:0;-ms-flex:none;flex:none;max-width:980px}.more-news-view>div:first-child:nth-last-child(2),.more-news-view>div:first-child:nth-last-child(2)~div{width:45%}@media (max-width:991px){.more-news-view>div:first-child:nth-last-child(2),.more-news-view>div:first-child:nth-last-child(2)~div{width:100%}}.more-news-view>div:first-child:nth-last-child(3),.more-news-view>div:first-child:nth-last-child(3)~div{width:30%}@media (max-width:991px){.more-news-view>div:first-child:nth-last-child(3),.more-news-view>div:first-child:nth-last-child(3)~div{width:100%}}.more-news-view>div:only-of-type{-webkit-box-flex:0;-ms-flex:none;flex:none;margin:0 auto;max-width:980px;width:100%}.stanford-news-vertical-teaser-term.block-views .more-news-view>div:only-of-type{margin:unset;max-width:25%;width:100%}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.8rem}}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.8rem}}.su-news-vertical-teaser.su-card{margin:0 auto;max-width:980px;overflow:auto}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card{margin-bottom:3.8rem}}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.9rem}}.su-news-vertical-teaser.su-card .su-media__wrapper iframe,.su-news-vertical-teaser.su-card .su-media__wrapper img,.su-news-vertical-teaser.su-card .su-media__wrapper picture{min-width:100%;width:100%}@media only screen and (min-width:992px){.su-news-vertical-teaser.su-card .su-media__wrapper iframe{min-height:489px}}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link{display:block}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:hover h2{text-decoration:underline}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:focus{outline:none}.su-news-vertical-teaser.su-card .su-link{color:#2e2d29;display:inline-block;font-size:1.5625em;font-weight:700;letter-spacing:-.012em}.su-news-vertical-teaser.su-card .su-link:after{background-color:#b1040e;font-size:1.5625em;letter-spacing:-.012em}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.07rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.2rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.27rem}}.su-news-vertical-teaser.su-card .su-link--external:after{height:1.2rem;width:1.2rem}.su-news-vertical-teaser.su-card .su-card__contents:not(.su-card--icon){padding-top:0}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics{font-size:1.8rem;line-height:1.3}@media (max-width:767px){.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics{font-size:1.6rem}}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a{color:#b1040e;font-weight:400;text-decoration:none}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a:focus,.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a:hover{text-decoration:underline}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics ul{list-style:none;margin:0;padding:0}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li{display:inline-block}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li:after{content:",";margin-right:5px}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li:last-child:after{content:"";margin-right:0}.su-news-vertical-teaser.su-card:focus-within{outline:1px auto -webkit-focus-ring-color}article>.su-news-vertical-teaser__link.su-link.su-link--external{font-size:1em}article>.su-news-vertical-teaser__link.su-link.su-link--external:after{display:none}@media only screen and (min-width:0){.news-vertical-teaser__footer{margin:2.31rem}}@media only screen and (min-width:768px){.news-vertical-teaser__footer{margin:2.6rem}}@media only screen and (min-width:1500px){.news-vertical-teaser__footer{margin:2.74rem}}.news-vertical-teaser__footer a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem}.news-vertical-teaser__footer a:after,.news-vertical-teaser__footer a:before{background-color:#b1040e;color:#fff}.news-vertical-teaser__footer a:focus,.news-vertical-teaser__footer a:focus:after,.news-vertical-teaser__footer a:focus:before,.news-vertical-teaser__footer a:hover,.news-vertical-teaser__footer a:hover:after,.news-vertical-teaser__footer a:hover:before{background-color:#fff;color:#2e2d29}.news-vertical-teaser__footer a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.news-vertical-teaser__footer a:hover:after,.news-vertical-teaser__footer a:hover:before{background-color:#2e2d29;color:#fff}.news-vertical-teaser__footer a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.news-vertical-teaser__footer a:focus:after,.news-vertical-teaser__footer a:focus:before{background-color:#2e2d29;color:#fff}@media only screen and (min-width:0){.stanford-news-terms--results-for{margin-bottom:4rem}}@media only screen and (min-width:768px){.stanford-news-terms--results-for{margin-bottom:4.5rem}}@media only screen and (min-width:1500px){.stanford-news-terms--results-for{margin-bottom:4.75rem}} \ No newline at end of file +.news-vertical-teaser__footer a,.stanford-news--cards>.more-link a{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;cursor:pointer;display:inline-block;font-family:Source Sans\ 3,Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:400;line-height:1;text-align:center;text-decoration:none;-webkit-transition:background-color .25s ease-in-out,color .25s ease-in-out;transition:background-color .25s ease-in-out,color .25s ease-in-out;width:auto}.news-vertical-teaser__footer a a,.stanford-news--cards>.more-link a a{font-weight:400;text-decoration:none}.news-vertical-teaser__footer a:active,.news-vertical-teaser__footer a:focus,.news-vertical-teaser__footer a:hover,.stanford-news--cards>.more-link a:active,.stanford-news--cards>.more-link a:focus,.stanford-news--cards>.more-link a:hover{text-decoration:underline}@media (max-width:991px){.stanford-news--cards .flex-container .more-news-view{display:block}.stanford-news--cards .flex-container .more-news-view .flex-4-of-12{max-width:100%}}.stanford-news--cards>.more-link{text-align:center}@media only screen and (min-width:0){.stanford-news--cards>.more-link{margin-bottom:14.4rem;margin-top:4rem}}@media only screen and (min-width:768px){.stanford-news--cards>.more-link{margin-bottom:16.2rem;margin-top:4.5rem}}@media only screen and (min-width:1500px){.stanford-news--cards>.more-link{margin-bottom:17.1rem;margin-top:4.75rem}}.stanford-news--cards>.more-link a{background-color:#b1040e;color:#fff;padding:1rem 2rem 1.15rem}.stanford-news--cards>.more-link a:after,.stanford-news--cards>.more-link a:before{background-color:#fff;color:#b1040e}.stanford-news--cards>.more-link a:focus,.stanford-news--cards>.more-link a:hover{background-color:#2e2d29;color:#fff}.stanford-news--cards>.more-link a:focus:after,.stanford-news--cards>.more-link a:focus:before,.stanford-news--cards>.more-link a:hover:after,.stanford-news--cards>.more-link a:hover:before{background-color:#fff}.stanford-news--cards>.more-link a:focus{-webkit-box-shadow:0 0 3px #53565a,0 0 7px #53565a;box-shadow:0 0 3px #53565a,0 0 7px #53565a}.more-news-view>div:nth-child(-n+3){-webkit-box-flex:0;-ms-flex:none;flex:none;max-width:980px}.more-news-view>div:first-child:nth-last-child(2),.more-news-view>div:first-child:nth-last-child(2)~div{width:45%}@media (max-width:991px){.more-news-view>div:first-child:nth-last-child(2),.more-news-view>div:first-child:nth-last-child(2)~div{width:100%}}.more-news-view>div:first-child:nth-last-child(3),.more-news-view>div:first-child:nth-last-child(3)~div{width:30%}@media (max-width:991px){.more-news-view>div:first-child:nth-last-child(3),.more-news-view>div:first-child:nth-last-child(3)~div{width:100%}}.more-news-view>div:only-of-type{-webkit-box-flex:0;-ms-flex:none;flex:none;margin:0 auto;max-width:980px;width:100%}.stanford-news-vertical-teaser-term.block-views .more-news-view>div:only-of-type{margin:unset;max-width:25%;width:100%}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.31rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-bottom:2.74rem}}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-left:3.8rem}}@media only screen and (min-width:0){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser h2,.su-news-vertical-teaser h3{margin-right:3.8rem}}.su-news-vertical-teaser.su-card{margin:0 auto;max-width:980px;overflow:auto}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card{margin-bottom:3.2rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card{margin-bottom:3.8rem}}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.6rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.8rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card .su-media__wrapper{margin-bottom:1.9rem}}.su-news-vertical-teaser.su-card .su-media__wrapper iframe,.su-news-vertical-teaser.su-card .su-media__wrapper img,.su-news-vertical-teaser.su-card .su-media__wrapper picture{min-width:100%;width:100%}@media only screen and (min-width:992px){.su-news-vertical-teaser.su-card .su-media__wrapper iframe{min-height:489px}}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link{display:block}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:hover h2,.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:hover h3{text-decoration:underline}.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link:focus{outline:none}@media (max-width:575px){.su-news-vertical-teaser.su-card .su-news-vertical-teaser__link{padding-top:3rem}}.su-news-vertical-teaser.su-card .su-link{color:#2e2d29;display:inline-block;font-size:1.5625em;font-weight:700;letter-spacing:-.012em}.su-news-vertical-teaser.su-card .su-link:after{background-color:#b1040e;font-size:1.5625em;letter-spacing:-.012em}@media only screen and (min-width:0){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.07rem}}@media only screen and (min-width:768px){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.2rem}}@media only screen and (min-width:1500px){.su-news-vertical-teaser.su-card .su-link:after{margin-left:1.27rem}}.su-news-vertical-teaser.su-card h3.su-link{font-size:1.4em}.su-news-vertical-teaser.su-card .su-link--external:after{height:1.2rem;width:1.2rem}.su-news-vertical-teaser.su-card .su-card__contents:not(.su-card--icon){padding-top:0}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics{font-size:1.8rem;line-height:1.3}@media (max-width:767px){.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics{font-size:1.6rem}}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a{color:#b1040e;font-weight:400;text-decoration:none}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a:focus,.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics a:hover{text-decoration:underline}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics ul{list-style:none;margin:0;padding:0}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li{display:inline-block}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li:after{content:",";margin-right:5px}.su-news-vertical-teaser.su-card .su-card__contents .news-vertical-teaser__topics li:last-child:after{content:"";margin-right:0}.su-news-vertical-teaser.su-card:focus-within{outline:1px auto -webkit-focus-ring-color}article>.su-news-vertical-teaser__link.su-link.su-link--external{font-size:1em}article>.su-news-vertical-teaser__link.su-link.su-link--external:after{display:none}@media only screen and (min-width:0){.news-vertical-teaser__footer{margin:2.31rem}}@media only screen and (min-width:768px){.news-vertical-teaser__footer{margin:2.6rem}}@media only screen and (min-width:1500px){.news-vertical-teaser__footer{margin:2.74rem}}.news-vertical-teaser__footer a{background-color:#fff;-webkit-box-shadow:inset 0 0 0 2px #b1040e;box-shadow:inset 0 0 0 2px #b1040e;color:#b1040e;padding:1rem 2rem 1.15rem}.news-vertical-teaser__footer a:after,.news-vertical-teaser__footer a:before{background-color:#b1040e;color:#fff}.news-vertical-teaser__footer a:focus,.news-vertical-teaser__footer a:focus:after,.news-vertical-teaser__footer a:focus:before,.news-vertical-teaser__footer a:hover,.news-vertical-teaser__footer a:hover:after,.news-vertical-teaser__footer a:hover:before{background-color:#fff;color:#2e2d29}.news-vertical-teaser__footer a:hover{-webkit-box-shadow:inset 0 0 0 2px #2e2d29;box-shadow:inset 0 0 0 2px #2e2d29}.news-vertical-teaser__footer a:hover:after,.news-vertical-teaser__footer a:hover:before{background-color:#2e2d29;color:#fff}.news-vertical-teaser__footer a:focus{-webkit-box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a;box-shadow:inset 0 0 0 2px #2e2d29,0 0 3px #53565a,0 0 7px #53565a}.news-vertical-teaser__footer a:focus:after,.news-vertical-teaser__footer a:focus:before{background-color:#2e2d29;color:#fff}@media only screen and (min-width:0){.stanford-news-terms--results-for{margin-bottom:4rem}}@media only screen and (min-width:768px){.stanford-news-terms--results-for{margin-bottom:4.5rem}}@media only screen and (min-width:1500px){.stanford-news-terms--results-for{margin-bottom:4.75rem}} \ No newline at end of file diff --git a/modules/stanford_news/lib/scss/components/news-vertical-teaser/_news-vertical-teaser.scss b/modules/stanford_news/lib/scss/components/news-vertical-teaser/_news-vertical-teaser.scss index 39a7d18c..97bbac88 100644 --- a/modules/stanford_news/lib/scss/components/news-vertical-teaser/_news-vertical-teaser.scss +++ b/modules/stanford_news/lib/scss/components/news-vertical-teaser/_news-vertical-teaser.scss @@ -115,7 +115,8 @@ display: block; &:hover { - h2 { + h2, + h3 { text-decoration: underline; } } @@ -123,6 +124,10 @@ &:focus { outline: none; } + + @include grid-media-max("xs") { + padding-top: 3rem; + } } // Action title link. @@ -138,8 +143,15 @@ @include modular-spacing('margin-left', -1); background-color: $su-color-bright-red; } + } + h3 { + &.su-link { + font-size: 1.4em; + } + } + .su-link--external { &::after { height: 1.2rem; diff --git a/modules/stanford_profile_styles/dist/css/component/node/stanford_page.css b/modules/stanford_profile_styles/dist/css/component/node/stanford_page.css index f97ad96c..03b1fe33 100644 --- a/modules/stanford_profile_styles/dist/css/component/node/stanford_page.css +++ b/modules/stanford_profile_styles/dist/css/component/node/stanford_page.css @@ -1 +1 @@ -.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{margin:0 auto;max-width:calc(100vw - 40px);width:100%}@media only screen and (min-width:576px){.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{max-width:calc(100vw - 60px)}}@media only screen and (min-width:768px){.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{max-width:calc(100vw - 100px)}}@media only screen and (min-width:992px){.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{max-width:880px}}@media only screen and (min-width:1200px){.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{max-width:980px}}.su-page-components div[data-react-columns="12"].ptype-stanford-card,.su-page-components div[data-react-columns="12"].ptype-stanford-cta-list,.su-page-components div[data-react-columns="12"].ptype-stanford-entity,.su-page-components div[data-react-columns="12"].ptype-stanford-gallery,.su-page-components div[data-react-columns="12"].ptype-stanford-image-cta,.su-page-components div[data-react-columns="12"].ptype-stanford-lists,.su-page-components div[data-react-columns="12"].ptype-stanford-media-caption,.su-page-components div[data-react-columns="12"].ptype-stanford-stories,.su-page-components div[data-react-columns="12"].ptype-stanford-wysiwyg{max-width:980px}@media only screen and (min-width:992px) and (max-width:1199px){.su-page-components div[data-react-columns="12"].ptype-stanford-card,.su-page-components div[data-react-columns="12"].ptype-stanford-cta-list,.su-page-components div[data-react-columns="12"].ptype-stanford-entity,.su-page-components div[data-react-columns="12"].ptype-stanford-gallery,.su-page-components div[data-react-columns="12"].ptype-stanford-image-cta,.su-page-components div[data-react-columns="12"].ptype-stanford-lists,.su-page-components div[data-react-columns="12"].ptype-stanford-media-caption,.su-page-components div[data-react-columns="12"].ptype-stanford-stories,.su-page-components div[data-react-columns="12"].ptype-stanford-wysiwyg{margin-left:auto;margin-right:auto;max-width:880px}}.su-page-components div[data-react-columns="12"].ptype-stanford-card img{width:100%}@media (max-width:991px){.jumpstart-ui--three-column .left-region .menu--main,.jumpstart-ui--two-column .left-region .menu--main{display:none}}@media only screen and (min-width:1200px){.jumpstart-ui--three-column>.left-region+.main-region,.jumpstart-ui--two-column>.left-region+.main-region{padding-left:80px}}@media only screen and (min-width:0){.node-stanford-page-su-page-banner{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.node-stanford-page-su-page-banner{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.node-stanford-page-su-page-banner{margin-bottom:6.08rem}}.paragraph--type--stanford-gallery h2,.ptype-stanford-gallery h2{margin:0;text-align:center}.su-person-photo{margin:0 auto;max-width:300px;padding:30px}.su-person-photo img,.su-person-photo picture{border-radius:50%}.ds-entity--stanford-person{text-align:center}@media only screen and (min-width:0){.su-list-unstyled li{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.su-list-unstyled li{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.su-list-unstyled li{margin-bottom:6.08rem}}.su-list-unstyled a{color:#b1040e}.su-list-unstyled a:active,.su-list-unstyled a:focus,.su-list-unstyled a:hover{color:#2e2d29;text-decoration:underline}.paragraph--type--stanford-entity .su-entity-headline h2,.ptype-stanford-entity .su-entity-headline h2,.stanford-shared-tags .su-entity-headline h2{margin:0;text-align:center}@media only screen and (min-width:0){.paragraph--type--stanford-entity .su-entity-item>div,.ptype-stanford-entity .su-entity-item>div,.stanford-shared-tags .su-entity-item>div{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.paragraph--type--stanford-entity .su-entity-item>div,.ptype-stanford-entity .su-entity-item>div,.stanford-shared-tags .su-entity-item>div{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-entity .su-entity-item>div,.ptype-stanford-entity .su-entity-item>div,.stanford-shared-tags .su-entity-item>div{margin-bottom:6.08rem}}.paragraph--type--stanford-entity .su-entity-item a,.ptype-stanford-entity .su-entity-item a,.stanford-shared-tags .su-entity-item a{color:#b1040e}.paragraph--type--stanford-entity .su-entity-item a:active,.paragraph--type--stanford-entity .su-entity-item a:focus,.paragraph--type--stanford-entity .su-entity-item a:hover,.ptype-stanford-entity .su-entity-item a:active,.ptype-stanford-entity .su-entity-item a:focus,.ptype-stanford-entity .su-entity-item a:hover,.stanford-shared-tags .su-entity-item a:active,.stanford-shared-tags .su-entity-item a:focus,.stanford-shared-tags .su-entity-item a:hover{color:#2e2d29;text-decoration:underline}@media only screen and (min-width:576px){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card{display:-webkit-box;display:-ms-flexbox;display:flex}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:3rem;width:25%}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:auto}}@media only screen and (min-width:992px){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item,.stanford-shared-tags[data-react-columns="12"] .su-entity-item{-webkit-box-pack:justify;-ms-flex-pack:justify;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div{margin:0;width:calc(33% - 40px)}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:last-child,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:last-child,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:last-child,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:last-child{width:100%}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:nth-last-child(2),.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:nth-child(2):last-child,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:nth-last-child(2),.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:nth-child(2):last-child,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:nth-last-child(2),.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:nth-child(2):last-child,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:nth-last-child(2),.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(2):last-child,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:nth-last-child(2),.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(2):last-child,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:nth-last-child(2),.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:nth-child(2):last-child{width:calc(50% - 40px)}}@media only screen and (min-width:992px) and (min-width:0){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:nth-child(n+4),.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:nth-child(n+4){margin-top:5.12rem}}@media only screen and (min-width:992px) and (min-width:768px){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:nth-child(n+4),.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:nth-child(n+4){margin-top:5.76rem}}@media only screen and (min-width:992px) and (min-width:1500px){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:nth-child(n+4),.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:nth-child(n+4){margin-top:6.08rem}}.paragraph--type--stanford-entity .su-entity-button,.ptype-stanford-entity .su-entity-button,.stanford-shared-tags .su-entity-button{-webkit-box-pack:center;-ms-flex-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2{color:#2e2d29;display:inline-block;font-weight:700;margin:0 0 3rem}@media only screen and (min-width:768px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2{margin-bottom:3.8rem}}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2:after{background-color:#b1040e}@media only screen and (min-width:0){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2:after{margin-left:1.07rem}}@media only screen and (min-width:768px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2:after{margin-left:1.2rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2:after{margin-left:1.27rem}}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a{color:#2e2d29;text-decoration:none}@supports ((-webkit-mask-repeat:no-repeat) or (mask-repeat:no-repeat)){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:after{content:"";display:inline-block;height:1.2rem;-webkit-mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0uNDE2LjUxMUExLjUyNSAxLjUyNSAwIDAgMSAyLjYxNC40MjhsMTAuODg5IDEwLjRjLjMxNy4zMDIuNDk3LjcyNy40OTcgMS4xNzIgMCAuNDQ1LS4xOC44Ny0uNDk3IDEuMTcybC0xMC44ODkgMTAuNGExLjUyNSAxLjUyNSAwIDAgMS0yLjE5OC0uMDgzIDEuNjMyIDEuNjMyIDAgMCAxIC4wODEtMi4yNjJMMTAuMTU4IDEyIC40OTggMi43NzJBMS42MzIgMS42MzIgMCAwIDEgLjQxNS41MTJaIiBmaWxsPSIjMkUyRDI5Ii8+PC9zdmc+) no-repeat 0 0;mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0uNDE2LjUxMUExLjUyNSAxLjUyNSAwIDAgMSAyLjYxNC40MjhsMTAuODg5IDEwLjRjLjMxNy4zMDIuNDk3LjcyNy40OTcgMS4xNzIgMCAuNDQ1LS4xOC44Ny0uNDk3IDEuMTcybC0xMC44ODkgMTAuNGExLjUyNSAxLjUyNSAwIDAgMS0yLjE5OC0uMDgzIDEuNjMyIDEuNjMyIDAgMCAxIC4wODEtMi4yNjJMMTAuMTU4IDEyIC40OTggMi43NzJBMS42MzIgMS42MzIgMCAwIDEgLjQxNS41MTJaIiBmaWxsPSIjMkUyRDI5Ii8+PC9zdmc+) no-repeat 0 0;-webkit-mask-size:contain;mask-size:contain;width:1.2rem}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after{background-color:#2e2d29}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:after{background-color:#006cb8;margin-left:.4em;margin-right:.3em;-webkit-transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out,-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after{-webkit-transform:translateX(.2em);transform:translateX(.2em)}}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:after{background-color:#b1040e}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:active,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:active,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:active,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:focus,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:hover{color:#b1040e;text-decoration:underline}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:active:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:active:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:active:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after{background-color:#b1040e}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul{list-style:none;margin:0;padding:0}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul li,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul li,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul li{display:inline-block}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a{color:#b1040e;font-size:1.8rem;font-weight:400;line-height:1.3;text-decoration:none}@media (max-width:767px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a{font-size:1.6rem}}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:active,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:focus,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:hover,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:active,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:focus,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:hover,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:active,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:focus,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:hover{color:#2e2d29;text-decoration:underline}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics li:not(:last-of-type):after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics li:not(:last-of-type):after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics li:not(:last-of-type):after{content:",";padding-right:5px}.paragraph--type--stanford-lists,.ptype-stanford-lists{container:paragraph/inline-size}.paragraph--type--stanford-lists .su-list-headline h2,.ptype-stanford-lists .su-list-headline h2{margin:0;text-align:center}.paragraph--type--stanford-lists .su-list-button,.ptype-stanford-lists .su-list-button{-webkit-box-pack:center;-ms-flex-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center}@container paragraph (max-width: 600px){.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists .stanford-events .views-view-grid .views-col,.ptype-stanford-lists .stanford-events .views-view-grid .views-row,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-row{margin-bottom:3.4rem;padding-top:0}@media only screen and (min-width:768px){.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists .stanford-events .views-view-grid .views-col,.ptype-stanford-lists .stanford-events .views-view-grid .views-row,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists .stanford-events .views-view-grid .views-col,.ptype-stanford-lists .stanford-events .views-view-grid .views-row,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-col:last-of-type,.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-row:last-of-type,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-col:last-of-type,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-row:last-of-type,.ptype-stanford-lists .stanford-events .views-view-grid .views-col:last-of-type,.ptype-stanford-lists .stanford-events .views-view-grid .views-row:last-of-type,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-col:last-of-type,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists .view [class*=grid-container],.ptype-stanford-lists .view [class*=grid-container]{-ms-grid-columns:1fr;grid-template-columns:1fr}.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-row{margin-bottom:3.4rem}@media only screen and (min-width:768px){.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-row:last-of-type,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists .views-view-grid .views-row>div,.ptype-stanford-lists .views-view-grid .views-row>div{-webkit-box-flex:0;-ms-flex:none;flex:none;max-width:100%;width:100%}.paragraph--type--stanford-lists .views-view-grid .views-row>div:last-of-type,.ptype-stanford-lists .views-view-grid .views-row>div:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists .su-news-list__item-date+.su-news-list__item .media,.ptype-stanford-lists .su-news-list__item-date+.su-news-list__item .media{margin-top:0}.paragraph--type--stanford-lists .su-news-vertical-teaser.su-card,.ptype-stanford-lists .su-news-vertical-teaser.su-card{margin-bottom:inherit}.paragraph--type--stanford-lists .su-event-list-item,.ptype-stanford-lists .su-event-list-item{display:block}.paragraph--type--stanford-lists .su-basic-page-types-list img,.paragraph--type--stanford-lists .su-basic-page-types-list picture,.paragraph--type--stanford-lists .su-news-list img,.paragraph--type--stanford-lists .su-news-list picture,.ptype-stanford-lists .su-basic-page-types-list img,.ptype-stanford-lists .su-basic-page-types-list picture,.ptype-stanford-lists .su-news-list img,.ptype-stanford-lists .su-news-list picture{display:none}}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row{margin-bottom:3.4rem;padding-top:0}@media only screen and (min-width:768px){.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col:last-of-type,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row:last-of-type,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col:last-of-type,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .view [class*=grid-container],.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .view [class*=grid-container]{-ms-grid-columns:1fr;grid-template-columns:1fr}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row{margin-bottom:3.4rem}@media only screen and (min-width:768px){.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .views-view-grid .views-row>div,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .views-view-grid .views-row>div{-webkit-box-flex:0;-ms-flex:none;flex:none;max-width:100%;width:100%}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .views-view-grid .views-row>div:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .views-view-grid .views-row>div:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list__item-date+.su-news-list__item .media,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list__item-date+.su-news-list__item .media{margin-top:0}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-vertical-teaser.su-card,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-vertical-teaser.su-card{margin-bottom:inherit}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-event-list-item,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-event-list-item{display:block}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-basic-page-types-list img,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-basic-page-types-list picture,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list img,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list picture,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-basic-page-types-list img,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-basic-page-types-list picture,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list img,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list picture{display:none}.paragraph--type--stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row,.ptype-stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row{margin-bottom:3.4rem}@media only screen and (min-width:768px){.paragraph--type--stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row,.ptype-stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row,.ptype-stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row:last-of-type,.ptype-stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.paragraph--type--stanford-lists.flex-6-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-6-of-12 .su-basic-page-types-view-column{margin-bottom:3.4rem}@media only screen and (min-width:768px){.paragraph--type--stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.paragraph--type--stanford-lists.flex-6-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-6-of-12 .su-basic-page-types-view-column{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.paragraph--type--stanford-lists.flex-6-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-6-of-12 .su-basic-page-types-view-column{margin-bottom:6.1rem}}.paragraph--type--stanford-lists.flex-4-of-12 .su-basic-page-types-view-column:last-of-type,.paragraph--type--stanford-lists.flex-6-of-12 .su-basic-page-types-view-column:last-of-type,.ptype-stanford-lists.flex-4-of-12 .su-basic-page-types-view-column:last-of-type,.ptype-stanford-lists.flex-6-of-12 .su-basic-page-types-view-column:last-of-type{margin-bottom:0}@media (min-width:1200px){.paragraph--type--stanford-lists:not(.flex-12-of-12) .stanford-news--list div:first-child .su-news-list,.ptype-stanford-lists:not(.flex-12-of-12) .stanford-news--list div:first-child .su-news-list{padding-top:0}}.paragraph--type--stanford-lists[data-react-columns="4"] .su-news-list__header,.paragraph--type--stanford-lists[data-react-columns="6"] .su-news-list__header,.ptype-stanford-lists[data-react-columns="4"] .su-news-list__header,.ptype-stanford-lists[data-react-columns="6"] .su-news-list__header{-ms-grid-columns:1fr;grid-template-columns:1fr}.paragraph--type--stanford-lists[data-react-columns="4"] .stanford-people-grid .flex-container,.paragraph--type--stanford-lists[data-react-columns="6"] .stanford-people-grid .flex-container,.ptype-stanford-lists[data-react-columns="4"] .stanford-people-grid .flex-container,.ptype-stanford-lists[data-react-columns="6"] .stanford-people-grid .flex-container{display:unset}.paragraph--type--stanford-lists[data-react-columns="4"] .su-event-list-item__date,.paragraph--type--stanford-lists[data-react-columns="6"] .su-event-list-item__date,.ptype-stanford-lists[data-react-columns="4"] .su-event-list-item__date,.ptype-stanford-lists[data-react-columns="6"] .su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (min-width:992px){.container-1-items .ptype-stanford-lists .field--name-su-list-view,.container-2-items .ptype-stanford-lists .field--name-su-list-view,.container-3-items .ptype-stanford-lists .field--name-su-list-view{padding-left:1.5rem;padding-right:3rem}}@media only screen and (min-width:992px) and (min-width:768px){.container-1-items .ptype-stanford-lists .field--name-su-list-view,.container-2-items .ptype-stanford-lists .field--name-su-list-view,.container-3-items .ptype-stanford-lists .field--name-su-list-view{padding-left:1.8rem;padding-right:3.6rem}}@media only screen and (min-width:992px) and (min-width:1500px){.container-1-items .ptype-stanford-lists .field--name-su-list-view,.container-2-items .ptype-stanford-lists .field--name-su-list-view,.container-3-items .ptype-stanford-lists .field--name-su-list-view{padding-left:1.9rem;padding-right:3.8rem}}.ds-entity--stanford-event-series .su-card{font-size:1em}.ds-entity--stanford-event-series .su-card .su-event-series-dek{display:none}.ds-entity--stanford-event-series .su-card a{color:#2e2d29;text-decoration:none}.ds-entity--stanford-event-series .su-card a:focus,.ds-entity--stanford-event-series .su-card a:hover{color:#b1040e;text-decoration:underline} \ No newline at end of file +.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{margin:0 auto;max-width:calc(100vw - 40px);width:100%}@media only screen and (min-width:576px){.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{max-width:calc(100vw - 60px)}}@media only screen and (min-width:768px){.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{max-width:calc(100vw - 100px)}}@media only screen and (min-width:992px){.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{max-width:880px}}@media only screen and (min-width:1200px){.su-page-components .paragraph--type--stanford-card,.su-page-components .paragraph--type--stanford-cta-list,.su-page-components .paragraph--type--stanford-entity,.su-page-components .paragraph--type--stanford-gallery,.su-page-components .paragraph--type--stanford-lists,.su-page-components .paragraph--type--stanford-media-caption,.su-page-components .paragraph--type--stanford-stories,.su-page-components .paragraph--type--stanford-wysiwyg,.su-page-components .ptype-stanford-card,.su-page-components .ptype-stanford-cta-list,.su-page-components .ptype-stanford-entity,.su-page-components .ptype-stanford-gallery,.su-page-components .ptype-stanford-image-cta,.su-page-components .ptype-stanford-lists,.su-page-components .ptype-stanford-media-caption,.su-page-components .ptype-stanford-stories,.su-page-components .ptype-stanford-wysiwyg{max-width:980px}}.su-page-components div[data-react-columns="12"].ptype-stanford-card,.su-page-components div[data-react-columns="12"].ptype-stanford-cta-list,.su-page-components div[data-react-columns="12"].ptype-stanford-entity,.su-page-components div[data-react-columns="12"].ptype-stanford-gallery,.su-page-components div[data-react-columns="12"].ptype-stanford-image-cta,.su-page-components div[data-react-columns="12"].ptype-stanford-lists,.su-page-components div[data-react-columns="12"].ptype-stanford-media-caption,.su-page-components div[data-react-columns="12"].ptype-stanford-stories,.su-page-components div[data-react-columns="12"].ptype-stanford-wysiwyg{max-width:980px}@media only screen and (min-width:992px) and (max-width:1199px){.su-page-components div[data-react-columns="12"].ptype-stanford-card,.su-page-components div[data-react-columns="12"].ptype-stanford-cta-list,.su-page-components div[data-react-columns="12"].ptype-stanford-entity,.su-page-components div[data-react-columns="12"].ptype-stanford-gallery,.su-page-components div[data-react-columns="12"].ptype-stanford-image-cta,.su-page-components div[data-react-columns="12"].ptype-stanford-lists,.su-page-components div[data-react-columns="12"].ptype-stanford-media-caption,.su-page-components div[data-react-columns="12"].ptype-stanford-stories,.su-page-components div[data-react-columns="12"].ptype-stanford-wysiwyg{margin-left:auto;margin-right:auto;max-width:880px}}.su-page-components div[data-react-columns="12"].ptype-stanford-card img{width:100%}@media (max-width:991px){.jumpstart-ui--three-column .left-region .menu--main,.jumpstart-ui--two-column .left-region .menu--main{display:none}}@media only screen and (min-width:1200px){.jumpstart-ui--three-column>.left-region+.main-region,.jumpstart-ui--two-column>.left-region+.main-region{padding-left:80px}}@media only screen and (min-width:0){.node-stanford-page-su-page-banner{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.node-stanford-page-su-page-banner{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.node-stanford-page-su-page-banner{margin-bottom:6.08rem}}.paragraph--type--stanford-gallery h2,.ptype-stanford-gallery h2{margin:0;text-align:center}.su-person-photo{margin:0 auto;max-width:300px;padding:30px}.su-person-photo img,.su-person-photo picture{border-radius:50%}.ds-entity--stanford-person{text-align:center}.ds-entity--stanford-person h3{font-size:1.4em}@media only screen and (min-width:0){.su-list-unstyled li{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.su-list-unstyled li{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.su-list-unstyled li{margin-bottom:6.08rem}}.su-list-unstyled a{color:#b1040e}.su-list-unstyled a:active,.su-list-unstyled a:focus,.su-list-unstyled a:hover{color:#2e2d29;text-decoration:underline}.paragraph--type--stanford-entity .su-entity-headline h2,.ptype-stanford-entity .su-entity-headline h2,.stanford-shared-tags .su-entity-headline h2{margin:0;text-align:center}@media only screen and (min-width:0){.paragraph--type--stanford-entity .su-entity-item>div,.ptype-stanford-entity .su-entity-item>div,.stanford-shared-tags .su-entity-item>div{margin-bottom:5.12rem}}@media only screen and (min-width:768px){.paragraph--type--stanford-entity .su-entity-item>div,.ptype-stanford-entity .su-entity-item>div,.stanford-shared-tags .su-entity-item>div{margin-bottom:5.76rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-entity .su-entity-item>div,.ptype-stanford-entity .su-entity-item>div,.stanford-shared-tags .su-entity-item>div{margin-bottom:6.08rem}}.paragraph--type--stanford-entity .su-entity-item a,.ptype-stanford-entity .su-entity-item a,.stanford-shared-tags .su-entity-item a{color:#b1040e}.paragraph--type--stanford-entity .su-entity-item a:active,.paragraph--type--stanford-entity .su-entity-item a:focus,.paragraph--type--stanford-entity .su-entity-item a:hover,.ptype-stanford-entity .su-entity-item a:active,.ptype-stanford-entity .su-entity-item a:focus,.ptype-stanford-entity .su-entity-item a:hover,.stanford-shared-tags .su-entity-item a:active,.stanford-shared-tags .su-entity-item a:focus,.stanford-shared-tags .su-entity-item a:hover{color:#2e2d29;text-decoration:underline}@media only screen and (min-width:576px){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card{display:-webkit-box;display:-ms-flexbox;display:flex}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-person-photo{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:3rem;width:25%}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:last-child .ds-entity--stanford-person .su-card__contents{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:auto}}@media only screen and (min-width:992px){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item,.stanford-shared-tags[data-react-columns="12"] .su-entity-item{-webkit-box-pack:justify;-ms-flex-pack:justify;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div{margin:0;width:calc(33% - 40px)}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:last-child,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:last-child,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:last-child,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:last-child,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:last-child{width:100%}.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:first-child:nth-last-child(2),.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:nth-child(2):last-child,.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:first-child:nth-last-child(2),.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:nth-child(2):last-child,.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:first-child:nth-last-child(2),.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:nth-child(2):last-child,.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:nth-last-child(2),.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(2):last-child,.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:first-child:nth-last-child(2),.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(2):last-child,.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:first-child:nth-last-child(2),.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:nth-child(2):last-child{width:calc(50% - 40px)}}@media only screen and (min-width:992px) and (min-width:0){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:nth-child(n+4),.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:nth-child(n+4){margin-top:5.12rem}}@media only screen and (min-width:992px) and (min-width:768px){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:nth-child(n+4),.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:nth-child(n+4){margin-top:5.76rem}}@media only screen and (min-width:992px) and (min-width:1500px){.layout--layout-paragraphs-one-column .paragraph--type--stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .ptype-stanford-entity .su-entity-item>div:nth-child(n+4),.layout--layout-paragraphs-one-column .stanford-shared-tags .su-entity-item>div:nth-child(n+4),.paragraph--type--stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.ptype-stanford-entity[data-react-columns="12"] .su-entity-item>div:nth-child(n+4),.stanford-shared-tags[data-react-columns="12"] .su-entity-item>div:nth-child(n+4){margin-top:6.08rem}}.paragraph--type--stanford-entity .su-entity-button,.ptype-stanford-entity .su-entity-button,.stanford-shared-tags .su-entity-button{-webkit-box-pack:center;-ms-flex-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2{color:#2e2d29;display:inline-block;font-weight:700;margin:0 0 3rem}@media only screen and (min-width:768px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2{margin-bottom:3.6rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2{margin-bottom:3.8rem}}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2:after{background-color:#b1040e}@media only screen and (min-width:0){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2:after{margin-left:1.07rem}}@media only screen and (min-width:768px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2:after{margin-left:1.2rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2:after{margin-left:1.27rem}}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a{color:#2e2d29;text-decoration:none}@supports ((-webkit-mask-repeat:no-repeat) or (mask-repeat:no-repeat)){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:after{content:"";display:inline-block;height:1.2rem;-webkit-mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0uNDE2LjUxMUExLjUyNSAxLjUyNSAwIDAgMSAyLjYxNC40MjhsMTAuODg5IDEwLjRjLjMxNy4zMDIuNDk3LjcyNy40OTcgMS4xNzIgMCAuNDQ1LS4xOC44Ny0uNDk3IDEuMTcybC0xMC44ODkgMTAuNGExLjUyNSAxLjUyNSAwIDAgMS0yLjE5OC0uMDgzIDEuNjMyIDEuNjMyIDAgMCAxIC4wODEtMi4yNjJMMTAuMTU4IDEyIC40OTggMi43NzJBMS42MzIgMS42MzIgMCAwIDEgLjQxNS41MTJaIiBmaWxsPSIjMkUyRDI5Ii8+PC9zdmc+) no-repeat 0 0;mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0uNDE2LjUxMUExLjUyNSAxLjUyNSAwIDAgMSAyLjYxNC40MjhsMTAuODg5IDEwLjRjLjMxNy4zMDIuNDk3LjcyNy40OTcgMS4xNzIgMCAuNDQ1LS4xOC44Ny0uNDk3IDEuMTcybC0xMC44ODkgMTAuNGExLjUyNSAxLjUyNSAwIDAgMS0yLjE5OC0uMDgzIDEuNjMyIDEuNjMyIDAgMCAxIC4wODEtMi4yNjJMMTAuMTU4IDEyIC40OTggMi43NzJBMS42MzIgMS42MzIgMCAwIDEgLjQxNS41MTJaIiBmaWxsPSIjMkUyRDI5Ii8+PC9zdmc+) no-repeat 0 0;-webkit-mask-size:contain;mask-size:contain;width:1.2rem}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after{background-color:#2e2d29}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:after{background-color:#006cb8;margin-left:.4em;margin-right:.3em;-webkit-transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out;transition:transform .2s ease-in-out,mask-image .2s ease-in-out,-webkit-transform .2s ease-in-out,-webkit-mask-image .2s ease-in-out}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after{-webkit-transform:translateX(.2em);transform:translateX(.2em)}}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:after{background-color:#b1040e}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:active,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:focus,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:hover,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:active,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:active,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:focus,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:hover,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:active,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:active,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:focus,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:hover,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:active,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:focus,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:hover{color:#b1040e;text-decoration:underline}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:active:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:active:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:active:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:active:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:active:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3 a:hover:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:active:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:focus:after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents>h2 a:hover:after{background-color:#b1040e}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents h3,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents h3,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents h3{font-size:1.4em}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul{list-style:none;margin:0;padding:0}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul li,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul li,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics ul li{display:inline-block}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a{color:#b1040e;font-size:1.8rem;font-weight:400;line-height:1.3;text-decoration:none}@media (max-width:767px){.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a{font-size:1.6rem}}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:active,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:focus,.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:hover,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:active,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:focus,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:hover,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:active,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:focus,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics a:hover{color:#2e2d29;text-decoration:underline}.paragraph--type--stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics li:not(:last-of-type):after,.ptype-stanford-entity .ds-entity--stanford-publication .su-card__contents .su-publication-topics li:not(:last-of-type):after,.stanford-shared-tags .ds-entity--stanford-publication .su-card__contents .su-publication-topics li:not(:last-of-type):after{content:",";padding-right:5px}.paragraph--type--stanford-entity .ds-entity--stanford-policy h2,.ptype-stanford-entity .ds-entity--stanford-policy h2,.stanford-shared-tags .ds-entity--stanford-policy h2{font-size:1.5625em;letter-spacing:-.012em}.paragraph--type--stanford-entity .ds-entity--stanford-policy h3,.ptype-stanford-entity .ds-entity--stanford-policy h3,.stanford-shared-tags .ds-entity--stanford-policy h3{font-size:1.4em}.paragraph--type--stanford-lists,.ptype-stanford-lists{container:paragraph/inline-size}.paragraph--type--stanford-lists .su-list-headline h2,.ptype-stanford-lists .su-list-headline h2{margin:0;text-align:center}.paragraph--type--stanford-lists .su-list-button,.ptype-stanford-lists .su-list-button{-webkit-box-pack:center;-ms-flex-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center}@container paragraph (max-width: 600px){.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists .stanford-events .views-view-grid .views-col,.ptype-stanford-lists .stanford-events .views-view-grid .views-row,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-row{margin-bottom:3.4rem;padding-top:0}@media only screen and (min-width:768px){.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists .stanford-events .views-view-grid .views-col,.ptype-stanford-lists .stanford-events .views-view-grid .views-row,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists .stanford-events .views-view-grid .views-col,.ptype-stanford-lists .stanford-events .views-view-grid .views-row,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-col:last-of-type,.paragraph--type--stanford-lists .stanford-events .views-view-grid .views-row:last-of-type,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-col:last-of-type,.paragraph--type--stanford-lists .stanford-news--cards .views-view-grid .views-row:last-of-type,.ptype-stanford-lists .stanford-events .views-view-grid .views-col:last-of-type,.ptype-stanford-lists .stanford-events .views-view-grid .views-row:last-of-type,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-col:last-of-type,.ptype-stanford-lists .stanford-news--cards .views-view-grid .views-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists .view [class*=grid-container],.ptype-stanford-lists .view [class*=grid-container]{-ms-grid-columns:1fr;grid-template-columns:1fr}.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-row{margin-bottom:3.4rem}@media only screen and (min-width:768px){.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists .stanford-people-grid .views-view-grid .views-row:last-of-type,.ptype-stanford-lists .stanford-people-grid .views-view-grid .views-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists .views-view-grid .views-row>div,.ptype-stanford-lists .views-view-grid .views-row>div{-webkit-box-flex:0;-ms-flex:none;flex:none;max-width:100%;width:100%}.paragraph--type--stanford-lists .views-view-grid .views-row>div:last-of-type,.ptype-stanford-lists .views-view-grid .views-row>div:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists .su-news-list__item-date+.su-news-list__item .media,.ptype-stanford-lists .su-news-list__item-date+.su-news-list__item .media{margin-top:0}.paragraph--type--stanford-lists .su-news-vertical-teaser.su-card,.ptype-stanford-lists .su-news-vertical-teaser.su-card{margin-bottom:inherit}.paragraph--type--stanford-lists .su-event-list-item,.ptype-stanford-lists .su-event-list-item{display:block}.paragraph--type--stanford-lists .su-basic-page-types-list img,.paragraph--type--stanford-lists .su-basic-page-types-list picture,.paragraph--type--stanford-lists .su-news-list img,.paragraph--type--stanford-lists .su-news-list picture,.ptype-stanford-lists .su-basic-page-types-list img,.ptype-stanford-lists .su-basic-page-types-list picture,.ptype-stanford-lists .su-news-list img,.ptype-stanford-lists .su-news-list picture{display:none}}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row{margin-bottom:3.4rem;padding-top:0}@media only screen and (min-width:768px){.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col:last-of-type,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row:last-of-type,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col:last-of-type,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-col:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-events .views-view-grid .views-row:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-col:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-news--cards .views-view-grid .views-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .view [class*=grid-container],.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .view [class*=grid-container]{-ms-grid-columns:1fr;grid-template-columns:1fr}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row{margin-bottom:3.4rem}@media only screen and (min-width:768px){.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-col,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .stanford-people-grid .views-view-grid .views-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .views-view-grid .views-row>div,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .views-view-grid .views-row>div{-webkit-box-flex:0;-ms-flex:none;flex:none;max-width:100%;width:100%}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .views-view-grid .views-row>div:last-of-type,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .views-view-grid .views-row>div:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list__item-date+.su-news-list__item .media,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list__item-date+.su-news-list__item .media{margin-top:0}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-vertical-teaser.su-card,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-vertical-teaser.su-card{margin-bottom:inherit}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-event-list-item,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-event-list-item{display:block}.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-basic-page-types-list img,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-basic-page-types-list picture,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list img,.paragraph--type--stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list picture,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-basic-page-types-list img,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-basic-page-types-list picture,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list img,.ptype-stanford-lists[data-react-columns]:not([data-react-columns="12"]) .su-news-list picture{display:none}.paragraph--type--stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row,.ptype-stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row{margin-bottom:3.4rem}@media only screen and (min-width:768px){.paragraph--type--stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row,.ptype-stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row,.ptype-stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row{margin-bottom:6.1rem}}.paragraph--type--stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row:last-of-type,.ptype-stanford-lists .stanford-basic-pages .views-view-grid .su-basic-page-types-view-row:last-of-type{margin-bottom:0}.paragraph--type--stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.paragraph--type--stanford-lists.flex-6-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-6-of-12 .su-basic-page-types-view-column{margin-bottom:3.4rem}@media only screen and (min-width:768px){.paragraph--type--stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.paragraph--type--stanford-lists.flex-6-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-6-of-12 .su-basic-page-types-view-column{margin-bottom:5.8rem}}@media only screen and (min-width:1500px){.paragraph--type--stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.paragraph--type--stanford-lists.flex-6-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-4-of-12 .su-basic-page-types-view-column,.ptype-stanford-lists.flex-6-of-12 .su-basic-page-types-view-column{margin-bottom:6.1rem}}.paragraph--type--stanford-lists.flex-4-of-12 .su-basic-page-types-view-column:last-of-type,.paragraph--type--stanford-lists.flex-6-of-12 .su-basic-page-types-view-column:last-of-type,.ptype-stanford-lists.flex-4-of-12 .su-basic-page-types-view-column:last-of-type,.ptype-stanford-lists.flex-6-of-12 .su-basic-page-types-view-column:last-of-type{margin-bottom:0}@media (min-width:1200px){.paragraph--type--stanford-lists:not(.flex-12-of-12) .stanford-news--list div:first-child .su-news-list,.ptype-stanford-lists:not(.flex-12-of-12) .stanford-news--list div:first-child .su-news-list{padding-top:0}}.paragraph--type--stanford-lists[data-react-columns="4"] .su-news-list__header,.paragraph--type--stanford-lists[data-react-columns="6"] .su-news-list__header,.ptype-stanford-lists[data-react-columns="4"] .su-news-list__header,.ptype-stanford-lists[data-react-columns="6"] .su-news-list__header{-ms-grid-columns:1fr;grid-template-columns:1fr}.paragraph--type--stanford-lists[data-react-columns="4"] .stanford-people-grid .flex-container,.paragraph--type--stanford-lists[data-react-columns="6"] .stanford-people-grid .flex-container,.ptype-stanford-lists[data-react-columns="4"] .stanford-people-grid .flex-container,.ptype-stanford-lists[data-react-columns="6"] .stanford-people-grid .flex-container{display:unset}.paragraph--type--stanford-lists[data-react-columns="4"] .su-event-list-item__date,.paragraph--type--stanford-lists[data-react-columns="6"] .su-event-list-item__date,.ptype-stanford-lists[data-react-columns="4"] .su-event-list-item__date,.ptype-stanford-lists[data-react-columns="6"] .su-event-list-item__date{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (min-width:992px){.container-1-items .ptype-stanford-lists .field--name-su-list-view,.container-2-items .ptype-stanford-lists .field--name-su-list-view,.container-3-items .ptype-stanford-lists .field--name-su-list-view{padding-left:1.5rem;padding-right:3rem}}@media only screen and (min-width:992px) and (min-width:768px){.container-1-items .ptype-stanford-lists .field--name-su-list-view,.container-2-items .ptype-stanford-lists .field--name-su-list-view,.container-3-items .ptype-stanford-lists .field--name-su-list-view{padding-left:1.8rem;padding-right:3.6rem}}@media only screen and (min-width:992px) and (min-width:1500px){.container-1-items .ptype-stanford-lists .field--name-su-list-view,.container-2-items .ptype-stanford-lists .field--name-su-list-view,.container-3-items .ptype-stanford-lists .field--name-su-list-view{padding-left:1.9rem;padding-right:3.8rem}}.ds-entity--stanford-event-series .su-card{font-size:1em}.ds-entity--stanford-event-series .su-card .su-event-series-dek{display:none}.ds-entity--stanford-event-series .su-card h3{font-size:1.4em}.ds-entity--stanford-event-series .su-card a{color:#2e2d29;text-decoration:none}.ds-entity--stanford-event-series .su-card a:focus,.ds-entity--stanford-event-series .su-card a:hover{color:#b1040e;text-decoration:underline} \ No newline at end of file diff --git a/modules/stanford_profile_styles/lib/scss/component/node/stanford_page.scss b/modules/stanford_profile_styles/lib/scss/component/node/stanford_page.scss index 202f64ce..8a62d872 100755 --- a/modules/stanford_profile_styles/lib/scss/component/node/stanford_page.scss +++ b/modules/stanford_profile_styles/lib/scss/component/node/stanford_page.scss @@ -122,6 +122,10 @@ .ds-entity--stanford-person { text-align: center; + + h3 { + font-size: 1.4em; + } } .su-list-unstyled { @@ -230,7 +234,8 @@ // Publication teasers .ds-entity--stanford-publication { .su-card__contents { - > h2 { + > h2, + h3 { margin: 0; @include responsive-spacing('margin-bottom', 2); @@ -265,6 +270,10 @@ } } + h3 { + font-size: 1.4em; + } + .su-publication-topics { ul { @@ -305,6 +314,17 @@ } } } + + // Policy teasers + .ds-entity--stanford-policy { + h2 { + @include type-c; + } + + h3 { + font-size: 1.4em; + } + } } .ptype-stanford-lists, @@ -551,6 +571,10 @@ display: none; } + h3 { + font-size: 1.4em; + } + a { color: $su-color-black; text-decoration: none;