diff --git a/docs/admin/src/widgets/genericPreviewTemplate.js b/docs/admin/src/widgets/genericPreviewTemplate.js index c20937b31c..b156b99a07 100644 --- a/docs/admin/src/widgets/genericPreviewTemplate.js +++ b/docs/admin/src/widgets/genericPreviewTemplate.js @@ -7,7 +7,7 @@ import template from '../../../_includes/generic-content.html'; export default class Preview extends Component { componentDidMount() { liquidEngine.registerFilter('markdownify', (initial) => - marked(initial || '') + marked(initial || ''), ); } diff --git a/docs/admin/src/widgets/navigationPreviewTemplate.js b/docs/admin/src/widgets/navigationPreviewTemplate.js index 35e2e41adb..316eb343d0 100644 --- a/docs/admin/src/widgets/navigationPreviewTemplate.js +++ b/docs/admin/src/widgets/navigationPreviewTemplate.js @@ -9,10 +9,10 @@ export default class Preview extends Component { liquidEngine.registerFilter('size', (initial) => initial.length || 1); liquidEngine.registerFilter( 'relative_url', - (initial) => `/design-system/${initial}` + (initial) => `/design-system/${initial}`, ); liquidEngine.registerFilter('slugify', (initial) => - slugify(initial || '', { lower: true }) + slugify(initial || '', { lower: true }), ); } diff --git a/docs/admin/src/widgets/pagePreviewTemplate.js b/docs/admin/src/widgets/pagePreviewTemplate.js index a873cd4831..f7b1ee999e 100644 --- a/docs/admin/src/widgets/pagePreviewTemplate.js +++ b/docs/admin/src/widgets/pagePreviewTemplate.js @@ -15,7 +15,7 @@ import template from '../../../_includes/variation-content.html'; // replace instances of {% include icons/XXXXX.svg %} with the inlined SVG const templateWithIcons = template.replace( /{%\s+include\s+\/?icons\/([\w-]+)\.svg\s+%}/g, - (match, icon) => import(`../../../_includes/icons/${icon}.svg`) + (match, icon) => import(`../../../_includes/icons/${icon}.svg`), ); export default class Preview extends Component { @@ -23,15 +23,15 @@ export default class Preview extends Component { super(props); liquidEngine.registerFilter('slugify', (initial) => - slugify(initial || '', { lower: true }) + slugify(initial || '', { lower: true }), ); liquidEngine.registerFilter('xml_escape', (initial) => encode(initial)); liquidEngine.registerFilter('markdownify', (initial) => - marked(initial || '') + marked(initial || ''), ); liquidEngine.registerFilter( 'strip', - (initial) => initial && initial.trim() + (initial) => initial && initial.trim(), ); this.containerRef = React.createRef(); @@ -51,7 +51,7 @@ export default class Preview extends Component { componentDidUpdate(props) { // Tabs show under the show/hide details button on a pattern. const tabsContainerDom = props.document.querySelectorAll( - `.${Tabs.BASE_CLASS}` + `.${Tabs.BASE_CLASS}`, ); if (tabsContainerDom.length > 0) { let tabsInst; diff --git a/docs/assets/css/skip-nav.less b/docs/assets/css/skip-nav.less index 9ecbc96364..7d12fffc85 100644 --- a/docs/assets/css/skip-nav.less +++ b/docs/assets/css/skip-nav.less @@ -20,7 +20,9 @@ width: 1px; overflow: hidden; background: transparent; - transition: transform 1s ease, background 0.5s linear; + transition: + transform 1s ease, + background 0.5s linear; z-index: 11; &:focus { @@ -35,7 +37,9 @@ width: auto; overflow: visible; outline: 0; - transition: transform 0.1s ease, background 0.2s linear; + transition: + transform 0.1s ease, + background 0.2s linear; } &__flush-left:focus { diff --git a/docs/assets/js/Tabs.js b/docs/assets/js/Tabs.js index 463ba3d318..21ef621338 100644 --- a/docs/assets/js/Tabs.js +++ b/docs/assets/js/Tabs.js @@ -21,7 +21,7 @@ function Tabs(dom) { function changeTab(index) { // Remove classes from prior selected tab and panel. _tabsItemsDom[_selectedTabIndex].classList.remove( - `${BASE_CLASS}_list-item-selected` + `${BASE_CLASS}_list-item-selected`, ); _tabsPanelsDom[_selectedTabIndex].classList.add('u-hidden'); @@ -30,7 +30,7 @@ function Tabs(dom) { // Add classes for the new selected tab and panel. _tabsItemsDom[_selectedTabIndex].classList.add( - `${BASE_CLASS}_list-item-selected` + `${BASE_CLASS}_list-item-selected`, ); _tabsPanelsDom[_selectedTabIndex].classList.remove('u-hidden'); diff --git a/docs/assets/js/interstitial.js b/docs/assets/js/interstitial.js index b4b711ce1e..267447a034 100644 --- a/docs/assets/js/interstitial.js +++ b/docs/assets/js/interstitial.js @@ -18,7 +18,7 @@ if (page && window.PAGES_ALLOWED[page]) { if (localStorage.getItem('cms-directions-last-seen')) { const now = new Date(); const lastSeen = Date.parse( - localStorage.getItem('cms-directions-last-seen') + localStorage.getItem('cms-directions-last-seen'), ); const daysSinceDirectionsSeen = (now - lastSeen) / 1000 / 60 / 60 / 24; if (daysSinceDirectionsSeen <= 14) { diff --git a/docs/assets/js/redirect-banner.js b/docs/assets/js/redirect-banner.js index caf9d19c93..5a3356c6c1 100644 --- a/docs/assets/js/redirect-banner.js +++ b/docs/assets/js/redirect-banner.js @@ -26,7 +26,7 @@ function getSource(match) { function displayBanner(sourceName, sourceUrl) { const banner = document.querySelector('#redirect-banner'); const sourceNames = banner.querySelectorAll( - 'span[data-redirect=source-name]' + 'span[data-redirect=source-name]', ); const links = banner.querySelectorAll('a[data-redirect=archive-website]'); diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index a5824a9195..91e404bd4e 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -30,7 +30,7 @@ function displaySearchResults(elm, results, store) { // Show some preview text under each search results item. let previewText = ''; const searchMatchWordFragment = Object.keys( - results[i].matchData.metadata + results[i].matchData.metadata, )[0]; const searchMatchFields = results[i].matchData.metadata[searchMatchWordFragment]; diff --git a/docs/assets/js/toggle-details.js b/docs/assets/js/toggle-details.js index afafe7210a..eb84725eee 100644 --- a/docs/assets/js/toggle-details.js +++ b/docs/assets/js/toggle-details.js @@ -61,7 +61,7 @@ function toggleAllDetails(toggleBtn) { toggleDetails( buttonElm, window.document, - isShowingAllDetails ? STATE_HIDE : STATE_SHOW + isShowingAllDetails ? STATE_HIDE : STATE_SHOW, ); } diff --git a/docs/pages/paragraphs.md b/docs/pages/paragraphs.md index dded480ceb..3b77a1406e 100644 --- a/docs/pages/paragraphs.md +++ b/docs/pages/paragraphs.md @@ -13,7 +13,7 @@ variation_groups: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

- variation_description: "" + variation_description: '' variation_name: Body text variation_implementation: >- #### Vertical spacing @@ -53,7 +53,7 @@ variation_groups: quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

- variation_description: "" + variation_description: '' variation_name: Lead paragraph variation_specs: >- * Also referred to as a subheading @@ -66,7 +66,7 @@ variation_groups: Lorem ipsum dolor sit amet

variation_name: Microcopy - variation_implementation: "" + variation_implementation: '' variation_specs: |- * Good for highlighting small pieces of text, typically legal copy. * Avenir Next Regular @@ -79,7 +79,7 @@ variation_groups: variation_specs: |- * Avenir Next Regular * 11pt / 16pt - variation_code_snippet: "" + variation_code_snippet: '' variation_description: >-

Avenir Next Regular, 11pt / 16pt. Lorem ipsum dolor sit amet, ut labore et @@ -93,9 +93,9 @@ variation_groups: variation_specs: |- * Avenir Next Regular * 16pt / 20pt - variation_code_snippet: "" + variation_code_snippet: '' variation_description: >- - +

Avenir Next Regular, 16pt / 20pt. Lorem ipsum dolor sit amet, ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

@@ -109,12 +109,12 @@ title: Paragraphs description: Paragraph text should provide an efficient and pleasant experience on every viewport size. Readable text makes good use of alignment, spacing, line length and height, and contrast. -use_cases: "" -behavior: "" -accessibility: "" +use_cases: '' +behavior: '' +accessibility: '' related_items: "* [Typography variables](https://cfpb.github.io/design-system/development/variables#typogra\ phy)" last_updated: 2020-01-06T20:28:04.952Z -research: "" +research: '' --- diff --git a/npm-packages-offline-cache/@aashutoshrathi-word-wrap-1.2.6.tgz b/npm-packages-offline-cache/@aashutoshrathi-word-wrap-1.2.6.tgz new file mode 100644 index 0000000000..6ec083f195 Binary files /dev/null and b/npm-packages-offline-cache/@aashutoshrathi-word-wrap-1.2.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-code-frame-7.21.4.tgz b/npm-packages-offline-cache/@babel-code-frame-7.21.4.tgz deleted file mode 100644 index 2da88168af..0000000000 Binary files a/npm-packages-offline-cache/@babel-code-frame-7.21.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-compat-data-7.21.7.tgz b/npm-packages-offline-cache/@babel-compat-data-7.21.7.tgz deleted file mode 100644 index 984b78a24d..0000000000 Binary files a/npm-packages-offline-cache/@babel-compat-data-7.21.7.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-compat-data-7.22.5.tgz b/npm-packages-offline-cache/@babel-compat-data-7.22.5.tgz deleted file mode 100644 index 06a06a1e2b..0000000000 Binary files a/npm-packages-offline-cache/@babel-compat-data-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-compat-data-7.22.6.tgz b/npm-packages-offline-cache/@babel-compat-data-7.22.6.tgz new file mode 100644 index 0000000000..8825d222f5 Binary files /dev/null and b/npm-packages-offline-cache/@babel-compat-data-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-core-7.21.8.tgz b/npm-packages-offline-cache/@babel-core-7.21.8.tgz deleted file mode 100644 index 6def02ad52..0000000000 Binary files a/npm-packages-offline-cache/@babel-core-7.21.8.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-core-7.22.5.tgz b/npm-packages-offline-cache/@babel-core-7.22.5.tgz deleted file mode 100644 index a02db55270..0000000000 Binary files a/npm-packages-offline-cache/@babel-core-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-core-7.22.8.tgz b/npm-packages-offline-cache/@babel-core-7.22.8.tgz new file mode 100644 index 0000000000..9ca1bf5830 Binary files /dev/null and b/npm-packages-offline-cache/@babel-core-7.22.8.tgz differ diff --git a/npm-packages-offline-cache/@babel-generator-7.21.5.tgz b/npm-packages-offline-cache/@babel-generator-7.21.5.tgz deleted file mode 100644 index 870af7dccb..0000000000 Binary files a/npm-packages-offline-cache/@babel-generator-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-generator-7.22.5.tgz b/npm-packages-offline-cache/@babel-generator-7.22.5.tgz deleted file mode 100644 index 8005544d80..0000000000 Binary files a/npm-packages-offline-cache/@babel-generator-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-generator-7.22.7.tgz b/npm-packages-offline-cache/@babel-generator-7.22.7.tgz new file mode 100644 index 0000000000..a548024a4a Binary files /dev/null and b/npm-packages-offline-cache/@babel-generator-7.22.7.tgz differ diff --git a/npm-packages-offline-cache/@babel-helper-annotate-as-pure-7.18.6.tgz b/npm-packages-offline-cache/@babel-helper-annotate-as-pure-7.18.6.tgz deleted file mode 100644 index e565111341..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-annotate-as-pure-7.18.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-compilation-targets-7.21.5.tgz b/npm-packages-offline-cache/@babel-helper-compilation-targets-7.21.5.tgz deleted file mode 100644 index 732a11dfe9..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-compilation-targets-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-compilation-targets-7.22.5.tgz b/npm-packages-offline-cache/@babel-helper-compilation-targets-7.22.5.tgz deleted file mode 100644 index 0c37f81f22..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-compilation-targets-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-compilation-targets-7.22.6.tgz b/npm-packages-offline-cache/@babel-helper-compilation-targets-7.22.6.tgz new file mode 100644 index 0000000000..ee37416baa Binary files /dev/null and b/npm-packages-offline-cache/@babel-helper-compilation-targets-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-helper-create-class-features-plugin-7.22.5.tgz b/npm-packages-offline-cache/@babel-helper-create-class-features-plugin-7.22.5.tgz deleted file mode 100644 index d165170ed4..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-create-class-features-plugin-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-create-class-features-plugin-7.22.6.tgz b/npm-packages-offline-cache/@babel-helper-create-class-features-plugin-7.22.6.tgz new file mode 100644 index 0000000000..7e8dd3f340 Binary files /dev/null and b/npm-packages-offline-cache/@babel-helper-create-class-features-plugin-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.21.8.tgz b/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.21.8.tgz deleted file mode 100644 index a129e42a97..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.21.8.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.22.5.tgz b/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.22.5.tgz deleted file mode 100644 index 61610f24f6..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.22.6.tgz b/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.22.6.tgz new file mode 100644 index 0000000000..a33f04b3ae Binary files /dev/null and b/npm-packages-offline-cache/@babel-helper-create-regexp-features-plugin-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-helper-define-polyfill-provider-0.4.0.tgz b/npm-packages-offline-cache/@babel-helper-define-polyfill-provider-0.4.0.tgz deleted file mode 100644 index 82105f5376..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-define-polyfill-provider-0.4.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-define-polyfill-provider-0.4.1.tgz b/npm-packages-offline-cache/@babel-helper-define-polyfill-provider-0.4.1.tgz new file mode 100644 index 0000000000..7f11e9ec57 Binary files /dev/null and b/npm-packages-offline-cache/@babel-helper-define-polyfill-provider-0.4.1.tgz differ diff --git a/npm-packages-offline-cache/@babel-helper-environment-visitor-7.21.5.tgz b/npm-packages-offline-cache/@babel-helper-environment-visitor-7.21.5.tgz deleted file mode 100644 index e921f2d4fc..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-environment-visitor-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-function-name-7.21.0.tgz b/npm-packages-offline-cache/@babel-helper-function-name-7.21.0.tgz deleted file mode 100644 index 5c332f18df..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-function-name-7.21.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-hoist-variables-7.18.6.tgz b/npm-packages-offline-cache/@babel-helper-hoist-variables-7.18.6.tgz deleted file mode 100644 index 1c269023cf..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-hoist-variables-7.18.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-module-imports-7.21.4.tgz b/npm-packages-offline-cache/@babel-helper-module-imports-7.21.4.tgz deleted file mode 100644 index 74b0c5ffff..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-module-imports-7.21.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-module-transforms-7.21.5.tgz b/npm-packages-offline-cache/@babel-helper-module-transforms-7.21.5.tgz deleted file mode 100644 index 6c58da9884..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-module-transforms-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-plugin-utils-7.21.5.tgz b/npm-packages-offline-cache/@babel-helper-plugin-utils-7.21.5.tgz deleted file mode 100644 index 4203c1e02d..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-plugin-utils-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-simple-access-7.21.5.tgz b/npm-packages-offline-cache/@babel-helper-simple-access-7.21.5.tgz deleted file mode 100644 index 9f253d9c9f..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-simple-access-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.18.6.tgz b/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.18.6.tgz deleted file mode 100644 index 00675a4add..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.18.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.22.5.tgz b/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.22.5.tgz deleted file mode 100644 index 5eea06f452..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.22.6.tgz b/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.22.6.tgz new file mode 100644 index 0000000000..bd0559f6c0 Binary files /dev/null and b/npm-packages-offline-cache/@babel-helper-split-export-declaration-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-helper-string-parser-7.21.5.tgz b/npm-packages-offline-cache/@babel-helper-string-parser-7.21.5.tgz deleted file mode 100644 index 3efb55251d..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-string-parser-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-validator-identifier-7.19.1.tgz b/npm-packages-offline-cache/@babel-helper-validator-identifier-7.19.1.tgz deleted file mode 100644 index 56661b7851..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-validator-identifier-7.19.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helper-validator-option-7.21.0.tgz b/npm-packages-offline-cache/@babel-helper-validator-option-7.21.0.tgz deleted file mode 100644 index 9d8bf4fb4f..0000000000 Binary files a/npm-packages-offline-cache/@babel-helper-validator-option-7.21.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helpers-7.21.5.tgz b/npm-packages-offline-cache/@babel-helpers-7.21.5.tgz deleted file mode 100644 index cf3e76881e..0000000000 Binary files a/npm-packages-offline-cache/@babel-helpers-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helpers-7.22.5.tgz b/npm-packages-offline-cache/@babel-helpers-7.22.5.tgz deleted file mode 100644 index 2cf946c10d..0000000000 Binary files a/npm-packages-offline-cache/@babel-helpers-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-helpers-7.22.6.tgz b/npm-packages-offline-cache/@babel-helpers-7.22.6.tgz new file mode 100644 index 0000000000..ca0a3b2c1f Binary files /dev/null and b/npm-packages-offline-cache/@babel-helpers-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-highlight-7.18.6.tgz b/npm-packages-offline-cache/@babel-highlight-7.18.6.tgz deleted file mode 100644 index 84d052a962..0000000000 Binary files a/npm-packages-offline-cache/@babel-highlight-7.18.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-parser-7.21.8.tgz b/npm-packages-offline-cache/@babel-parser-7.21.8.tgz deleted file mode 100644 index 21d0db2c0b..0000000000 Binary files a/npm-packages-offline-cache/@babel-parser-7.21.8.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-parser-7.22.5.tgz b/npm-packages-offline-cache/@babel-parser-7.22.5.tgz deleted file mode 100644 index 2cec56ca45..0000000000 Binary files a/npm-packages-offline-cache/@babel-parser-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-parser-7.22.7.tgz b/npm-packages-offline-cache/@babel-parser-7.22.7.tgz new file mode 100644 index 0000000000..208242363c Binary files /dev/null and b/npm-packages-offline-cache/@babel-parser-7.22.7.tgz differ diff --git a/npm-packages-offline-cache/@babel-plugin-syntax-jsx-7.21.4.tgz b/npm-packages-offline-cache/@babel-plugin-syntax-jsx-7.21.4.tgz deleted file mode 100644 index 759122688a..0000000000 Binary files a/npm-packages-offline-cache/@babel-plugin-syntax-jsx-7.21.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-plugin-syntax-typescript-7.21.4.tgz b/npm-packages-offline-cache/@babel-plugin-syntax-typescript-7.21.4.tgz deleted file mode 100644 index b645c7e445..0000000000 Binary files a/npm-packages-offline-cache/@babel-plugin-syntax-typescript-7.21.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-plugin-syntax-typescript-7.22.5.tgz b/npm-packages-offline-cache/@babel-plugin-syntax-typescript-7.22.5.tgz new file mode 100644 index 0000000000..dadfab4428 Binary files /dev/null and b/npm-packages-offline-cache/@babel-plugin-syntax-typescript-7.22.5.tgz differ diff --git a/npm-packages-offline-cache/@babel-plugin-transform-async-generator-functions-7.22.5.tgz b/npm-packages-offline-cache/@babel-plugin-transform-async-generator-functions-7.22.5.tgz deleted file mode 100644 index 5ce852b7d0..0000000000 Binary files a/npm-packages-offline-cache/@babel-plugin-transform-async-generator-functions-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-plugin-transform-async-generator-functions-7.22.7.tgz b/npm-packages-offline-cache/@babel-plugin-transform-async-generator-functions-7.22.7.tgz new file mode 100644 index 0000000000..172f5665de Binary files /dev/null and b/npm-packages-offline-cache/@babel-plugin-transform-async-generator-functions-7.22.7.tgz differ diff --git a/npm-packages-offline-cache/@babel-plugin-transform-classes-7.22.5.tgz b/npm-packages-offline-cache/@babel-plugin-transform-classes-7.22.5.tgz deleted file mode 100644 index c543a9221b..0000000000 Binary files a/npm-packages-offline-cache/@babel-plugin-transform-classes-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-plugin-transform-classes-7.22.6.tgz b/npm-packages-offline-cache/@babel-plugin-transform-classes-7.22.6.tgz new file mode 100644 index 0000000000..dc936d7b62 Binary files /dev/null and b/npm-packages-offline-cache/@babel-plugin-transform-classes-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-plugin-transform-dotall-regex-7.18.6.tgz b/npm-packages-offline-cache/@babel-plugin-transform-dotall-regex-7.18.6.tgz deleted file mode 100644 index 4a553731c1..0000000000 Binary files a/npm-packages-offline-cache/@babel-plugin-transform-dotall-regex-7.18.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-plugin-transform-optional-chaining-7.22.5.tgz b/npm-packages-offline-cache/@babel-plugin-transform-optional-chaining-7.22.5.tgz deleted file mode 100644 index ffaa217662..0000000000 Binary files a/npm-packages-offline-cache/@babel-plugin-transform-optional-chaining-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-plugin-transform-optional-chaining-7.22.6.tgz b/npm-packages-offline-cache/@babel-plugin-transform-optional-chaining-7.22.6.tgz new file mode 100644 index 0000000000..0db544078e Binary files /dev/null and b/npm-packages-offline-cache/@babel-plugin-transform-optional-chaining-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-preset-env-7.22.5.tgz b/npm-packages-offline-cache/@babel-preset-env-7.22.5.tgz deleted file mode 100644 index 6ebece16ad..0000000000 Binary files a/npm-packages-offline-cache/@babel-preset-env-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-preset-env-7.22.7.tgz b/npm-packages-offline-cache/@babel-preset-env-7.22.7.tgz new file mode 100644 index 0000000000..00698f71b8 Binary files /dev/null and b/npm-packages-offline-cache/@babel-preset-env-7.22.7.tgz differ diff --git a/npm-packages-offline-cache/@babel-runtime-7.21.5.tgz b/npm-packages-offline-cache/@babel-runtime-7.21.5.tgz deleted file mode 100644 index 6e5947667d..0000000000 Binary files a/npm-packages-offline-cache/@babel-runtime-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-runtime-7.22.6.tgz b/npm-packages-offline-cache/@babel-runtime-7.22.6.tgz new file mode 100644 index 0000000000..cc727e0718 Binary files /dev/null and b/npm-packages-offline-cache/@babel-runtime-7.22.6.tgz differ diff --git a/npm-packages-offline-cache/@babel-template-7.20.7.tgz b/npm-packages-offline-cache/@babel-template-7.20.7.tgz deleted file mode 100644 index 3991017903..0000000000 Binary files a/npm-packages-offline-cache/@babel-template-7.20.7.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-traverse-7.21.5.tgz b/npm-packages-offline-cache/@babel-traverse-7.21.5.tgz deleted file mode 100644 index becc5736a7..0000000000 Binary files a/npm-packages-offline-cache/@babel-traverse-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-traverse-7.22.5.tgz b/npm-packages-offline-cache/@babel-traverse-7.22.5.tgz deleted file mode 100644 index f5b9a98109..0000000000 Binary files a/npm-packages-offline-cache/@babel-traverse-7.22.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@babel-traverse-7.22.8.tgz b/npm-packages-offline-cache/@babel-traverse-7.22.8.tgz new file mode 100644 index 0000000000..7793dd1ac0 Binary files /dev/null and b/npm-packages-offline-cache/@babel-traverse-7.22.8.tgz differ diff --git a/npm-packages-offline-cache/@babel-types-7.21.5.tgz b/npm-packages-offline-cache/@babel-types-7.21.5.tgz deleted file mode 100644 index 8a47710eea..0000000000 Binary files a/npm-packages-offline-cache/@babel-types-7.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@csstools-css-parser-algorithms-2.2.0.tgz b/npm-packages-offline-cache/@csstools-css-parser-algorithms-2.2.0.tgz deleted file mode 100644 index 0c59676653..0000000000 Binary files a/npm-packages-offline-cache/@csstools-css-parser-algorithms-2.2.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@csstools-css-parser-algorithms-2.3.0.tgz b/npm-packages-offline-cache/@csstools-css-parser-algorithms-2.3.0.tgz new file mode 100644 index 0000000000..d323245615 Binary files /dev/null and b/npm-packages-offline-cache/@csstools-css-parser-algorithms-2.3.0.tgz differ diff --git a/npm-packages-offline-cache/@csstools-media-query-list-parser-2.1.0.tgz b/npm-packages-offline-cache/@csstools-media-query-list-parser-2.1.0.tgz deleted file mode 100644 index 62added3e6..0000000000 Binary files a/npm-packages-offline-cache/@csstools-media-query-list-parser-2.1.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@csstools-media-query-list-parser-2.1.2.tgz b/npm-packages-offline-cache/@csstools-media-query-list-parser-2.1.2.tgz new file mode 100644 index 0000000000..e47eb4f6a7 Binary files /dev/null and b/npm-packages-offline-cache/@csstools-media-query-list-parser-2.1.2.tgz differ diff --git a/npm-packages-offline-cache/@csstools-selector-specificity-3.0.0.tgz b/npm-packages-offline-cache/@csstools-selector-specificity-3.0.0.tgz new file mode 100644 index 0000000000..9db85424ea Binary files /dev/null and b/npm-packages-offline-cache/@csstools-selector-specificity-3.0.0.tgz differ diff --git a/npm-packages-offline-cache/@emotion-react-11.11.0.tgz b/npm-packages-offline-cache/@emotion-react-11.11.0.tgz deleted file mode 100644 index ac27257944..0000000000 Binary files a/npm-packages-offline-cache/@emotion-react-11.11.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@emotion-react-11.11.1.tgz b/npm-packages-offline-cache/@emotion-react-11.11.1.tgz new file mode 100644 index 0000000000..bff9cb830d Binary files /dev/null and b/npm-packages-offline-cache/@emotion-react-11.11.1.tgz differ diff --git a/npm-packages-offline-cache/@eslint-eslintrc-2.0.3.tgz b/npm-packages-offline-cache/@eslint-eslintrc-2.0.3.tgz deleted file mode 100644 index 9c5920b46c..0000000000 Binary files a/npm-packages-offline-cache/@eslint-eslintrc-2.0.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@eslint-eslintrc-2.1.0.tgz b/npm-packages-offline-cache/@eslint-eslintrc-2.1.0.tgz new file mode 100644 index 0000000000..280aa3cb2b Binary files /dev/null and b/npm-packages-offline-cache/@eslint-eslintrc-2.1.0.tgz differ diff --git a/npm-packages-offline-cache/@eslint-js-8.42.0.tgz b/npm-packages-offline-cache/@eslint-js-8.44.0.tgz similarity index 90% rename from npm-packages-offline-cache/@eslint-js-8.42.0.tgz rename to npm-packages-offline-cache/@eslint-js-8.44.0.tgz index e2d858cf4a..609a1a3bc6 100644 Binary files a/npm-packages-offline-cache/@eslint-js-8.42.0.tgz and b/npm-packages-offline-cache/@eslint-js-8.44.0.tgz differ diff --git a/npm-packages-offline-cache/@jest-console-29.5.0.tgz b/npm-packages-offline-cache/@jest-console-29.5.0.tgz deleted file mode 100644 index 18b345c451..0000000000 Binary files a/npm-packages-offline-cache/@jest-console-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-console-29.6.1.tgz b/npm-packages-offline-cache/@jest-console-29.6.1.tgz new file mode 100644 index 0000000000..297a8a9463 Binary files /dev/null and b/npm-packages-offline-cache/@jest-console-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-core-29.5.0.tgz b/npm-packages-offline-cache/@jest-core-29.5.0.tgz deleted file mode 100644 index 7619c64f60..0000000000 Binary files a/npm-packages-offline-cache/@jest-core-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-core-29.6.1.tgz b/npm-packages-offline-cache/@jest-core-29.6.1.tgz new file mode 100644 index 0000000000..6a4ea714ed Binary files /dev/null and b/npm-packages-offline-cache/@jest-core-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-environment-29.5.0.tgz b/npm-packages-offline-cache/@jest-environment-29.5.0.tgz deleted file mode 100644 index 4570744b25..0000000000 Binary files a/npm-packages-offline-cache/@jest-environment-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-environment-29.6.1.tgz b/npm-packages-offline-cache/@jest-environment-29.6.1.tgz new file mode 100644 index 0000000000..4669465af7 Binary files /dev/null and b/npm-packages-offline-cache/@jest-environment-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-expect-29.5.0.tgz b/npm-packages-offline-cache/@jest-expect-29.5.0.tgz deleted file mode 100644 index 5181b2f320..0000000000 Binary files a/npm-packages-offline-cache/@jest-expect-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-expect-29.6.1.tgz b/npm-packages-offline-cache/@jest-expect-29.6.1.tgz new file mode 100644 index 0000000000..af0f26243e Binary files /dev/null and b/npm-packages-offline-cache/@jest-expect-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-expect-utils-29.5.0.tgz b/npm-packages-offline-cache/@jest-expect-utils-29.5.0.tgz deleted file mode 100644 index 3e948051a9..0000000000 Binary files a/npm-packages-offline-cache/@jest-expect-utils-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-expect-utils-29.6.1.tgz b/npm-packages-offline-cache/@jest-expect-utils-29.6.1.tgz new file mode 100644 index 0000000000..465f55b13d Binary files /dev/null and b/npm-packages-offline-cache/@jest-expect-utils-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-fake-timers-29.5.0.tgz b/npm-packages-offline-cache/@jest-fake-timers-29.5.0.tgz deleted file mode 100644 index aab8f83d17..0000000000 Binary files a/npm-packages-offline-cache/@jest-fake-timers-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-fake-timers-29.6.1.tgz b/npm-packages-offline-cache/@jest-fake-timers-29.6.1.tgz new file mode 100644 index 0000000000..18d8715b99 Binary files /dev/null and b/npm-packages-offline-cache/@jest-fake-timers-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-globals-29.5.0.tgz b/npm-packages-offline-cache/@jest-globals-29.5.0.tgz deleted file mode 100644 index cc9901abae..0000000000 Binary files a/npm-packages-offline-cache/@jest-globals-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-globals-29.6.1.tgz b/npm-packages-offline-cache/@jest-globals-29.6.1.tgz new file mode 100644 index 0000000000..8521b31aad Binary files /dev/null and b/npm-packages-offline-cache/@jest-globals-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-reporters-29.5.0.tgz b/npm-packages-offline-cache/@jest-reporters-29.5.0.tgz deleted file mode 100644 index 0c53054d19..0000000000 Binary files a/npm-packages-offline-cache/@jest-reporters-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-reporters-29.6.1.tgz b/npm-packages-offline-cache/@jest-reporters-29.6.1.tgz new file mode 100644 index 0000000000..4b94c8e039 Binary files /dev/null and b/npm-packages-offline-cache/@jest-reporters-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-schemas-29.4.3.tgz b/npm-packages-offline-cache/@jest-schemas-29.4.3.tgz deleted file mode 100644 index 991b18cd61..0000000000 Binary files a/npm-packages-offline-cache/@jest-schemas-29.4.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-schemas-29.6.0.tgz b/npm-packages-offline-cache/@jest-schemas-29.6.0.tgz new file mode 100644 index 0000000000..4c66c36f65 Binary files /dev/null and b/npm-packages-offline-cache/@jest-schemas-29.6.0.tgz differ diff --git a/npm-packages-offline-cache/@jest-source-map-29.4.3.tgz b/npm-packages-offline-cache/@jest-source-map-29.4.3.tgz deleted file mode 100644 index 35ff493de3..0000000000 Binary files a/npm-packages-offline-cache/@jest-source-map-29.4.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-source-map-29.6.0.tgz b/npm-packages-offline-cache/@jest-source-map-29.6.0.tgz new file mode 100644 index 0000000000..74ab857f4d Binary files /dev/null and b/npm-packages-offline-cache/@jest-source-map-29.6.0.tgz differ diff --git a/npm-packages-offline-cache/@jest-test-result-29.5.0.tgz b/npm-packages-offline-cache/@jest-test-result-29.5.0.tgz deleted file mode 100644 index 451bc78c32..0000000000 Binary files a/npm-packages-offline-cache/@jest-test-result-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-test-result-29.6.1.tgz b/npm-packages-offline-cache/@jest-test-result-29.6.1.tgz new file mode 100644 index 0000000000..cd2a44311b Binary files /dev/null and b/npm-packages-offline-cache/@jest-test-result-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-test-sequencer-29.5.0.tgz b/npm-packages-offline-cache/@jest-test-sequencer-29.5.0.tgz deleted file mode 100644 index 65a2eec203..0000000000 Binary files a/npm-packages-offline-cache/@jest-test-sequencer-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-test-sequencer-29.6.1.tgz b/npm-packages-offline-cache/@jest-test-sequencer-29.6.1.tgz new file mode 100644 index 0000000000..05061ca473 Binary files /dev/null and b/npm-packages-offline-cache/@jest-test-sequencer-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-transform-29.5.0.tgz b/npm-packages-offline-cache/@jest-transform-29.5.0.tgz deleted file mode 100644 index 6c3e5feae1..0000000000 Binary files a/npm-packages-offline-cache/@jest-transform-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-transform-29.6.1.tgz b/npm-packages-offline-cache/@jest-transform-29.6.1.tgz new file mode 100644 index 0000000000..5bb32e7b84 Binary files /dev/null and b/npm-packages-offline-cache/@jest-transform-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jest-types-29.5.0.tgz b/npm-packages-offline-cache/@jest-types-29.5.0.tgz deleted file mode 100644 index dd7745d0cd..0000000000 Binary files a/npm-packages-offline-cache/@jest-types-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@jest-types-29.6.1.tgz b/npm-packages-offline-cache/@jest-types-29.6.1.tgz new file mode 100644 index 0000000000..4a9765b487 Binary files /dev/null and b/npm-packages-offline-cache/@jest-types-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/@jridgewell-source-map-0.3.3.tgz b/npm-packages-offline-cache/@jridgewell-source-map-0.3.5.tgz similarity index 99% rename from npm-packages-offline-cache/@jridgewell-source-map-0.3.3.tgz rename to npm-packages-offline-cache/@jridgewell-source-map-0.3.5.tgz index 99c27807cc..bd7c800698 100644 Binary files a/npm-packages-offline-cache/@jridgewell-source-map-0.3.3.tgz and b/npm-packages-offline-cache/@jridgewell-source-map-0.3.5.tgz differ diff --git a/npm-packages-offline-cache/@lerna-child-process-7.0.1.tgz b/npm-packages-offline-cache/@lerna-child-process-7.0.1.tgz deleted file mode 100644 index 48b1a1387c..0000000000 Binary files a/npm-packages-offline-cache/@lerna-child-process-7.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@lerna-child-process-7.1.1.tgz b/npm-packages-offline-cache/@lerna-child-process-7.1.1.tgz new file mode 100644 index 0000000000..dce65850dc Binary files /dev/null and b/npm-packages-offline-cache/@lerna-child-process-7.1.1.tgz differ diff --git a/npm-packages-offline-cache/@lerna-create-7.0.1.tgz b/npm-packages-offline-cache/@lerna-create-7.0.1.tgz deleted file mode 100644 index 9ae23321eb..0000000000 Binary files a/npm-packages-offline-cache/@lerna-create-7.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@lerna-create-7.1.1.tgz b/npm-packages-offline-cache/@lerna-create-7.1.1.tgz new file mode 100644 index 0000000000..0c74c2fc49 Binary files /dev/null and b/npm-packages-offline-cache/@lerna-create-7.1.1.tgz differ diff --git a/npm-packages-offline-cache/@nicolo-ribaudo-semver-v6-6.3.3.tgz b/npm-packages-offline-cache/@nicolo-ribaudo-semver-v6-6.3.3.tgz new file mode 100644 index 0000000000..c11024a5df Binary files /dev/null and b/npm-packages-offline-cache/@nicolo-ribaudo-semver-v6-6.3.3.tgz differ diff --git a/npm-packages-offline-cache/@npmcli-fs-2.1.2.tgz b/npm-packages-offline-cache/@npmcli-fs-2.1.2.tgz deleted file mode 100644 index 2d7bc8cf55..0000000000 Binary files a/npm-packages-offline-cache/@npmcli-fs-2.1.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@npmcli-git-4.0.4.tgz b/npm-packages-offline-cache/@npmcli-git-4.0.4.tgz deleted file mode 100644 index 6acf01b064..0000000000 Binary files a/npm-packages-offline-cache/@npmcli-git-4.0.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@npmcli-git-4.1.0.tgz b/npm-packages-offline-cache/@npmcli-git-4.1.0.tgz new file mode 100644 index 0000000000..61389d90c9 Binary files /dev/null and b/npm-packages-offline-cache/@npmcli-git-4.1.0.tgz differ diff --git a/npm-packages-offline-cache/@npmcli-move-file-2.0.1.tgz b/npm-packages-offline-cache/@npmcli-move-file-2.0.1.tgz deleted file mode 100644 index 55a2fe3a74..0000000000 Binary files a/npm-packages-offline-cache/@npmcli-move-file-2.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nrwl-devkit-16.3.2.tgz b/npm-packages-offline-cache/@nrwl-devkit-16.3.2.tgz deleted file mode 100644 index 4e79b13a7f..0000000000 Binary files a/npm-packages-offline-cache/@nrwl-devkit-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nrwl-devkit-16.5.1.tgz b/npm-packages-offline-cache/@nrwl-devkit-16.5.1.tgz new file mode 100644 index 0000000000..80094a1542 Binary files /dev/null and b/npm-packages-offline-cache/@nrwl-devkit-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nrwl-tao-16.3.2.tgz b/npm-packages-offline-cache/@nrwl-tao-16.3.2.tgz deleted file mode 100644 index 96e4aa7eca..0000000000 Binary files a/npm-packages-offline-cache/@nrwl-tao-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nrwl-tao-16.5.1.tgz b/npm-packages-offline-cache/@nrwl-tao-16.5.1.tgz new file mode 100644 index 0000000000..2ac87826e5 Binary files /dev/null and b/npm-packages-offline-cache/@nrwl-tao-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-devkit-16.3.2.tgz b/npm-packages-offline-cache/@nx-devkit-16.3.2.tgz deleted file mode 100644 index b5a0de69f6..0000000000 Binary files a/npm-packages-offline-cache/@nx-devkit-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-devkit-16.5.1.tgz b/npm-packages-offline-cache/@nx-devkit-16.5.1.tgz new file mode 100644 index 0000000000..f148e415b6 Binary files /dev/null and b/npm-packages-offline-cache/@nx-devkit-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-darwin-arm64-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-darwin-arm64-16.3.2.tgz deleted file mode 100644 index e156071dc6..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-darwin-arm64-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-darwin-arm64-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-darwin-arm64-16.5.1.tgz new file mode 100644 index 0000000000..47c9fb7c64 Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-darwin-arm64-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-darwin-x64-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-darwin-x64-16.3.2.tgz deleted file mode 100644 index 7079c0cfea..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-darwin-x64-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-darwin-x64-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-darwin-x64-16.5.1.tgz new file mode 100644 index 0000000000..d1f4254753 Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-darwin-x64-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-freebsd-x64-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-freebsd-x64-16.3.2.tgz deleted file mode 100644 index ea4fca5064..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-freebsd-x64-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-freebsd-x64-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-freebsd-x64-16.5.1.tgz new file mode 100644 index 0000000000..a4970f9c56 Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-freebsd-x64-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-arm-gnueabihf-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-linux-arm-gnueabihf-16.3.2.tgz deleted file mode 100644 index cfc3a5e942..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-linux-arm-gnueabihf-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-arm-gnueabihf-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-linux-arm-gnueabihf-16.5.1.tgz new file mode 100644 index 0000000000..ac31e27247 Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-linux-arm-gnueabihf-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-arm64-gnu-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-linux-arm64-gnu-16.3.2.tgz deleted file mode 100644 index 3e2b823414..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-linux-arm64-gnu-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-arm64-gnu-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-linux-arm64-gnu-16.5.1.tgz new file mode 100644 index 0000000000..1053ef21cc Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-linux-arm64-gnu-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-arm64-musl-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-linux-arm64-musl-16.3.2.tgz deleted file mode 100644 index 6ae912af51..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-linux-arm64-musl-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-arm64-musl-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-linux-arm64-musl-16.5.1.tgz new file mode 100644 index 0000000000..e4af81baa4 Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-linux-arm64-musl-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-x64-gnu-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-linux-x64-gnu-16.3.2.tgz deleted file mode 100644 index 6336ac2a6c..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-linux-x64-gnu-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-x64-gnu-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-linux-x64-gnu-16.5.1.tgz new file mode 100644 index 0000000000..38e2f4702f Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-linux-x64-gnu-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-x64-musl-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-linux-x64-musl-16.3.2.tgz deleted file mode 100644 index bacabd318a..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-linux-x64-musl-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-linux-x64-musl-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-linux-x64-musl-16.5.1.tgz new file mode 100644 index 0000000000..582c6f08b3 Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-linux-x64-musl-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-win32-arm64-msvc-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-win32-arm64-msvc-16.3.2.tgz deleted file mode 100644 index 0e07001e0f..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-win32-arm64-msvc-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-win32-arm64-msvc-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-win32-arm64-msvc-16.5.1.tgz new file mode 100644 index 0000000000..4d580591ea Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-win32-arm64-msvc-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@nx-nx-win32-x64-msvc-16.3.2.tgz b/npm-packages-offline-cache/@nx-nx-win32-x64-msvc-16.3.2.tgz deleted file mode 100644 index d407b1d256..0000000000 Binary files a/npm-packages-offline-cache/@nx-nx-win32-x64-msvc-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@nx-nx-win32-x64-msvc-16.5.1.tgz b/npm-packages-offline-cache/@nx-nx-win32-x64-msvc-16.5.1.tgz new file mode 100644 index 0000000000..c9d2a441c3 Binary files /dev/null and b/npm-packages-offline-cache/@nx-nx-win32-x64-msvc-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/@octokit-auth-token-3.0.3.tgz b/npm-packages-offline-cache/@octokit-auth-token-3.0.3.tgz deleted file mode 100644 index 92bab4301c..0000000000 Binary files a/npm-packages-offline-cache/@octokit-auth-token-3.0.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-auth-token-3.0.4.tgz b/npm-packages-offline-cache/@octokit-auth-token-3.0.4.tgz new file mode 100644 index 0000000000..bf00e5fd1c Binary files /dev/null and b/npm-packages-offline-cache/@octokit-auth-token-3.0.4.tgz differ diff --git a/npm-packages-offline-cache/@octokit-core-4.2.1.tgz b/npm-packages-offline-cache/@octokit-core-4.2.1.tgz deleted file mode 100644 index 17bbec59f4..0000000000 Binary files a/npm-packages-offline-cache/@octokit-core-4.2.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-core-4.2.4.tgz b/npm-packages-offline-cache/@octokit-core-4.2.4.tgz new file mode 100644 index 0000000000..f51e2f8c19 Binary files /dev/null and b/npm-packages-offline-cache/@octokit-core-4.2.4.tgz differ diff --git a/npm-packages-offline-cache/@octokit-endpoint-7.0.5.tgz b/npm-packages-offline-cache/@octokit-endpoint-7.0.5.tgz deleted file mode 100644 index d7c17e2f20..0000000000 Binary files a/npm-packages-offline-cache/@octokit-endpoint-7.0.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-endpoint-7.0.6.tgz b/npm-packages-offline-cache/@octokit-endpoint-7.0.6.tgz new file mode 100644 index 0000000000..e4dc821367 Binary files /dev/null and b/npm-packages-offline-cache/@octokit-endpoint-7.0.6.tgz differ diff --git a/npm-packages-offline-cache/@octokit-graphql-5.0.5.tgz b/npm-packages-offline-cache/@octokit-graphql-5.0.5.tgz deleted file mode 100644 index b26b093e3a..0000000000 Binary files a/npm-packages-offline-cache/@octokit-graphql-5.0.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-graphql-5.0.6.tgz b/npm-packages-offline-cache/@octokit-graphql-5.0.6.tgz new file mode 100644 index 0000000000..fa736bb05d Binary files /dev/null and b/npm-packages-offline-cache/@octokit-graphql-5.0.6.tgz differ diff --git a/npm-packages-offline-cache/@octokit-openapi-types-17.2.0.tgz b/npm-packages-offline-cache/@octokit-openapi-types-17.2.0.tgz deleted file mode 100644 index 81fc03727b..0000000000 Binary files a/npm-packages-offline-cache/@octokit-openapi-types-17.2.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-plugin-rest-endpoint-methods-7.2.1.tgz b/npm-packages-offline-cache/@octokit-plugin-rest-endpoint-methods-7.2.1.tgz deleted file mode 100644 index c678f928ce..0000000000 Binary files a/npm-packages-offline-cache/@octokit-plugin-rest-endpoint-methods-7.2.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-plugin-rest-endpoint-methods-7.2.3.tgz b/npm-packages-offline-cache/@octokit-plugin-rest-endpoint-methods-7.2.3.tgz new file mode 100644 index 0000000000..12b1f58651 Binary files /dev/null and b/npm-packages-offline-cache/@octokit-plugin-rest-endpoint-methods-7.2.3.tgz differ diff --git a/npm-packages-offline-cache/@octokit-request-6.2.4.tgz b/npm-packages-offline-cache/@octokit-request-6.2.4.tgz deleted file mode 100644 index 4b01fbef30..0000000000 Binary files a/npm-packages-offline-cache/@octokit-request-6.2.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-request-6.2.8.tgz b/npm-packages-offline-cache/@octokit-request-6.2.8.tgz new file mode 100644 index 0000000000..b94747ae8c Binary files /dev/null and b/npm-packages-offline-cache/@octokit-request-6.2.8.tgz differ diff --git a/npm-packages-offline-cache/@octokit-types-10.0.0.tgz b/npm-packages-offline-cache/@octokit-types-10.0.0.tgz new file mode 100644 index 0000000000..2e5f4eafc0 Binary files /dev/null and b/npm-packages-offline-cache/@octokit-types-10.0.0.tgz differ diff --git a/npm-packages-offline-cache/@octokit-types-9.2.2.tgz b/npm-packages-offline-cache/@octokit-types-9.2.2.tgz deleted file mode 100644 index 8b73985bb8..0000000000 Binary files a/npm-packages-offline-cache/@octokit-types-9.2.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-types-9.3.1.tgz b/npm-packages-offline-cache/@octokit-types-9.3.1.tgz deleted file mode 100644 index c9850fc23c..0000000000 Binary files a/npm-packages-offline-cache/@octokit-types-9.3.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@octokit-types-9.3.2.tgz b/npm-packages-offline-cache/@octokit-types-9.3.2.tgz new file mode 100644 index 0000000000..3a18e15db3 Binary files /dev/null and b/npm-packages-offline-cache/@octokit-types-9.3.2.tgz differ diff --git a/npm-packages-offline-cache/@petamoriken-float16-3.8.0.tgz b/npm-packages-offline-cache/@petamoriken-float16-3.8.0.tgz deleted file mode 100644 index 6db49cfda5..0000000000 Binary files a/npm-packages-offline-cache/@petamoriken-float16-3.8.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@petamoriken-float16-3.8.1.tgz b/npm-packages-offline-cache/@petamoriken-float16-3.8.1.tgz new file mode 100644 index 0000000000..ceeb4f7621 Binary files /dev/null and b/npm-packages-offline-cache/@petamoriken-float16-3.8.1.tgz differ diff --git a/npm-packages-offline-cache/@sigstore-tuf-1.0.2.tgz b/npm-packages-offline-cache/@sigstore-tuf-1.0.2.tgz new file mode 100644 index 0000000000..16cdf6eddb Binary files /dev/null and b/npm-packages-offline-cache/@sigstore-tuf-1.0.2.tgz differ diff --git a/npm-packages-offline-cache/@sinclair-typebox-0.25.24.tgz b/npm-packages-offline-cache/@sinclair-typebox-0.25.24.tgz deleted file mode 100644 index 55160ccdfb..0000000000 Binary files a/npm-packages-offline-cache/@sinclair-typebox-0.25.24.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@sinclair-typebox-0.27.8.tgz b/npm-packages-offline-cache/@sinclair-typebox-0.27.8.tgz new file mode 100644 index 0000000000..573afecbff Binary files /dev/null and b/npm-packages-offline-cache/@sinclair-typebox-0.27.8.tgz differ diff --git a/npm-packages-offline-cache/@sinonjs-fake-timers-10.1.0.tgz b/npm-packages-offline-cache/@sinonjs-fake-timers-10.3.0.tgz similarity index 69% rename from npm-packages-offline-cache/@sinonjs-fake-timers-10.1.0.tgz rename to npm-packages-offline-cache/@sinonjs-fake-timers-10.3.0.tgz index 644c1843c9..30fc2d302c 100644 Binary files a/npm-packages-offline-cache/@sinonjs-fake-timers-10.1.0.tgz and b/npm-packages-offline-cache/@sinonjs-fake-timers-10.3.0.tgz differ diff --git a/npm-packages-offline-cache/@types-babel__core-7.20.0.tgz b/npm-packages-offline-cache/@types-babel__core-7.20.0.tgz deleted file mode 100644 index c6c76fb69c..0000000000 Binary files a/npm-packages-offline-cache/@types-babel__core-7.20.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-babel__core-7.20.1.tgz b/npm-packages-offline-cache/@types-babel__core-7.20.1.tgz new file mode 100644 index 0000000000..bb55609772 Binary files /dev/null and b/npm-packages-offline-cache/@types-babel__core-7.20.1.tgz differ diff --git a/npm-packages-offline-cache/@types-babel__traverse-7.18.5.tgz b/npm-packages-offline-cache/@types-babel__traverse-7.18.5.tgz deleted file mode 100644 index 350bc90ff6..0000000000 Binary files a/npm-packages-offline-cache/@types-babel__traverse-7.18.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-babel__traverse-7.20.1.tgz b/npm-packages-offline-cache/@types-babel__traverse-7.20.1.tgz new file mode 100644 index 0000000000..3694d4df9e Binary files /dev/null and b/npm-packages-offline-cache/@types-babel__traverse-7.20.1.tgz differ diff --git a/npm-packages-offline-cache/@types-eslint-8.37.0.tgz b/npm-packages-offline-cache/@types-eslint-8.37.0.tgz deleted file mode 100644 index a26a9a81c7..0000000000 Binary files a/npm-packages-offline-cache/@types-eslint-8.37.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-eslint-8.44.0.tgz b/npm-packages-offline-cache/@types-eslint-8.44.0.tgz new file mode 100644 index 0000000000..b1bf513ca6 Binary files /dev/null and b/npm-packages-offline-cache/@types-eslint-8.44.0.tgz differ diff --git a/npm-packages-offline-cache/@types-json-schema-7.0.11.tgz b/npm-packages-offline-cache/@types-json-schema-7.0.11.tgz deleted file mode 100644 index 6b4fef81bb..0000000000 Binary files a/npm-packages-offline-cache/@types-json-schema-7.0.11.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-json-schema-7.0.12.tgz b/npm-packages-offline-cache/@types-json-schema-7.0.12.tgz new file mode 100644 index 0000000000..c81bb50f35 Binary files /dev/null and b/npm-packages-offline-cache/@types-json-schema-7.0.12.tgz differ diff --git a/npm-packages-offline-cache/@types-lodash-4.14.194.tgz b/npm-packages-offline-cache/@types-lodash-4.14.194.tgz deleted file mode 100644 index 90e5ecd7a8..0000000000 Binary files a/npm-packages-offline-cache/@types-lodash-4.14.194.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-lodash-4.14.195.tgz b/npm-packages-offline-cache/@types-lodash-4.14.195.tgz new file mode 100644 index 0000000000..cd7339a2a7 Binary files /dev/null and b/npm-packages-offline-cache/@types-lodash-4.14.195.tgz differ diff --git a/npm-packages-offline-cache/@types-node-18.16.12.tgz b/npm-packages-offline-cache/@types-node-18.16.12.tgz deleted file mode 100644 index b5a4e16dea..0000000000 Binary files a/npm-packages-offline-cache/@types-node-18.16.12.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-node-18.16.19.tgz b/npm-packages-offline-cache/@types-node-18.16.19.tgz new file mode 100644 index 0000000000..00307ee080 Binary files /dev/null and b/npm-packages-offline-cache/@types-node-18.16.19.tgz differ diff --git a/npm-packages-offline-cache/@types-node-20.1.7.tgz b/npm-packages-offline-cache/@types-node-20.1.7.tgz deleted file mode 100644 index c78a086d3a..0000000000 Binary files a/npm-packages-offline-cache/@types-node-20.1.7.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-node-20.4.1.tgz b/npm-packages-offline-cache/@types-node-20.4.1.tgz new file mode 100644 index 0000000000..0bbb673a75 Binary files /dev/null and b/npm-packages-offline-cache/@types-node-20.4.1.tgz differ diff --git a/npm-packages-offline-cache/@types-prettier-2.7.2.tgz b/npm-packages-offline-cache/@types-prettier-2.7.2.tgz deleted file mode 100644 index 3bb6d57fa6..0000000000 Binary files a/npm-packages-offline-cache/@types-prettier-2.7.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-prettier-2.7.3.tgz b/npm-packages-offline-cache/@types-prettier-2.7.3.tgz new file mode 100644 index 0000000000..0fd5109698 Binary files /dev/null and b/npm-packages-offline-cache/@types-prettier-2.7.3.tgz differ diff --git a/npm-packages-offline-cache/@types-react-18.2.14.tgz b/npm-packages-offline-cache/@types-react-18.2.14.tgz new file mode 100644 index 0000000000..06a27c3cd8 Binary files /dev/null and b/npm-packages-offline-cache/@types-react-18.2.14.tgz differ diff --git a/npm-packages-offline-cache/@types-react-18.2.6.tgz b/npm-packages-offline-cache/@types-react-18.2.6.tgz deleted file mode 100644 index a0533a7490..0000000000 Binary files a/npm-packages-offline-cache/@types-react-18.2.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@types-unist-3.0.0.tgz b/npm-packages-offline-cache/@types-unist-3.0.0.tgz new file mode 100644 index 0000000000..192e266ddc Binary files /dev/null and b/npm-packages-offline-cache/@types-unist-3.0.0.tgz differ diff --git a/npm-packages-offline-cache/@wdio-logger-8.11.0.tgz b/npm-packages-offline-cache/@wdio-logger-8.11.0.tgz new file mode 100644 index 0000000000..90e6d7ef19 Binary files /dev/null and b/npm-packages-offline-cache/@wdio-logger-8.11.0.tgz differ diff --git a/npm-packages-offline-cache/@wdio-logger-8.6.6.tgz b/npm-packages-offline-cache/@wdio-logger-8.6.6.tgz deleted file mode 100644 index 97a729dc2b..0000000000 Binary files a/npm-packages-offline-cache/@wdio-logger-8.6.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/@yarnpkg-parsers-3.0.0-rc.43.tgz b/npm-packages-offline-cache/@yarnpkg-parsers-3.0.0-rc.46.tgz similarity index 99% rename from npm-packages-offline-cache/@yarnpkg-parsers-3.0.0-rc.43.tgz rename to npm-packages-offline-cache/@yarnpkg-parsers-3.0.0-rc.46.tgz index 51abf843a0..5c2c7e9fc8 100644 Binary files a/npm-packages-offline-cache/@yarnpkg-parsers-3.0.0-rc.43.tgz and b/npm-packages-offline-cache/@yarnpkg-parsers-3.0.0-rc.46.tgz differ diff --git a/npm-packages-offline-cache/acorn-8.10.0.tgz b/npm-packages-offline-cache/acorn-8.10.0.tgz new file mode 100644 index 0000000000..33c27d5aef Binary files /dev/null and b/npm-packages-offline-cache/acorn-8.10.0.tgz differ diff --git a/npm-packages-offline-cache/acorn-8.8.2.tgz b/npm-packages-offline-cache/acorn-8.8.2.tgz deleted file mode 100644 index d6b0d8fa0d..0000000000 Binary files a/npm-packages-offline-cache/acorn-8.8.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/aria-query-5.1.3.tgz b/npm-packages-offline-cache/aria-query-5.1.3.tgz deleted file mode 100644 index 160c7afad0..0000000000 Binary files a/npm-packages-offline-cache/aria-query-5.1.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/aria-query-5.3.0.tgz b/npm-packages-offline-cache/aria-query-5.3.0.tgz new file mode 100644 index 0000000000..01b8597b15 Binary files /dev/null and b/npm-packages-offline-cache/aria-query-5.3.0.tgz differ diff --git a/npm-packages-offline-cache/axe-core-4.7.1.tgz b/npm-packages-offline-cache/axe-core-4.7.1.tgz deleted file mode 100644 index 58edede86d..0000000000 Binary files a/npm-packages-offline-cache/axe-core-4.7.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/axe-core-4.7.2.tgz b/npm-packages-offline-cache/axe-core-4.7.2.tgz new file mode 100644 index 0000000000..a66016a815 Binary files /dev/null and b/npm-packages-offline-cache/axe-core-4.7.2.tgz differ diff --git a/npm-packages-offline-cache/axobject-query-3.1.1.tgz b/npm-packages-offline-cache/axobject-query-3.1.1.tgz deleted file mode 100644 index 1328af5f9e..0000000000 Binary files a/npm-packages-offline-cache/axobject-query-3.1.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/axobject-query-3.2.1.tgz b/npm-packages-offline-cache/axobject-query-3.2.1.tgz new file mode 100644 index 0000000000..1cf04e2328 Binary files /dev/null and b/npm-packages-offline-cache/axobject-query-3.2.1.tgz differ diff --git a/npm-packages-offline-cache/babel-jest-29.5.0.tgz b/npm-packages-offline-cache/babel-jest-29.5.0.tgz deleted file mode 100644 index 73d572a3da..0000000000 Binary files a/npm-packages-offline-cache/babel-jest-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/babel-jest-29.6.1.tgz b/npm-packages-offline-cache/babel-jest-29.6.1.tgz new file mode 100644 index 0000000000..22e2db7e5c Binary files /dev/null and b/npm-packages-offline-cache/babel-jest-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/babel-loader-9.1.2.tgz b/npm-packages-offline-cache/babel-loader-9.1.2.tgz deleted file mode 100644 index 51a28df9c0..0000000000 Binary files a/npm-packages-offline-cache/babel-loader-9.1.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/babel-loader-9.1.3.tgz b/npm-packages-offline-cache/babel-loader-9.1.3.tgz new file mode 100644 index 0000000000..851c3abf26 Binary files /dev/null and b/npm-packages-offline-cache/babel-loader-9.1.3.tgz differ diff --git a/npm-packages-offline-cache/babel-plugin-polyfill-corejs2-0.4.3.tgz b/npm-packages-offline-cache/babel-plugin-polyfill-corejs2-0.4.3.tgz deleted file mode 100644 index ef63cf44b1..0000000000 Binary files a/npm-packages-offline-cache/babel-plugin-polyfill-corejs2-0.4.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/babel-plugin-polyfill-corejs2-0.4.4.tgz b/npm-packages-offline-cache/babel-plugin-polyfill-corejs2-0.4.4.tgz new file mode 100644 index 0000000000..826ed7f0f6 Binary files /dev/null and b/npm-packages-offline-cache/babel-plugin-polyfill-corejs2-0.4.4.tgz differ diff --git a/npm-packages-offline-cache/babel-plugin-polyfill-corejs3-0.8.1.tgz b/npm-packages-offline-cache/babel-plugin-polyfill-corejs3-0.8.1.tgz deleted file mode 100644 index d93998c6cc..0000000000 Binary files a/npm-packages-offline-cache/babel-plugin-polyfill-corejs3-0.8.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/babel-plugin-polyfill-corejs3-0.8.2.tgz b/npm-packages-offline-cache/babel-plugin-polyfill-corejs3-0.8.2.tgz new file mode 100644 index 0000000000..71e5600449 Binary files /dev/null and b/npm-packages-offline-cache/babel-plugin-polyfill-corejs3-0.8.2.tgz differ diff --git a/npm-packages-offline-cache/babel-plugin-polyfill-regenerator-0.5.0.tgz b/npm-packages-offline-cache/babel-plugin-polyfill-regenerator-0.5.0.tgz deleted file mode 100644 index 21d2109519..0000000000 Binary files a/npm-packages-offline-cache/babel-plugin-polyfill-regenerator-0.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/babel-plugin-polyfill-regenerator-0.5.1.tgz b/npm-packages-offline-cache/babel-plugin-polyfill-regenerator-0.5.1.tgz new file mode 100644 index 0000000000..23f9d192c0 Binary files /dev/null and b/npm-packages-offline-cache/babel-plugin-polyfill-regenerator-0.5.1.tgz differ diff --git a/npm-packages-offline-cache/browserslist-4.21.5.tgz b/npm-packages-offline-cache/browserslist-4.21.5.tgz deleted file mode 100644 index 7c98d1564d..0000000000 Binary files a/npm-packages-offline-cache/browserslist-4.21.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/browserslist-4.21.9.tgz b/npm-packages-offline-cache/browserslist-4.21.9.tgz new file mode 100644 index 0000000000..12636e6608 Binary files /dev/null and b/npm-packages-offline-cache/browserslist-4.21.9.tgz differ diff --git a/npm-packages-offline-cache/cacache-16.1.3.tgz b/npm-packages-offline-cache/cacache-16.1.3.tgz deleted file mode 100644 index b1dd846c12..0000000000 Binary files a/npm-packages-offline-cache/cacache-16.1.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/cacache-17.1.2.tgz b/npm-packages-offline-cache/cacache-17.1.2.tgz deleted file mode 100644 index 0493f69507..0000000000 Binary files a/npm-packages-offline-cache/cacache-17.1.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/cacache-17.1.3.tgz b/npm-packages-offline-cache/cacache-17.1.3.tgz new file mode 100644 index 0000000000..98ae5ab9af Binary files /dev/null and b/npm-packages-offline-cache/cacache-17.1.3.tgz differ diff --git a/npm-packages-offline-cache/cacheable-request-7.0.2.tgz b/npm-packages-offline-cache/cacheable-request-7.0.2.tgz deleted file mode 100644 index 79b3c39628..0000000000 Binary files a/npm-packages-offline-cache/cacheable-request-7.0.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/cacheable-request-7.0.4.tgz b/npm-packages-offline-cache/cacheable-request-7.0.4.tgz new file mode 100644 index 0000000000..5f876cf159 Binary files /dev/null and b/npm-packages-offline-cache/cacheable-request-7.0.4.tgz differ diff --git a/npm-packages-offline-cache/camelcase-keys-7.0.2.tgz b/npm-packages-offline-cache/camelcase-keys-7.0.2.tgz new file mode 100644 index 0000000000..309d36ad0b Binary files /dev/null and b/npm-packages-offline-cache/camelcase-keys-7.0.2.tgz differ diff --git a/npm-packages-offline-cache/caniuse-lite-1.0.30001488.tgz b/npm-packages-offline-cache/caniuse-lite-1.0.30001488.tgz deleted file mode 100644 index 42bc436498..0000000000 Binary files a/npm-packages-offline-cache/caniuse-lite-1.0.30001488.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/caniuse-lite-1.0.30001515.tgz b/npm-packages-offline-cache/caniuse-lite-1.0.30001515.tgz new file mode 100644 index 0000000000..8d21a76a50 Binary files /dev/null and b/npm-packages-offline-cache/caniuse-lite-1.0.30001515.tgz differ diff --git a/npm-packages-offline-cache/chalk-5.2.0.tgz b/npm-packages-offline-cache/chalk-5.2.0.tgz deleted file mode 100644 index 83e86f9d87..0000000000 Binary files a/npm-packages-offline-cache/chalk-5.2.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/chalk-5.3.0.tgz b/npm-packages-offline-cache/chalk-5.3.0.tgz new file mode 100644 index 0000000000..f5861dd2e3 Binary files /dev/null and b/npm-packages-offline-cache/chalk-5.3.0.tgz differ diff --git a/npm-packages-offline-cache/cjs-module-lexer-1.2.2.tgz b/npm-packages-offline-cache/cjs-module-lexer-1.2.2.tgz deleted file mode 100644 index f5d6e054a5..0000000000 Binary files a/npm-packages-offline-cache/cjs-module-lexer-1.2.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/cjs-module-lexer-1.2.3.tgz b/npm-packages-offline-cache/cjs-module-lexer-1.2.3.tgz new file mode 100644 index 0000000000..f6276a7d96 Binary files /dev/null and b/npm-packages-offline-cache/cjs-module-lexer-1.2.3.tgz differ diff --git a/npm-packages-offline-cache/collect-v8-coverage-1.0.1.tgz b/npm-packages-offline-cache/collect-v8-coverage-1.0.1.tgz deleted file mode 100644 index d14ae48b91..0000000000 Binary files a/npm-packages-offline-cache/collect-v8-coverage-1.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/collect-v8-coverage-1.0.2.tgz b/npm-packages-offline-cache/collect-v8-coverage-1.0.2.tgz new file mode 100644 index 0000000000..fc4e440be2 Binary files /dev/null and b/npm-packages-offline-cache/collect-v8-coverage-1.0.2.tgz differ diff --git a/npm-packages-offline-cache/common-path-prefix-3.0.0.tgz b/npm-packages-offline-cache/common-path-prefix-3.0.0.tgz new file mode 100644 index 0000000000..61961157ea Binary files /dev/null and b/npm-packages-offline-cache/common-path-prefix-3.0.0.tgz differ diff --git a/npm-packages-offline-cache/commondir-1.0.1.tgz b/npm-packages-offline-cache/commondir-1.0.1.tgz deleted file mode 100644 index 0ec7bf3f78..0000000000 Binary files a/npm-packages-offline-cache/commondir-1.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/conventional-changelog-writer-6.0.0.tgz b/npm-packages-offline-cache/conventional-changelog-writer-6.0.0.tgz deleted file mode 100644 index c09bd9b8e7..0000000000 Binary files a/npm-packages-offline-cache/conventional-changelog-writer-6.0.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/conventional-changelog-writer-6.0.1.tgz b/npm-packages-offline-cache/conventional-changelog-writer-6.0.1.tgz new file mode 100644 index 0000000000..f91b45ed94 Binary files /dev/null and b/npm-packages-offline-cache/conventional-changelog-writer-6.0.1.tgz differ diff --git a/npm-packages-offline-cache/copy-text-to-clipboard-3.1.0.tgz b/npm-packages-offline-cache/copy-text-to-clipboard-3.1.0.tgz deleted file mode 100644 index 64796d3599..0000000000 Binary files a/npm-packages-offline-cache/copy-text-to-clipboard-3.1.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/copy-text-to-clipboard-3.2.0.tgz b/npm-packages-offline-cache/copy-text-to-clipboard-3.2.0.tgz new file mode 100644 index 0000000000..4060fa39ef Binary files /dev/null and b/npm-packages-offline-cache/copy-text-to-clipboard-3.2.0.tgz differ diff --git a/npm-packages-offline-cache/core-js-compat-3.30.2.tgz b/npm-packages-offline-cache/core-js-compat-3.30.2.tgz deleted file mode 100644 index 4cbbcc8be8..0000000000 Binary files a/npm-packages-offline-cache/core-js-compat-3.30.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/core-js-compat-3.31.1.tgz b/npm-packages-offline-cache/core-js-compat-3.31.1.tgz new file mode 100644 index 0000000000..d0a6b4a6a4 Binary files /dev/null and b/npm-packages-offline-cache/core-js-compat-3.31.1.tgz differ diff --git a/npm-packages-offline-cache/css-declaration-sorter-6.4.0.tgz b/npm-packages-offline-cache/css-declaration-sorter-6.4.0.tgz deleted file mode 100644 index c8c9e0ba67..0000000000 Binary files a/npm-packages-offline-cache/css-declaration-sorter-6.4.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/css-declaration-sorter-6.4.1.tgz b/npm-packages-offline-cache/css-declaration-sorter-6.4.1.tgz new file mode 100644 index 0000000000..3bd6dd521a Binary files /dev/null and b/npm-packages-offline-cache/css-declaration-sorter-6.4.1.tgz differ diff --git a/npm-packages-offline-cache/css-functions-list-3.1.0.tgz b/npm-packages-offline-cache/css-functions-list-3.1.0.tgz deleted file mode 100644 index 2c8fc83d6c..0000000000 Binary files a/npm-packages-offline-cache/css-functions-list-3.1.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/css-functions-list-3.2.0.tgz b/npm-packages-offline-cache/css-functions-list-3.2.0.tgz new file mode 100644 index 0000000000..30a6150e93 Binary files /dev/null and b/npm-packages-offline-cache/css-functions-list-3.2.0.tgz differ diff --git a/npm-packages-offline-cache/decamelize-5.0.1.tgz b/npm-packages-offline-cache/decamelize-5.0.1.tgz new file mode 100644 index 0000000000..0191b9f0c5 Binary files /dev/null and b/npm-packages-offline-cache/decamelize-5.0.1.tgz differ diff --git a/npm-packages-offline-cache/deep-equal-2.2.1.tgz b/npm-packages-offline-cache/deep-equal-2.2.1.tgz deleted file mode 100644 index 20a48b0b55..0000000000 Binary files a/npm-packages-offline-cache/deep-equal-2.2.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/dequal-2.0.3.tgz b/npm-packages-offline-cache/dequal-2.0.3.tgz new file mode 100644 index 0000000000..d1d52b60a2 Binary files /dev/null and b/npm-packages-offline-cache/dequal-2.0.3.tgz differ diff --git a/npm-packages-offline-cache/dompurify-2.4.5.tgz b/npm-packages-offline-cache/dompurify-2.4.5.tgz deleted file mode 100644 index 5304f7966c..0000000000 Binary files a/npm-packages-offline-cache/dompurify-2.4.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/dompurify-2.4.7.tgz b/npm-packages-offline-cache/dompurify-2.4.7.tgz new file mode 100644 index 0000000000..0aaac06789 Binary files /dev/null and b/npm-packages-offline-cache/dompurify-2.4.7.tgz differ diff --git a/npm-packages-offline-cache/electron-to-chromium-1.4.397.tgz b/npm-packages-offline-cache/electron-to-chromium-1.4.397.tgz deleted file mode 100644 index 8bdf93306a..0000000000 Binary files a/npm-packages-offline-cache/electron-to-chromium-1.4.397.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/electron-to-chromium-1.4.455.tgz b/npm-packages-offline-cache/electron-to-chromium-1.4.455.tgz new file mode 100644 index 0000000000..ec3a01ccd1 Binary files /dev/null and b/npm-packages-offline-cache/electron-to-chromium-1.4.455.tgz differ diff --git a/npm-packages-offline-cache/enhanced-resolve-5.14.1.tgz b/npm-packages-offline-cache/enhanced-resolve-5.15.0.tgz similarity index 63% rename from npm-packages-offline-cache/enhanced-resolve-5.14.1.tgz rename to npm-packages-offline-cache/enhanced-resolve-5.15.0.tgz index eee342efe4..6f58f93404 100644 Binary files a/npm-packages-offline-cache/enhanced-resolve-5.14.1.tgz and b/npm-packages-offline-cache/enhanced-resolve-5.15.0.tgz differ diff --git a/npm-packages-offline-cache/envinfo-7.10.0.tgz b/npm-packages-offline-cache/envinfo-7.10.0.tgz new file mode 100644 index 0000000000..9ecc028cf4 Binary files /dev/null and b/npm-packages-offline-cache/envinfo-7.10.0.tgz differ diff --git a/npm-packages-offline-cache/es-get-iterator-1.1.3.tgz b/npm-packages-offline-cache/es-get-iterator-1.1.3.tgz deleted file mode 100644 index b6d3f633cb..0000000000 Binary files a/npm-packages-offline-cache/es-get-iterator-1.1.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/es-module-lexer-1.2.1.tgz b/npm-packages-offline-cache/es-module-lexer-1.2.1.tgz deleted file mode 100644 index ddacfc314b..0000000000 Binary files a/npm-packages-offline-cache/es-module-lexer-1.2.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/es-module-lexer-1.3.0.tgz b/npm-packages-offline-cache/es-module-lexer-1.3.0.tgz new file mode 100644 index 0000000000..b0c09da738 Binary files /dev/null and b/npm-packages-offline-cache/es-module-lexer-1.3.0.tgz differ diff --git a/npm-packages-offline-cache/escodegen-2.0.0.tgz b/npm-packages-offline-cache/escodegen-2.0.0.tgz deleted file mode 100644 index 76c67632f7..0000000000 Binary files a/npm-packages-offline-cache/escodegen-2.0.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/escodegen-2.1.0.tgz b/npm-packages-offline-cache/escodegen-2.1.0.tgz new file mode 100644 index 0000000000..f31adfb1b2 Binary files /dev/null and b/npm-packages-offline-cache/escodegen-2.1.0.tgz differ diff --git a/npm-packages-offline-cache/eslint-8.42.0.tgz b/npm-packages-offline-cache/eslint-8.42.0.tgz deleted file mode 100644 index 796d63e5e2..0000000000 Binary files a/npm-packages-offline-cache/eslint-8.42.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/eslint-8.44.0.tgz b/npm-packages-offline-cache/eslint-8.44.0.tgz new file mode 100644 index 0000000000..b823b7cadb Binary files /dev/null and b/npm-packages-offline-cache/eslint-8.44.0.tgz differ diff --git a/npm-packages-offline-cache/eslint-plugin-jsdoc-46.2.6.tgz b/npm-packages-offline-cache/eslint-plugin-jsdoc-46.2.6.tgz deleted file mode 100644 index 2cbeccb2a7..0000000000 Binary files a/npm-packages-offline-cache/eslint-plugin-jsdoc-46.2.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/eslint-plugin-jsdoc-46.4.3.tgz b/npm-packages-offline-cache/eslint-plugin-jsdoc-46.4.3.tgz new file mode 100644 index 0000000000..bbd0f943be Binary files /dev/null and b/npm-packages-offline-cache/eslint-plugin-jsdoc-46.4.3.tgz differ diff --git a/npm-packages-offline-cache/espree-9.5.2.tgz b/npm-packages-offline-cache/espree-9.5.2.tgz deleted file mode 100644 index 6552922a1a..0000000000 Binary files a/npm-packages-offline-cache/espree-9.5.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/espree-9.6.0.tgz b/npm-packages-offline-cache/espree-9.6.0.tgz new file mode 100644 index 0000000000..b5be4dca5e Binary files /dev/null and b/npm-packages-offline-cache/espree-9.6.0.tgz differ diff --git a/npm-packages-offline-cache/expect-29.5.0.tgz b/npm-packages-offline-cache/expect-29.5.0.tgz deleted file mode 100644 index 99edefb558..0000000000 Binary files a/npm-packages-offline-cache/expect-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/expect-29.6.1.tgz b/npm-packages-offline-cache/expect-29.6.1.tgz new file mode 100644 index 0000000000..fa5ad7c1db Binary files /dev/null and b/npm-packages-offline-cache/expect-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/exponential-backoff-3.1.1.tgz b/npm-packages-offline-cache/exponential-backoff-3.1.1.tgz new file mode 100644 index 0000000000..2ed2b6c636 Binary files /dev/null and b/npm-packages-offline-cache/exponential-backoff-3.1.1.tgz differ diff --git a/npm-packages-offline-cache/fast-glob-3.2.12.tgz b/npm-packages-offline-cache/fast-glob-3.2.12.tgz deleted file mode 100644 index b47d885140..0000000000 Binary files a/npm-packages-offline-cache/fast-glob-3.2.12.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/fast-glob-3.3.0.tgz b/npm-packages-offline-cache/fast-glob-3.3.0.tgz new file mode 100644 index 0000000000..b6e89b57d9 Binary files /dev/null and b/npm-packages-offline-cache/fast-glob-3.3.0.tgz differ diff --git a/npm-packages-offline-cache/filter-obj-1.1.0.tgz b/npm-packages-offline-cache/filter-obj-1.1.0.tgz new file mode 100644 index 0000000000..88c4cc668f Binary files /dev/null and b/npm-packages-offline-cache/filter-obj-1.1.0.tgz differ diff --git a/npm-packages-offline-cache/find-cache-dir-3.3.2.tgz b/npm-packages-offline-cache/find-cache-dir-3.3.2.tgz deleted file mode 100644 index d7a6daf7f6..0000000000 Binary files a/npm-packages-offline-cache/find-cache-dir-3.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/find-cache-dir-4.0.0.tgz b/npm-packages-offline-cache/find-cache-dir-4.0.0.tgz new file mode 100644 index 0000000000..f4eddeed91 Binary files /dev/null and b/npm-packages-offline-cache/find-cache-dir-4.0.0.tgz differ diff --git a/npm-packages-offline-cache/find-up-6.3.0.tgz b/npm-packages-offline-cache/find-up-6.3.0.tgz new file mode 100644 index 0000000000..9e356eb65f Binary files /dev/null and b/npm-packages-offline-cache/find-up-6.3.0.tgz differ diff --git a/npm-packages-offline-cache/git-semver-tags-5.0.0.tgz b/npm-packages-offline-cache/git-semver-tags-5.0.1.tgz similarity index 50% rename from npm-packages-offline-cache/git-semver-tags-5.0.0.tgz rename to npm-packages-offline-cache/git-semver-tags-5.0.1.tgz index 4b61b5833f..f36cf0f2a6 100644 Binary files a/npm-packages-offline-cache/git-semver-tags-5.0.0.tgz and b/npm-packages-offline-cache/git-semver-tags-5.0.1.tgz differ diff --git a/npm-packages-offline-cache/glob-10.2.4.tgz b/npm-packages-offline-cache/glob-10.2.4.tgz deleted file mode 100644 index e187e7a049..0000000000 Binary files a/npm-packages-offline-cache/glob-10.2.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/glob-10.3.3.tgz b/npm-packages-offline-cache/glob-10.3.3.tgz new file mode 100644 index 0000000000..928f4c0cf4 Binary files /dev/null and b/npm-packages-offline-cache/glob-10.3.3.tgz differ diff --git a/npm-packages-offline-cache/html-entities-2.3.6.tgz b/npm-packages-offline-cache/html-entities-2.3.6.tgz deleted file mode 100644 index af75bb00db..0000000000 Binary files a/npm-packages-offline-cache/html-entities-2.3.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/html-entities-2.4.0.tgz b/npm-packages-offline-cache/html-entities-2.4.0.tgz new file mode 100644 index 0000000000..42ff38f813 Binary files /dev/null and b/npm-packages-offline-cache/html-entities-2.4.0.tgz differ diff --git a/npm-packages-offline-cache/indent-string-5.0.0.tgz b/npm-packages-offline-cache/indent-string-5.0.0.tgz new file mode 100644 index 0000000000..6171daefdb Binary files /dev/null and b/npm-packages-offline-cache/indent-string-5.0.0.tgz differ diff --git a/npm-packages-offline-cache/is-arguments-1.1.1.tgz b/npm-packages-offline-cache/is-arguments-1.1.1.tgz deleted file mode 100644 index 692daed410..0000000000 Binary files a/npm-packages-offline-cache/is-arguments-1.1.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/is-ci-3.0.1.tgz b/npm-packages-offline-cache/is-ci-3.0.1.tgz new file mode 100644 index 0000000000..def28d225a Binary files /dev/null and b/npm-packages-offline-cache/is-ci-3.0.1.tgz differ diff --git a/npm-packages-offline-cache/is-map-2.0.2.tgz b/npm-packages-offline-cache/is-map-2.0.2.tgz deleted file mode 100644 index ea5647fc54..0000000000 Binary files a/npm-packages-offline-cache/is-map-2.0.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/is-set-2.0.2.tgz b/npm-packages-offline-cache/is-set-2.0.2.tgz deleted file mode 100644 index 9ee740ed0d..0000000000 Binary files a/npm-packages-offline-cache/is-set-2.0.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/is-weakmap-2.0.1.tgz b/npm-packages-offline-cache/is-weakmap-2.0.1.tgz deleted file mode 100644 index a62ccb3cf8..0000000000 Binary files a/npm-packages-offline-cache/is-weakmap-2.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/is-weakset-2.0.2.tgz b/npm-packages-offline-cache/is-weakset-2.0.2.tgz deleted file mode 100644 index ce635a04a7..0000000000 Binary files a/npm-packages-offline-cache/is-weakset-2.0.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/isarray-2.0.5.tgz b/npm-packages-offline-cache/isarray-2.0.5.tgz deleted file mode 100644 index 1aa47b5504..0000000000 Binary files a/npm-packages-offline-cache/isarray-2.0.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jackspeak-2.2.0.tgz b/npm-packages-offline-cache/jackspeak-2.2.0.tgz deleted file mode 100644 index 9f43bb1ca9..0000000000 Binary files a/npm-packages-offline-cache/jackspeak-2.2.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jackspeak-2.2.1.tgz b/npm-packages-offline-cache/jackspeak-2.2.1.tgz new file mode 100644 index 0000000000..1f4cfbd316 Binary files /dev/null and b/npm-packages-offline-cache/jackspeak-2.2.1.tgz differ diff --git a/npm-packages-offline-cache/jake-10.8.6.tgz b/npm-packages-offline-cache/jake-10.8.6.tgz deleted file mode 100644 index 6980a0c9c4..0000000000 Binary files a/npm-packages-offline-cache/jake-10.8.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jake-10.8.7.tgz b/npm-packages-offline-cache/jake-10.8.7.tgz new file mode 100644 index 0000000000..33e3bf27a5 Binary files /dev/null and b/npm-packages-offline-cache/jake-10.8.7.tgz differ diff --git a/npm-packages-offline-cache/jest-29.5.0.tgz b/npm-packages-offline-cache/jest-29.5.0.tgz deleted file mode 100644 index f430b6a43e..0000000000 Binary files a/npm-packages-offline-cache/jest-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-29.6.1.tgz b/npm-packages-offline-cache/jest-29.6.1.tgz new file mode 100644 index 0000000000..09a0dfc8be Binary files /dev/null and b/npm-packages-offline-cache/jest-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-circus-29.5.0.tgz b/npm-packages-offline-cache/jest-circus-29.5.0.tgz deleted file mode 100644 index d45907899b..0000000000 Binary files a/npm-packages-offline-cache/jest-circus-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-circus-29.6.1.tgz b/npm-packages-offline-cache/jest-circus-29.6.1.tgz new file mode 100644 index 0000000000..b485c6753e Binary files /dev/null and b/npm-packages-offline-cache/jest-circus-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-cli-29.5.0.tgz b/npm-packages-offline-cache/jest-cli-29.5.0.tgz deleted file mode 100644 index 7c83873c3c..0000000000 Binary files a/npm-packages-offline-cache/jest-cli-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-cli-29.6.1.tgz b/npm-packages-offline-cache/jest-cli-29.6.1.tgz new file mode 100644 index 0000000000..0d4c148b89 Binary files /dev/null and b/npm-packages-offline-cache/jest-cli-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-config-29.5.0.tgz b/npm-packages-offline-cache/jest-config-29.5.0.tgz deleted file mode 100644 index 6e27d0fa34..0000000000 Binary files a/npm-packages-offline-cache/jest-config-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-config-29.6.1.tgz b/npm-packages-offline-cache/jest-config-29.6.1.tgz new file mode 100644 index 0000000000..2f7961ff18 Binary files /dev/null and b/npm-packages-offline-cache/jest-config-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-diff-29.5.0.tgz b/npm-packages-offline-cache/jest-diff-29.5.0.tgz deleted file mode 100644 index 6f41dd7918..0000000000 Binary files a/npm-packages-offline-cache/jest-diff-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-diff-29.6.1.tgz b/npm-packages-offline-cache/jest-diff-29.6.1.tgz new file mode 100644 index 0000000000..36581f6676 Binary files /dev/null and b/npm-packages-offline-cache/jest-diff-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-each-29.5.0.tgz b/npm-packages-offline-cache/jest-each-29.5.0.tgz deleted file mode 100644 index 45b0ebcc9d..0000000000 Binary files a/npm-packages-offline-cache/jest-each-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-each-29.6.1.tgz b/npm-packages-offline-cache/jest-each-29.6.1.tgz new file mode 100644 index 0000000000..3ea17e3745 Binary files /dev/null and b/npm-packages-offline-cache/jest-each-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-environment-jsdom-29.5.0.tgz b/npm-packages-offline-cache/jest-environment-jsdom-29.5.0.tgz deleted file mode 100644 index 54f658317d..0000000000 Binary files a/npm-packages-offline-cache/jest-environment-jsdom-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-environment-jsdom-29.6.1.tgz b/npm-packages-offline-cache/jest-environment-jsdom-29.6.1.tgz new file mode 100644 index 0000000000..bf80272ad2 Binary files /dev/null and b/npm-packages-offline-cache/jest-environment-jsdom-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-environment-node-29.5.0.tgz b/npm-packages-offline-cache/jest-environment-node-29.5.0.tgz deleted file mode 100644 index 99ac0154da..0000000000 Binary files a/npm-packages-offline-cache/jest-environment-node-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-environment-node-29.6.1.tgz b/npm-packages-offline-cache/jest-environment-node-29.6.1.tgz new file mode 100644 index 0000000000..7dbb3709ee Binary files /dev/null and b/npm-packages-offline-cache/jest-environment-node-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-haste-map-29.5.0.tgz b/npm-packages-offline-cache/jest-haste-map-29.5.0.tgz deleted file mode 100644 index def315fb38..0000000000 Binary files a/npm-packages-offline-cache/jest-haste-map-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-haste-map-29.6.1.tgz b/npm-packages-offline-cache/jest-haste-map-29.6.1.tgz new file mode 100644 index 0000000000..3076a70035 Binary files /dev/null and b/npm-packages-offline-cache/jest-haste-map-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-leak-detector-29.5.0.tgz b/npm-packages-offline-cache/jest-leak-detector-29.5.0.tgz deleted file mode 100644 index 7f39b2782d..0000000000 Binary files a/npm-packages-offline-cache/jest-leak-detector-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-leak-detector-29.6.1.tgz b/npm-packages-offline-cache/jest-leak-detector-29.6.1.tgz new file mode 100644 index 0000000000..51c1a1a63d Binary files /dev/null and b/npm-packages-offline-cache/jest-leak-detector-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-matcher-utils-29.5.0.tgz b/npm-packages-offline-cache/jest-matcher-utils-29.5.0.tgz deleted file mode 100644 index 3dee832efa..0000000000 Binary files a/npm-packages-offline-cache/jest-matcher-utils-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-matcher-utils-29.6.1.tgz b/npm-packages-offline-cache/jest-matcher-utils-29.6.1.tgz new file mode 100644 index 0000000000..958fc0afc0 Binary files /dev/null and b/npm-packages-offline-cache/jest-matcher-utils-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-message-util-29.5.0.tgz b/npm-packages-offline-cache/jest-message-util-29.5.0.tgz deleted file mode 100644 index d0742354e9..0000000000 Binary files a/npm-packages-offline-cache/jest-message-util-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-message-util-29.6.1.tgz b/npm-packages-offline-cache/jest-message-util-29.6.1.tgz new file mode 100644 index 0000000000..d80d8bf518 Binary files /dev/null and b/npm-packages-offline-cache/jest-message-util-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-mock-29.5.0.tgz b/npm-packages-offline-cache/jest-mock-29.5.0.tgz deleted file mode 100644 index 6383256309..0000000000 Binary files a/npm-packages-offline-cache/jest-mock-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-mock-29.6.1.tgz b/npm-packages-offline-cache/jest-mock-29.6.1.tgz new file mode 100644 index 0000000000..e01c0f2ef9 Binary files /dev/null and b/npm-packages-offline-cache/jest-mock-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-resolve-29.5.0.tgz b/npm-packages-offline-cache/jest-resolve-29.5.0.tgz deleted file mode 100644 index c801607b28..0000000000 Binary files a/npm-packages-offline-cache/jest-resolve-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-resolve-29.6.1.tgz b/npm-packages-offline-cache/jest-resolve-29.6.1.tgz new file mode 100644 index 0000000000..b95aef9d48 Binary files /dev/null and b/npm-packages-offline-cache/jest-resolve-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-resolve-dependencies-29.5.0.tgz b/npm-packages-offline-cache/jest-resolve-dependencies-29.5.0.tgz deleted file mode 100644 index dc0e303924..0000000000 Binary files a/npm-packages-offline-cache/jest-resolve-dependencies-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-resolve-dependencies-29.6.1.tgz b/npm-packages-offline-cache/jest-resolve-dependencies-29.6.1.tgz new file mode 100644 index 0000000000..91febed1dd Binary files /dev/null and b/npm-packages-offline-cache/jest-resolve-dependencies-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-runner-29.5.0.tgz b/npm-packages-offline-cache/jest-runner-29.5.0.tgz deleted file mode 100644 index 775c94ab64..0000000000 Binary files a/npm-packages-offline-cache/jest-runner-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-runner-29.6.1.tgz b/npm-packages-offline-cache/jest-runner-29.6.1.tgz new file mode 100644 index 0000000000..df36da840b Binary files /dev/null and b/npm-packages-offline-cache/jest-runner-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-runtime-29.5.0.tgz b/npm-packages-offline-cache/jest-runtime-29.5.0.tgz deleted file mode 100644 index 0873e023f2..0000000000 Binary files a/npm-packages-offline-cache/jest-runtime-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-runtime-29.6.1.tgz b/npm-packages-offline-cache/jest-runtime-29.6.1.tgz new file mode 100644 index 0000000000..2f7918d281 Binary files /dev/null and b/npm-packages-offline-cache/jest-runtime-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-snapshot-29.5.0.tgz b/npm-packages-offline-cache/jest-snapshot-29.5.0.tgz deleted file mode 100644 index 33e557c9e4..0000000000 Binary files a/npm-packages-offline-cache/jest-snapshot-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-snapshot-29.6.1.tgz b/npm-packages-offline-cache/jest-snapshot-29.6.1.tgz new file mode 100644 index 0000000000..182ebcab82 Binary files /dev/null and b/npm-packages-offline-cache/jest-snapshot-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-util-29.5.0.tgz b/npm-packages-offline-cache/jest-util-29.5.0.tgz deleted file mode 100644 index ef060d78a1..0000000000 Binary files a/npm-packages-offline-cache/jest-util-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-util-29.6.1.tgz b/npm-packages-offline-cache/jest-util-29.6.1.tgz new file mode 100644 index 0000000000..ca473428bb Binary files /dev/null and b/npm-packages-offline-cache/jest-util-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-validate-29.5.0.tgz b/npm-packages-offline-cache/jest-validate-29.6.1.tgz similarity index 67% rename from npm-packages-offline-cache/jest-validate-29.5.0.tgz rename to npm-packages-offline-cache/jest-validate-29.6.1.tgz index 151b069f6b..00522aed8d 100644 Binary files a/npm-packages-offline-cache/jest-validate-29.5.0.tgz and b/npm-packages-offline-cache/jest-validate-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-watcher-29.5.0.tgz b/npm-packages-offline-cache/jest-watcher-29.6.1.tgz similarity index 82% rename from npm-packages-offline-cache/jest-watcher-29.5.0.tgz rename to npm-packages-offline-cache/jest-watcher-29.6.1.tgz index 01c94795e4..891d2affb4 100644 Binary files a/npm-packages-offline-cache/jest-watcher-29.5.0.tgz and b/npm-packages-offline-cache/jest-watcher-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jest-worker-29.5.0.tgz b/npm-packages-offline-cache/jest-worker-29.5.0.tgz deleted file mode 100644 index ebd38d3223..0000000000 Binary files a/npm-packages-offline-cache/jest-worker-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jest-worker-29.6.1.tgz b/npm-packages-offline-cache/jest-worker-29.6.1.tgz new file mode 100644 index 0000000000..64b2c4dc30 Binary files /dev/null and b/npm-packages-offline-cache/jest-worker-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/jiti-1.18.2.tgz b/npm-packages-offline-cache/jiti-1.18.2.tgz deleted file mode 100644 index 6b607d5f56..0000000000 Binary files a/npm-packages-offline-cache/jiti-1.18.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jiti-1.19.1.tgz b/npm-packages-offline-cache/jiti-1.19.1.tgz new file mode 100644 index 0000000000..a67a6fa90a Binary files /dev/null and b/npm-packages-offline-cache/jiti-1.19.1.tgz differ diff --git a/npm-packages-offline-cache/jsx-ast-utils-3.3.3.tgz b/npm-packages-offline-cache/jsx-ast-utils-3.3.3.tgz deleted file mode 100644 index 6527ee9e52..0000000000 Binary files a/npm-packages-offline-cache/jsx-ast-utils-3.3.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/jsx-ast-utils-3.3.4.tgz b/npm-packages-offline-cache/jsx-ast-utils-3.3.4.tgz new file mode 100644 index 0000000000..83cafd38b3 Binary files /dev/null and b/npm-packages-offline-cache/jsx-ast-utils-3.3.4.tgz differ diff --git a/npm-packages-offline-cache/lerna-7.0.1.tgz b/npm-packages-offline-cache/lerna-7.0.1.tgz deleted file mode 100644 index 07346b2179..0000000000 Binary files a/npm-packages-offline-cache/lerna-7.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/lerna-7.1.1.tgz b/npm-packages-offline-cache/lerna-7.1.1.tgz new file mode 100644 index 0000000000..291969719e Binary files /dev/null and b/npm-packages-offline-cache/lerna-7.1.1.tgz differ diff --git a/npm-packages-offline-cache/levn-0.3.0.tgz b/npm-packages-offline-cache/levn-0.3.0.tgz deleted file mode 100644 index 84a9d0945b..0000000000 Binary files a/npm-packages-offline-cache/levn-0.3.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/lighthouse-logger-1.4.1.tgz b/npm-packages-offline-cache/lighthouse-logger-1.4.1.tgz deleted file mode 100644 index 5f7b7833dc..0000000000 Binary files a/npm-packages-offline-cache/lighthouse-logger-1.4.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/lighthouse-logger-1.4.2.tgz b/npm-packages-offline-cache/lighthouse-logger-1.4.2.tgz new file mode 100644 index 0000000000..ad3a19e53f Binary files /dev/null and b/npm-packages-offline-cache/lighthouse-logger-1.4.2.tgz differ diff --git a/npm-packages-offline-cache/locate-path-7.2.0.tgz b/npm-packages-offline-cache/locate-path-7.2.0.tgz new file mode 100644 index 0000000000..80fe90cd7a Binary files /dev/null and b/npm-packages-offline-cache/locate-path-7.2.0.tgz differ diff --git a/npm-packages-offline-cache/lru-cache-10.0.0.tgz b/npm-packages-offline-cache/lru-cache-10.0.0.tgz new file mode 100644 index 0000000000..a2792b5a7a Binary files /dev/null and b/npm-packages-offline-cache/lru-cache-10.0.0.tgz differ diff --git a/npm-packages-offline-cache/lru-cache-9.1.1.tgz b/npm-packages-offline-cache/lru-cache-9.1.1.tgz deleted file mode 100644 index cc1a28bc48..0000000000 Binary files a/npm-packages-offline-cache/lru-cache-9.1.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/make-fetch-happen-10.2.1.tgz b/npm-packages-offline-cache/make-fetch-happen-10.2.1.tgz deleted file mode 100644 index e6ffa5d611..0000000000 Binary files a/npm-packages-offline-cache/make-fetch-happen-10.2.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/meow-10.1.5.tgz b/npm-packages-offline-cache/meow-10.1.5.tgz new file mode 100644 index 0000000000..1ef2b38bcd Binary files /dev/null and b/npm-packages-offline-cache/meow-10.1.5.tgz differ diff --git a/npm-packages-offline-cache/minimatch-9.0.0.tgz b/npm-packages-offline-cache/minimatch-9.0.0.tgz deleted file mode 100644 index 2a9c5c4566..0000000000 Binary files a/npm-packages-offline-cache/minimatch-9.0.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/minimatch-9.0.3.tgz b/npm-packages-offline-cache/minimatch-9.0.3.tgz new file mode 100644 index 0000000000..81dff92268 Binary files /dev/null and b/npm-packages-offline-cache/minimatch-9.0.3.tgz differ diff --git a/npm-packages-offline-cache/minipass-6.0.1.tgz b/npm-packages-offline-cache/minipass-6.0.1.tgz deleted file mode 100644 index 271fbd4868..0000000000 Binary files a/npm-packages-offline-cache/minipass-6.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/minipass-7.0.2.tgz b/npm-packages-offline-cache/minipass-7.0.2.tgz new file mode 100644 index 0000000000..9d1ab5cc32 Binary files /dev/null and b/npm-packages-offline-cache/minipass-7.0.2.tgz differ diff --git a/npm-packages-offline-cache/minipass-fetch-2.1.2.tgz b/npm-packages-offline-cache/minipass-fetch-2.1.2.tgz deleted file mode 100644 index 2a82edd868..0000000000 Binary files a/npm-packages-offline-cache/minipass-fetch-2.1.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/node-fetch-2.6.11.tgz b/npm-packages-offline-cache/node-fetch-2.6.11.tgz deleted file mode 100644 index 062a40ac47..0000000000 Binary files a/npm-packages-offline-cache/node-fetch-2.6.11.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/node-fetch-2.6.12.tgz b/npm-packages-offline-cache/node-fetch-2.6.12.tgz new file mode 100644 index 0000000000..9538fbb4b8 Binary files /dev/null and b/npm-packages-offline-cache/node-fetch-2.6.12.tgz differ diff --git a/npm-packages-offline-cache/node-gyp-9.3.1.tgz b/npm-packages-offline-cache/node-gyp-9.3.1.tgz deleted file mode 100644 index f0236408a7..0000000000 Binary files a/npm-packages-offline-cache/node-gyp-9.3.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/node-gyp-9.4.0.tgz b/npm-packages-offline-cache/node-gyp-9.4.0.tgz new file mode 100644 index 0000000000..bb6b5ac691 Binary files /dev/null and b/npm-packages-offline-cache/node-gyp-9.4.0.tgz differ diff --git a/npm-packages-offline-cache/node-releases-2.0.10.tgz b/npm-packages-offline-cache/node-releases-2.0.10.tgz deleted file mode 100644 index 077911115f..0000000000 Binary files a/npm-packages-offline-cache/node-releases-2.0.10.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/node-releases-2.0.13.tgz b/npm-packages-offline-cache/node-releases-2.0.13.tgz new file mode 100644 index 0000000000..3cc08ea699 Binary files /dev/null and b/npm-packages-offline-cache/node-releases-2.0.13.tgz differ diff --git a/npm-packages-offline-cache/nwsapi-2.2.4.tgz b/npm-packages-offline-cache/nwsapi-2.2.4.tgz deleted file mode 100644 index 518cd31553..0000000000 Binary files a/npm-packages-offline-cache/nwsapi-2.2.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/nwsapi-2.2.7.tgz b/npm-packages-offline-cache/nwsapi-2.2.7.tgz new file mode 100644 index 0000000000..cfdfcd92f7 Binary files /dev/null and b/npm-packages-offline-cache/nwsapi-2.2.7.tgz differ diff --git a/npm-packages-offline-cache/nx-16.3.2.tgz b/npm-packages-offline-cache/nx-16.3.2.tgz deleted file mode 100644 index 61f2eb104a..0000000000 Binary files a/npm-packages-offline-cache/nx-16.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/nx-16.5.1.tgz b/npm-packages-offline-cache/nx-16.5.1.tgz new file mode 100644 index 0000000000..2936658385 Binary files /dev/null and b/npm-packages-offline-cache/nx-16.5.1.tgz differ diff --git a/npm-packages-offline-cache/object-is-1.1.5.tgz b/npm-packages-offline-cache/object-is-1.1.5.tgz deleted file mode 100644 index 765564f56d..0000000000 Binary files a/npm-packages-offline-cache/object-is-1.1.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/optionator-0.8.3.tgz b/npm-packages-offline-cache/optionator-0.8.3.tgz deleted file mode 100644 index eaa3e36e64..0000000000 Binary files a/npm-packages-offline-cache/optionator-0.8.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/optionator-0.9.1.tgz b/npm-packages-offline-cache/optionator-0.9.1.tgz deleted file mode 100644 index 3f6e8f41b0..0000000000 Binary files a/npm-packages-offline-cache/optionator-0.9.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/optionator-0.9.3.tgz b/npm-packages-offline-cache/optionator-0.9.3.tgz new file mode 100644 index 0000000000..d5ae9224fe Binary files /dev/null and b/npm-packages-offline-cache/optionator-0.9.3.tgz differ diff --git a/npm-packages-offline-cache/p-limit-4.0.0.tgz b/npm-packages-offline-cache/p-limit-4.0.0.tgz new file mode 100644 index 0000000000..fb21a24f36 Binary files /dev/null and b/npm-packages-offline-cache/p-limit-4.0.0.tgz differ diff --git a/npm-packages-offline-cache/p-locate-6.0.0.tgz b/npm-packages-offline-cache/p-locate-6.0.0.tgz new file mode 100644 index 0000000000..f9c923d2ce Binary files /dev/null and b/npm-packages-offline-cache/p-locate-6.0.0.tgz differ diff --git a/npm-packages-offline-cache/path-exists-5.0.0.tgz b/npm-packages-offline-cache/path-exists-5.0.0.tgz new file mode 100644 index 0000000000..da9c9dd219 Binary files /dev/null and b/npm-packages-offline-cache/path-exists-5.0.0.tgz differ diff --git a/npm-packages-offline-cache/path-scurry-1.10.1.tgz b/npm-packages-offline-cache/path-scurry-1.10.1.tgz new file mode 100644 index 0000000000..1aecff82f7 Binary files /dev/null and b/npm-packages-offline-cache/path-scurry-1.10.1.tgz differ diff --git a/npm-packages-offline-cache/path-scurry-1.9.1.tgz b/npm-packages-offline-cache/path-scurry-1.9.1.tgz deleted file mode 100644 index a003de451b..0000000000 Binary files a/npm-packages-offline-cache/path-scurry-1.9.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/pirates-4.0.5.tgz b/npm-packages-offline-cache/pirates-4.0.5.tgz deleted file mode 100644 index eefeff5602..0000000000 Binary files a/npm-packages-offline-cache/pirates-4.0.5.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/pirates-4.0.6.tgz b/npm-packages-offline-cache/pirates-4.0.6.tgz new file mode 100644 index 0000000000..ecad1904f6 Binary files /dev/null and b/npm-packages-offline-cache/pirates-4.0.6.tgz differ diff --git a/npm-packages-offline-cache/pkg-dir-7.0.0.tgz b/npm-packages-offline-cache/pkg-dir-7.0.0.tgz new file mode 100644 index 0000000000..55b36f7415 Binary files /dev/null and b/npm-packages-offline-cache/pkg-dir-7.0.0.tgz differ diff --git a/npm-packages-offline-cache/postcss-8.4.23.tgz b/npm-packages-offline-cache/postcss-8.4.23.tgz deleted file mode 100644 index a58f6a2342..0000000000 Binary files a/npm-packages-offline-cache/postcss-8.4.23.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/postcss-8.4.24.tgz b/npm-packages-offline-cache/postcss-8.4.24.tgz deleted file mode 100644 index d2c463f82c..0000000000 Binary files a/npm-packages-offline-cache/postcss-8.4.24.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/postcss-8.4.25.tgz b/npm-packages-offline-cache/postcss-8.4.25.tgz new file mode 100644 index 0000000000..1bce660950 Binary files /dev/null and b/npm-packages-offline-cache/postcss-8.4.25.tgz differ diff --git a/npm-packages-offline-cache/prelude-ls-1.1.2.tgz b/npm-packages-offline-cache/prelude-ls-1.1.2.tgz deleted file mode 100644 index 76c3f0b386..0000000000 Binary files a/npm-packages-offline-cache/prelude-ls-1.1.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/prettier-2.8.8.tgz b/npm-packages-offline-cache/prettier-2.8.8.tgz deleted file mode 100644 index a826a8dc0d..0000000000 Binary files a/npm-packages-offline-cache/prettier-2.8.8.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/prettier-3.0.0.tgz b/npm-packages-offline-cache/prettier-3.0.0.tgz new file mode 100644 index 0000000000..8c8edc4ee9 Binary files /dev/null and b/npm-packages-offline-cache/prettier-3.0.0.tgz differ diff --git a/npm-packages-offline-cache/pretty-format-29.5.0.tgz b/npm-packages-offline-cache/pretty-format-29.5.0.tgz deleted file mode 100644 index 2a78817c25..0000000000 Binary files a/npm-packages-offline-cache/pretty-format-29.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/pretty-format-29.6.1.tgz b/npm-packages-offline-cache/pretty-format-29.6.1.tgz new file mode 100644 index 0000000000..85eae29440 Binary files /dev/null and b/npm-packages-offline-cache/pretty-format-29.6.1.tgz differ diff --git a/npm-packages-offline-cache/punycode-1.3.2.tgz b/npm-packages-offline-cache/punycode-1.3.2.tgz deleted file mode 100644 index 5bd1aefea3..0000000000 Binary files a/npm-packages-offline-cache/punycode-1.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/punycode-1.4.1.tgz b/npm-packages-offline-cache/punycode-1.4.1.tgz new file mode 100644 index 0000000000..f44fed78e2 Binary files /dev/null and b/npm-packages-offline-cache/punycode-1.4.1.tgz differ diff --git a/npm-packages-offline-cache/query-string-7.1.3.tgz b/npm-packages-offline-cache/query-string-7.1.3.tgz new file mode 100644 index 0000000000..a214a5e108 Binary files /dev/null and b/npm-packages-offline-cache/query-string-7.1.3.tgz differ diff --git a/npm-packages-offline-cache/querystring-0.2.0.tgz b/npm-packages-offline-cache/querystring-0.2.0.tgz deleted file mode 100644 index 01011f46e2..0000000000 Binary files a/npm-packages-offline-cache/querystring-0.2.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/react-textarea-autosize-8.4.1.tgz b/npm-packages-offline-cache/react-textarea-autosize-8.4.1.tgz deleted file mode 100644 index 9dab1b1454..0000000000 Binary files a/npm-packages-offline-cache/react-textarea-autosize-8.4.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/react-textarea-autosize-8.5.2.tgz b/npm-packages-offline-cache/react-textarea-autosize-8.5.2.tgz new file mode 100644 index 0000000000..462cd2dc31 Binary files /dev/null and b/npm-packages-offline-cache/react-textarea-autosize-8.5.2.tgz differ diff --git a/npm-packages-offline-cache/react-virtualized-auto-sizer-1.0.17.tgz b/npm-packages-offline-cache/react-virtualized-auto-sizer-1.0.17.tgz deleted file mode 100644 index 110c507812..0000000000 Binary files a/npm-packages-offline-cache/react-virtualized-auto-sizer-1.0.17.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/react-virtualized-auto-sizer-1.0.20.tgz b/npm-packages-offline-cache/react-virtualized-auto-sizer-1.0.20.tgz new file mode 100644 index 0000000000..fffe4e9d79 Binary files /dev/null and b/npm-packages-offline-cache/react-virtualized-auto-sizer-1.0.20.tgz differ diff --git a/npm-packages-offline-cache/read-package-json-6.0.3.tgz b/npm-packages-offline-cache/read-package-json-6.0.3.tgz deleted file mode 100644 index ade5696796..0000000000 Binary files a/npm-packages-offline-cache/read-package-json-6.0.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/read-pkg-6.0.0.tgz b/npm-packages-offline-cache/read-pkg-6.0.0.tgz new file mode 100644 index 0000000000..7f4eed5936 Binary files /dev/null and b/npm-packages-offline-cache/read-pkg-6.0.0.tgz differ diff --git a/npm-packages-offline-cache/read-pkg-up-8.0.0.tgz b/npm-packages-offline-cache/read-pkg-up-8.0.0.tgz new file mode 100644 index 0000000000..70e62de84a Binary files /dev/null and b/npm-packages-offline-cache/read-pkg-up-8.0.0.tgz differ diff --git a/npm-packages-offline-cache/redent-4.0.0.tgz b/npm-packages-offline-cache/redent-4.0.0.tgz new file mode 100644 index 0000000000..c49466d804 Binary files /dev/null and b/npm-packages-offline-cache/redent-4.0.0.tgz differ diff --git a/npm-packages-offline-cache/saucelabs-7.2.1.tgz b/npm-packages-offline-cache/saucelabs-7.2.2.tgz similarity index 63% rename from npm-packages-offline-cache/saucelabs-7.2.1.tgz rename to npm-packages-offline-cache/saucelabs-7.2.2.tgz index bb669e6e23..1bf5e045ce 100644 Binary files a/npm-packages-offline-cache/saucelabs-7.2.1.tgz and b/npm-packages-offline-cache/saucelabs-7.2.2.tgz differ diff --git a/npm-packages-offline-cache/schema-utils-3.1.2.tgz b/npm-packages-offline-cache/schema-utils-3.1.2.tgz deleted file mode 100644 index 9101db3142..0000000000 Binary files a/npm-packages-offline-cache/schema-utils-3.1.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/schema-utils-3.3.0.tgz b/npm-packages-offline-cache/schema-utils-3.3.0.tgz new file mode 100644 index 0000000000..faffd84754 Binary files /dev/null and b/npm-packages-offline-cache/schema-utils-3.3.0.tgz differ diff --git a/npm-packages-offline-cache/schema-utils-4.0.1.tgz b/npm-packages-offline-cache/schema-utils-4.0.1.tgz deleted file mode 100644 index f131b4f6c2..0000000000 Binary files a/npm-packages-offline-cache/schema-utils-4.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/schema-utils-4.2.0.tgz b/npm-packages-offline-cache/schema-utils-4.2.0.tgz new file mode 100644 index 0000000000..dbba7d41b2 Binary files /dev/null and b/npm-packages-offline-cache/schema-utils-4.2.0.tgz differ diff --git a/npm-packages-offline-cache/semver-5.7.1.tgz b/npm-packages-offline-cache/semver-5.7.1.tgz deleted file mode 100644 index e8cd193ad8..0000000000 Binary files a/npm-packages-offline-cache/semver-5.7.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/semver-5.7.2.tgz b/npm-packages-offline-cache/semver-5.7.2.tgz new file mode 100644 index 0000000000..3f8ea4e81f Binary files /dev/null and b/npm-packages-offline-cache/semver-5.7.2.tgz differ diff --git a/npm-packages-offline-cache/semver-6.3.0.tgz b/npm-packages-offline-cache/semver-6.3.0.tgz deleted file mode 100644 index d66c287772..0000000000 Binary files a/npm-packages-offline-cache/semver-6.3.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/semver-6.3.1.tgz b/npm-packages-offline-cache/semver-6.3.1.tgz new file mode 100644 index 0000000000..0f24e8af2b Binary files /dev/null and b/npm-packages-offline-cache/semver-6.3.1.tgz differ diff --git a/npm-packages-offline-cache/semver-7.3.4.tgz b/npm-packages-offline-cache/semver-7.3.4.tgz deleted file mode 100644 index dd0d688e5d..0000000000 Binary files a/npm-packages-offline-cache/semver-7.3.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/semver-7.5.1.tgz b/npm-packages-offline-cache/semver-7.5.1.tgz deleted file mode 100644 index 1f3f05ad36..0000000000 Binary files a/npm-packages-offline-cache/semver-7.5.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/semver-7.5.3.tgz b/npm-packages-offline-cache/semver-7.5.3.tgz new file mode 100644 index 0000000000..2c178951da Binary files /dev/null and b/npm-packages-offline-cache/semver-7.5.3.tgz differ diff --git a/npm-packages-offline-cache/semver-7.5.4.tgz b/npm-packages-offline-cache/semver-7.5.4.tgz new file mode 100644 index 0000000000..d26a6b5ffe Binary files /dev/null and b/npm-packages-offline-cache/semver-7.5.4.tgz differ diff --git a/npm-packages-offline-cache/sigstore-1.5.2.tgz b/npm-packages-offline-cache/sigstore-1.5.2.tgz deleted file mode 100644 index eb922d3ebc..0000000000 Binary files a/npm-packages-offline-cache/sigstore-1.5.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/sigstore-1.7.0.tgz b/npm-packages-offline-cache/sigstore-1.7.0.tgz new file mode 100644 index 0000000000..56a9c1542c Binary files /dev/null and b/npm-packages-offline-cache/sigstore-1.7.0.tgz differ diff --git a/npm-packages-offline-cache/simple-git-3.18.0.tgz b/npm-packages-offline-cache/simple-git-3.18.0.tgz deleted file mode 100644 index 4fbe524dd1..0000000000 Binary files a/npm-packages-offline-cache/simple-git-3.18.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/simple-git-3.19.1.tgz b/npm-packages-offline-cache/simple-git-3.19.1.tgz new file mode 100644 index 0000000000..6c3a25a7ee Binary files /dev/null and b/npm-packages-offline-cache/simple-git-3.19.1.tgz differ diff --git a/npm-packages-offline-cache/split-on-first-1.1.0.tgz b/npm-packages-offline-cache/split-on-first-1.1.0.tgz new file mode 100644 index 0000000000..ca8a2747c5 Binary files /dev/null and b/npm-packages-offline-cache/split-on-first-1.1.0.tgz differ diff --git a/npm-packages-offline-cache/stop-iteration-iterator-1.0.0.tgz b/npm-packages-offline-cache/stop-iteration-iterator-1.0.0.tgz deleted file mode 100644 index aa18920f49..0000000000 Binary files a/npm-packages-offline-cache/stop-iteration-iterator-1.0.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/strict-uri-encode-2.0.0.tgz b/npm-packages-offline-cache/strict-uri-encode-2.0.0.tgz new file mode 100644 index 0000000000..6d7231f27a Binary files /dev/null and b/npm-packages-offline-cache/strict-uri-encode-2.0.0.tgz differ diff --git a/npm-packages-offline-cache/strip-ansi-7.0.1.tgz b/npm-packages-offline-cache/strip-ansi-7.0.1.tgz deleted file mode 100644 index 906cb2823f..0000000000 Binary files a/npm-packages-offline-cache/strip-ansi-7.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/strip-ansi-7.1.0.tgz b/npm-packages-offline-cache/strip-ansi-7.1.0.tgz new file mode 100644 index 0000000000..0c417c82bd Binary files /dev/null and b/npm-packages-offline-cache/strip-ansi-7.1.0.tgz differ diff --git a/npm-packages-offline-cache/strip-indent-4.0.0.tgz b/npm-packages-offline-cache/strip-indent-4.0.0.tgz new file mode 100644 index 0000000000..854caa922a Binary files /dev/null and b/npm-packages-offline-cache/strip-indent-4.0.0.tgz differ diff --git a/npm-packages-offline-cache/stylelint-15.10.1.tgz b/npm-packages-offline-cache/stylelint-15.10.1.tgz new file mode 100644 index 0000000000..d09bbcf0a0 Binary files /dev/null and b/npm-packages-offline-cache/stylelint-15.10.1.tgz differ diff --git a/npm-packages-offline-cache/stylelint-15.7.0.tgz b/npm-packages-offline-cache/stylelint-15.7.0.tgz deleted file mode 100644 index ac016db1f1..0000000000 Binary files a/npm-packages-offline-cache/stylelint-15.7.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/stylelint-less-1.0.6.tgz b/npm-packages-offline-cache/stylelint-less-1.0.6.tgz deleted file mode 100644 index 8d6a7e0532..0000000000 Binary files a/npm-packages-offline-cache/stylelint-less-1.0.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/stylelint-less-1.0.7.tgz b/npm-packages-offline-cache/stylelint-less-1.0.7.tgz new file mode 100644 index 0000000000..631412f7ba Binary files /dev/null and b/npm-packages-offline-cache/stylelint-less-1.0.7.tgz differ diff --git a/npm-packages-offline-cache/terser-5.17.4.tgz b/npm-packages-offline-cache/terser-5.17.4.tgz deleted file mode 100644 index d1d4ad9fad..0000000000 Binary files a/npm-packages-offline-cache/terser-5.17.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/terser-5.19.0.tgz b/npm-packages-offline-cache/terser-5.19.0.tgz new file mode 100644 index 0000000000..ff13483f95 Binary files /dev/null and b/npm-packages-offline-cache/terser-5.19.0.tgz differ diff --git a/npm-packages-offline-cache/terser-webpack-plugin-5.3.8.tgz b/npm-packages-offline-cache/terser-webpack-plugin-5.3.8.tgz deleted file mode 100644 index cfa0acb400..0000000000 Binary files a/npm-packages-offline-cache/terser-webpack-plugin-5.3.8.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/tough-cookie-4.1.2.tgz b/npm-packages-offline-cache/tough-cookie-4.1.2.tgz deleted file mode 100644 index 7cfcb1ba1b..0000000000 Binary files a/npm-packages-offline-cache/tough-cookie-4.1.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/tough-cookie-4.1.3.tgz b/npm-packages-offline-cache/tough-cookie-4.1.3.tgz new file mode 100644 index 0000000000..699ef22094 Binary files /dev/null and b/npm-packages-offline-cache/tough-cookie-4.1.3.tgz differ diff --git a/npm-packages-offline-cache/trim-newlines-4.1.1.tgz b/npm-packages-offline-cache/trim-newlines-4.1.1.tgz new file mode 100644 index 0000000000..5285a91b58 Binary files /dev/null and b/npm-packages-offline-cache/trim-newlines-4.1.1.tgz differ diff --git a/npm-packages-offline-cache/triple-beam-1.3.0.tgz b/npm-packages-offline-cache/triple-beam-1.3.0.tgz deleted file mode 100644 index f93024e6e8..0000000000 Binary files a/npm-packages-offline-cache/triple-beam-1.3.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/triple-beam-1.4.1.tgz b/npm-packages-offline-cache/triple-beam-1.4.1.tgz new file mode 100644 index 0000000000..13e0fd5950 Binary files /dev/null and b/npm-packages-offline-cache/triple-beam-1.4.1.tgz differ diff --git a/npm-packages-offline-cache/tslib-2.5.0.tgz b/npm-packages-offline-cache/tslib-2.5.0.tgz deleted file mode 100644 index 1938fc61a5..0000000000 Binary files a/npm-packages-offline-cache/tslib-2.5.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/tslib-2.6.0.tgz b/npm-packages-offline-cache/tslib-2.6.0.tgz new file mode 100644 index 0000000000..cdb7c745ec Binary files /dev/null and b/npm-packages-offline-cache/tslib-2.6.0.tgz differ diff --git a/npm-packages-offline-cache/tuf-js-1.1.6.tgz b/npm-packages-offline-cache/tuf-js-1.1.6.tgz deleted file mode 100644 index bb1a45b381..0000000000 Binary files a/npm-packages-offline-cache/tuf-js-1.1.6.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/tuf-js-1.1.7.tgz b/npm-packages-offline-cache/tuf-js-1.1.7.tgz new file mode 100644 index 0000000000..3530224f59 Binary files /dev/null and b/npm-packages-offline-cache/tuf-js-1.1.7.tgz differ diff --git a/npm-packages-offline-cache/type-check-0.3.2.tgz b/npm-packages-offline-cache/type-check-0.3.2.tgz deleted file mode 100644 index 3bd8032264..0000000000 Binary files a/npm-packages-offline-cache/type-check-0.3.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/type-fest-1.4.0.tgz b/npm-packages-offline-cache/type-fest-1.4.0.tgz new file mode 100644 index 0000000000..95a777c8ce Binary files /dev/null and b/npm-packages-offline-cache/type-fest-1.4.0.tgz differ diff --git a/npm-packages-offline-cache/typescript-5.1.3.tgz b/npm-packages-offline-cache/typescript-5.1.6.tgz similarity index 50% rename from npm-packages-offline-cache/typescript-5.1.3.tgz rename to npm-packages-offline-cache/typescript-5.1.6.tgz index f97fff8005..49c6d4d91d 100644 Binary files a/npm-packages-offline-cache/typescript-5.1.3.tgz and b/npm-packages-offline-cache/typescript-5.1.6.tgz differ diff --git a/npm-packages-offline-cache/unique-filename-2.0.1.tgz b/npm-packages-offline-cache/unique-filename-2.0.1.tgz deleted file mode 100644 index af4a57ab0b..0000000000 Binary files a/npm-packages-offline-cache/unique-filename-2.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/unique-slug-3.0.0.tgz b/npm-packages-offline-cache/unique-slug-3.0.0.tgz deleted file mode 100644 index 0906ece34a..0000000000 Binary files a/npm-packages-offline-cache/unique-slug-3.0.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/unist-util-stringify-position-3.0.3.tgz b/npm-packages-offline-cache/unist-util-stringify-position-3.0.3.tgz deleted file mode 100644 index 5dcdb989a2..0000000000 Binary files a/npm-packages-offline-cache/unist-util-stringify-position-3.0.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/unist-util-stringify-position-4.0.0.tgz b/npm-packages-offline-cache/unist-util-stringify-position-4.0.0.tgz new file mode 100644 index 0000000000..9c08a48cd7 Binary files /dev/null and b/npm-packages-offline-cache/unist-util-stringify-position-4.0.0.tgz differ diff --git a/npm-packages-offline-cache/uploadcare-widget-3.21.0.tgz b/npm-packages-offline-cache/uploadcare-widget-3.21.0.tgz deleted file mode 100644 index e03d29dbde..0000000000 Binary files a/npm-packages-offline-cache/uploadcare-widget-3.21.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/uploadcare-widget-3.21.2.tgz b/npm-packages-offline-cache/uploadcare-widget-3.21.2.tgz new file mode 100644 index 0000000000..b3d1705a2d Binary files /dev/null and b/npm-packages-offline-cache/uploadcare-widget-3.21.2.tgz differ diff --git a/npm-packages-offline-cache/uploadcare-widget-tab-effects-1.6.0.tgz b/npm-packages-offline-cache/uploadcare-widget-tab-effects-1.6.0.tgz deleted file mode 100644 index 1fd720d8cc..0000000000 Binary files a/npm-packages-offline-cache/uploadcare-widget-tab-effects-1.6.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/uploadcare-widget-tab-effects-1.7.2.tgz b/npm-packages-offline-cache/uploadcare-widget-tab-effects-1.7.2.tgz new file mode 100644 index 0000000000..893869bff4 Binary files /dev/null and b/npm-packages-offline-cache/uploadcare-widget-tab-effects-1.7.2.tgz differ diff --git a/npm-packages-offline-cache/url-0.11.0.tgz b/npm-packages-offline-cache/url-0.11.0.tgz deleted file mode 100644 index 6e2b86e3f7..0000000000 Binary files a/npm-packages-offline-cache/url-0.11.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/url-0.11.1.tgz b/npm-packages-offline-cache/url-0.11.1.tgz new file mode 100644 index 0000000000..e4786179f2 Binary files /dev/null and b/npm-packages-offline-cache/url-0.11.1.tgz differ diff --git a/npm-packages-offline-cache/vfile-message-3.1.4.tgz b/npm-packages-offline-cache/vfile-message-3.1.4.tgz deleted file mode 100644 index 190fd62e70..0000000000 Binary files a/npm-packages-offline-cache/vfile-message-3.1.4.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/vfile-message-4.0.2.tgz b/npm-packages-offline-cache/vfile-message-4.0.2.tgz new file mode 100644 index 0000000000..749b4a8e9a Binary files /dev/null and b/npm-packages-offline-cache/vfile-message-4.0.2.tgz differ diff --git a/npm-packages-offline-cache/webpack-5.86.0.tgz b/npm-packages-offline-cache/webpack-5.86.0.tgz deleted file mode 100644 index 15633814b5..0000000000 Binary files a/npm-packages-offline-cache/webpack-5.86.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/webpack-5.88.1.tgz b/npm-packages-offline-cache/webpack-5.88.1.tgz new file mode 100644 index 0000000000..8de8fb85b5 Binary files /dev/null and b/npm-packages-offline-cache/webpack-5.88.1.tgz differ diff --git a/npm-packages-offline-cache/webpack-merge-5.8.0.tgz b/npm-packages-offline-cache/webpack-merge-5.8.0.tgz deleted file mode 100644 index f00f983420..0000000000 Binary files a/npm-packages-offline-cache/webpack-merge-5.8.0.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/webpack-merge-5.9.0.tgz b/npm-packages-offline-cache/webpack-merge-5.9.0.tgz new file mode 100644 index 0000000000..3117b4f68b Binary files /dev/null and b/npm-packages-offline-cache/webpack-merge-5.9.0.tgz differ diff --git a/npm-packages-offline-cache/which-collection-1.0.1.tgz b/npm-packages-offline-cache/which-collection-1.0.1.tgz deleted file mode 100644 index 2f1bd587e0..0000000000 Binary files a/npm-packages-offline-cache/which-collection-1.0.1.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/which-typed-array-1.1.10.tgz b/npm-packages-offline-cache/which-typed-array-1.1.10.tgz new file mode 100644 index 0000000000..a9dabfa1d3 Binary files /dev/null and b/npm-packages-offline-cache/which-typed-array-1.1.10.tgz differ diff --git a/npm-packages-offline-cache/which-typed-array-1.1.9.tgz b/npm-packages-offline-cache/which-typed-array-1.1.9.tgz deleted file mode 100644 index f1f0492263..0000000000 Binary files a/npm-packages-offline-cache/which-typed-array-1.1.9.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/winston-3.10.0.tgz b/npm-packages-offline-cache/winston-3.10.0.tgz new file mode 100644 index 0000000000..94d730ec7c Binary files /dev/null and b/npm-packages-offline-cache/winston-3.10.0.tgz differ diff --git a/npm-packages-offline-cache/winston-3.8.2.tgz b/npm-packages-offline-cache/winston-3.8.2.tgz deleted file mode 100644 index 1471b58413..0000000000 Binary files a/npm-packages-offline-cache/winston-3.8.2.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/word-wrap-1.2.3.tgz b/npm-packages-offline-cache/word-wrap-1.2.3.tgz deleted file mode 100644 index a9fe1672c2..0000000000 Binary files a/npm-packages-offline-cache/word-wrap-1.2.3.tgz and /dev/null differ diff --git a/npm-packages-offline-cache/yocto-queue-1.0.0.tgz b/npm-packages-offline-cache/yocto-queue-1.0.0.tgz new file mode 100644 index 0000000000..635275e617 Binary files /dev/null and b/npm-packages-offline-cache/yocto-queue-1.0.0.tgz differ diff --git a/package.json b/package.json index 0c41c07241..4ff4d42a49 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead, ie >= 11", "dependencies": { "anchor-js": "5.0.0", - "html-entities": "2.3.6", + "html-entities": "2.4.0", "lunr": "2.3.9", "marked": "4.2.12", "netlify-cms": "2.10.192", @@ -60,8 +60,8 @@ "slugify": "1.6.6" }, "devDependencies": { - "@babel/core": "7.22.5", - "@babel/preset-env": "7.22.5", + "@babel/core": "7.22.8", + "@babel/preset-env": "7.22.7", "@babel/preset-react": "7.22.5", "@lhci/cli": "0.12.0", "@wdio/cli": "7.26.0", @@ -70,33 +70,33 @@ "@wdio/sauce-service": "7.26.0", "@wdio/spec-reporter": "7.26.0", "autoprefixer": "10.4.14", - "babel-loader": "9.1.2", + "babel-loader": "9.1.3", "chromedriver": "113.0.0", "concurrently": "8.2.0", "css-loader": "6.8.1", "cssnano": "6.0.1", - "eslint": "8.42.0", + "eslint": "8.44.0", "eslint-config-prettier": "8.8.0", "eslint-plugin-import": "2.27.5", - "eslint-plugin-jsdoc": "46.2.6", + "eslint-plugin-jsdoc": "46.4.3", "eslint-plugin-jsx-a11y": "6.7.1", "eslint-plugin-react": "7.32.2", "filemanager-webpack-plugin": "8.0.0", "html-loader": "4.2.0", "http-server": "14.1.1", - "jest": "29.5.0", - "jest-cli": "29.5.0", - "jest-environment-jsdom": "29.5.0", - "lerna": "7.0.1", + "jest": "29.6.1", + "jest-cli": "29.6.1", + "jest-environment-jsdom": "29.6.1", + "lerna": "7.1.1", "lerna-changelog": "2.2.0", "less": "4.1.3", "less-loader": "11.1.3", "mini-css-extract-plugin": "2.7.6", "netlify-cms-proxy-server": "1.3.24", - "postcss": "8.4.24", + "postcss": "8.4.25", "postcss-less": "6.0.0", "postcss-loader": "7.3.3", - "prettier": "2.8.8", + "prettier": "3.0.0", "prop-types": "15.8.1", "stylelint": "15.10.1", "stylelint-config-prettier": "9.0.5", @@ -105,7 +105,7 @@ "svgo": "3.0.2", "terser-webpack-plugin": "5.3.9", "wdio-chromedriver-service": "8.1.1", - "webpack": "5.86.0", + "webpack": "5.88.1", "webpack-cli": "5.1.4" }, "changelog": { diff --git a/packages/cfpb-atomic-component/src/utilities/behavior/FlyoutMenu.js b/packages/cfpb-atomic-component/src/utilities/behavior/FlyoutMenu.js index 906de95b18..c8df4412ae 100644 --- a/packages/cfpb-atomic-component/src/utilities/behavior/FlyoutMenu.js +++ b/packages/cfpb-atomic-component/src/utilities/behavior/FlyoutMenu.js @@ -282,7 +282,7 @@ function FlyoutMenu(element, autoHideContent = true) { if (hasTransition) { _transition.addEventListener( BaseTransition.END_EVENT, - _collapseEndBinded + _collapseEndBinded, ); } @@ -306,7 +306,7 @@ function FlyoutMenu(element, autoHideContent = true) { if (_transition) { _transition.removeEventListener( BaseTransition.END_EVENT, - _expandEndBinded + _expandEndBinded, ); } this.dispatchEvent('expandend', { target: this, type: 'expandend' }); @@ -327,7 +327,7 @@ function FlyoutMenu(element, autoHideContent = true) { if (_transition) { _transition.removeEventListener( BaseTransition.END_EVENT, - _collapseEndBinded + _collapseEndBinded, ); } diff --git a/packages/cfpb-atomic-component/src/utilities/media-helpers.js b/packages/cfpb-atomic-component/src/utilities/media-helpers.js index 086778abc8..cceebff611 100755 --- a/packages/cfpb-atomic-component/src/utilities/media-helpers.js +++ b/packages/cfpb-atomic-component/src/utilities/media-helpers.js @@ -9,7 +9,7 @@ */ function isMobileUserAgent() { const regex = new RegExp( - /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i + /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i, ); if (regex.test(navigator.userAgent)) { return true; diff --git a/packages/cfpb-atomic-component/src/utilities/transition/BaseTransition.js b/packages/cfpb-atomic-component/src/utilities/transition/BaseTransition.js index 197d13260d..3c9be79c23 100644 --- a/packages/cfpb-atomic-component/src/utilities/transition/BaseTransition.js +++ b/packages/cfpb-atomic-component/src/utilities/transition/BaseTransition.js @@ -30,7 +30,7 @@ function BaseTransition(element, classes, child) { ) { throw new Error( 'Transitions require CSS_PROPERTY and BASE_CLASS ' + - 'to be passed into BaseTransition.' + 'to be passed into BaseTransition.', ); } @@ -209,7 +209,7 @@ function BaseTransition(element, classes, child) { setElement(_dom); if (!initialClass) { throw new Error( - 'Transition needs to be passed an initial CSS class on initialization!' + 'Transition needs to be passed an initial CSS class on initialization!', ); } _dom.classList.add(initialClass); diff --git a/packages/cfpb-core/src/breakpoint-state.js b/packages/cfpb-core/src/breakpoint-state.js index d9b786d168..488e0daceb 100644 --- a/packages/cfpb-core/src/breakpoint-state.js +++ b/packages/cfpb-core/src/breakpoint-state.js @@ -57,7 +57,7 @@ function getBreakpointState(width) { for (rangeKey in varsBreakpoints) { breakpointState[rangeKey] = _inBreakpointRange( varsBreakpoints[rangeKey], - width + width, ); } diff --git a/packages/cfpb-expandables/src/Expandable.js b/packages/cfpb-expandables/src/Expandable.js index 6dd13198ea..17d136741f 100644 --- a/packages/cfpb-expandables/src/Expandable.js +++ b/packages/cfpb-expandables/src/Expandable.js @@ -66,7 +66,7 @@ function Expandable(element) { _flyout.setTransition( _transition, _transition.maxHeightZero, - _transition.maxHeightDefault + _transition.maxHeightDefault, ); _flyout.init(isExpanded); diff --git a/packages/cfpb-expandables/src/ExpandableGroup.js b/packages/cfpb-expandables/src/ExpandableGroup.js index fe5e3663ca..a1233c7419 100644 --- a/packages/cfpb-expandables/src/ExpandableGroup.js +++ b/packages/cfpb-expandables/src/ExpandableGroup.js @@ -72,7 +72,7 @@ ExpandableGroup.init = (scope) => { const expandables = instantiateAll( `.${Expandable.BASE_CLASS}`, Expandable, - expandableGroupDom + expandableGroupDom, ); const expandableGroup = new ExpandableGroup(expandableGroupDom); expandableGroup.init(expandables); diff --git a/packages/cfpb-expandables/src/Summary.js b/packages/cfpb-expandables/src/Summary.js index 0e6ecbcc55..3218512841 100644 --- a/packages/cfpb-expandables/src/Summary.js +++ b/packages/cfpb-expandables/src/Summary.js @@ -64,12 +64,12 @@ function Summary(element) { _transition.init( _suspended ? MaxHeightTransition.CLASSES.MH_SUMMARY - : MaxHeightTransition.CLASSES.MH_DEFAULT + : MaxHeightTransition.CLASSES.MH_DEFAULT, ); _flyout.setTransition( _transition, _transition.maxHeightSummary, - _transition.maxHeightDefault + _transition.maxHeightDefault, ); _flyout.addEventListener('triggerclick', _triggerClickHandler); _flyout.init(); diff --git a/packages/cfpb-expandables/src/SummaryMinimal.js b/packages/cfpb-expandables/src/SummaryMinimal.js index 9a61c36ccb..862c92b4c9 100644 --- a/packages/cfpb-expandables/src/SummaryMinimal.js +++ b/packages/cfpb-expandables/src/SummaryMinimal.js @@ -58,7 +58,7 @@ function SummaryMinimal(element) { _flyout.setTransition( _transition, _transition.maxHeightSummary, - _transition.maxHeightDefault + _transition.maxHeightDefault, ); _flyout.init(); diff --git a/packages/cfpb-forms/src/molecules/form-fields.less b/packages/cfpb-forms/src/molecules/form-fields.less index 7baf724712..591c9296e9 100644 --- a/packages/cfpb-forms/src/molecules/form-fields.less +++ b/packages/cfpb-forms/src/molecules/form-fields.less @@ -161,14 +161,16 @@ &:focus:checked + .a-label::before, &.focus:checked + .a-label::before { border-color: @input-border__focused; - box-shadow: 0 0 0 1px @input-border__focused, + box-shadow: + 0 0 0 1px @input-border__focused, inset 0 0 0 2px @form-field-inset; } &:hover:checked + .a-label::before, &.hover:checked + .a-label::before { border-color: @input-border__hover; - box-shadow: 0 0 0 1px @input-border__hover, + box-shadow: + 0 0 0 1px @input-border__hover, inset 0 0 0 2px @form-field-inset; } } diff --git a/packages/cfpb-forms/src/organisms/Multiselect.js b/packages/cfpb-forms/src/organisms/Multiselect.js index bba84f39b7..38118d5f37 100644 --- a/packages/cfpb-forms/src/organisms/Multiselect.js +++ b/packages/cfpb-forms/src/organisms/Multiselect.js @@ -223,7 +223,7 @@ function Multiselect(element) { if (event.key === KEY_SPACE || event.key === KEY_RETURN) { const label = event.target.querySelector('label'); const checkbox = _optionsDom.querySelector( - '#' + label.getAttribute('for') + '#' + label.getAttribute('for'), ); checkbox.click(); } @@ -264,7 +264,7 @@ function Multiselect(element) { selectionsItemLabelDom.addEventListener('click', _selectionClickHandler); selectionsItemLabelDom.addEventListener( 'keydown', - _selectionKeyDownHandler + _selectionKeyDownHandler, ); } diff --git a/packages/cfpb-icons/src/icons-svg-inline.js b/packages/cfpb-icons/src/icons-svg-inline.js index dd6ee19141..4558f63dca 100644 --- a/packages/cfpb-icons/src/icons-svg-inline.js +++ b/packages/cfpb-icons/src/icons-svg-inline.js @@ -44,7 +44,7 @@ module.exports = { // eslint-disable-next-line no-sync let svg = less.fs.readFileSync( path.join(__dirname, `./icons/${svgName.value}.svg`), - 'utf8' + 'utf8', ); /* Replace the cf-icon-svg class (used only in the embedded markup) diff --git a/packages/cfpb-layout/src/molecules/card.less b/packages/cfpb-layout/src/molecules/card.less index 1bfc12f77d..d892da005b 100644 --- a/packages/cfpb-layout/src/molecules/card.less +++ b/packages/cfpb-layout/src/molecules/card.less @@ -158,7 +158,9 @@ } &:hover { - box-shadow: 0 8px 0 0 inset @green, 2px 0 0 0 inset @gray-20, + box-shadow: + 0 8px 0 0 inset @green, + 2px 0 0 0 inset @gray-20, -2px 0 0 0 inset @gray-20; } @@ -209,7 +211,9 @@ &:hover { > a { - box-shadow: 0 2px 0 0 inset @gray-20, 2px 0 0 0 inset @gray-20, + box-shadow: + 0 2px 0 0 inset @gray-20, + 2px 0 0 0 inset @gray-20, -2px 0 0 0 inset @gray-20; } @@ -267,7 +271,9 @@ &:hover { .m-card_inner-wrapper { - box-shadow: 0 2px 0 0 inset @gray-20, 2px 0 0 0 inset @gray-20, + box-shadow: + 0 2px 0 0 inset @gray-20, + 2px 0 0 0 inset @gray-20, -2px 0 0 0 inset @gray-20; } @@ -299,7 +305,9 @@ &:hover { > a { - box-shadow: 0 2px 0 0 inset @green-40, 2px 0 0 0 inset @green-40, + box-shadow: + 0 2px 0 0 inset @green-40, + 2px 0 0 0 inset @green-40, -2px 0 0 0 inset @green-40; } diff --git a/packages/cfpb-typography/src/licensed-fonts.less b/packages/cfpb-typography/src/licensed-fonts.less index 8381de3217..4cd6dafd45 100755 --- a/packages/cfpb-typography/src/licensed-fonts.less +++ b/packages/cfpb-typography/src/licensed-fonts.less @@ -5,7 +5,8 @@ @font-face { font-family: 'AvenirNextLTW01-Regular'; - src: url('@{cf-fonts-path}/2cd55546-ec00-4af9-aeca-4a3cd186da53.woff2') + src: + url('@{cf-fonts-path}/2cd55546-ec00-4af9-aeca-4a3cd186da53.woff2') format('woff2'), url('@{cf-fonts-path}/1e9892c0-6927-4412-9874-1b82801ba47a.woff') format('woff'); @@ -16,7 +17,8 @@ @font-face { font-family: 'AvenirNextLTW01-Medium'; - src: url('@{cf-fonts-path}/627fbb5a-3bae-4cd9-b617-2f923e29d55e.woff2') + src: + url('@{cf-fonts-path}/627fbb5a-3bae-4cd9-b617-2f923e29d55e.woff2') format('woff2'), url('@{cf-fonts-path}/f26faddb-86cc-4477-a253-1e1287684336.woff') format('woff'); @@ -27,7 +29,8 @@ @font-face { font-family: 'Avenir Next'; - src: url('@{cf-fonts-path}/2cd55546-ec00-4af9-aeca-4a3cd186da53.woff2') + src: + url('@{cf-fonts-path}/2cd55546-ec00-4af9-aeca-4a3cd186da53.woff2') format('woff2'), url('@{cf-fonts-path}/1e9892c0-6927-4412-9874-1b82801ba47a.woff') format('woff'); @@ -38,7 +41,8 @@ @font-face { font-family: 'Avenir Next'; - src: url('@{cf-fonts-path}/627fbb5a-3bae-4cd9-b617-2f923e29d55e.woff2') + src: + url('@{cf-fonts-path}/627fbb5a-3bae-4cd9-b617-2f923e29d55e.woff2') format('woff2'), url('@{cf-fonts-path}/f26faddb-86cc-4477-a253-1e1287684336.woff') format('woff'); diff --git a/test/browser/docs/interstitial.js b/test/browser/docs/interstitial.js index f625069cb5..248a3a50fc 100644 --- a/test/browser/docs/interstitial.js +++ b/test/browser/docs/interstitial.js @@ -16,7 +16,7 @@ describe('CMS interstitial page with editing instructions', () => { it("should show the interstitial if the user hasn't seen it before", async () => { await expect(browser).toHaveTitle( - 'Updating this website - CFPB Design System' + 'Updating this website - CFPB Design System', ); }); diff --git a/test/browser/docs/netlify-cms.js b/test/browser/docs/netlify-cms.js index 265be46e33..0fda5cbb82 100644 --- a/test/browser/docs/netlify-cms.js +++ b/test/browser/docs/netlify-cms.js @@ -7,7 +7,7 @@ describe('Netlify CMS', () => { describe('Editing the homepage', () => { beforeEach(async () => { await browser.url( - '/design-system/admin/#/collections/special-pages/entries/home' + '/design-system/admin/#/collections/special-pages/entries/home', ); await browser.pause(300); const loginButton = await $('button=Login'); @@ -49,7 +49,7 @@ describe('Netlify CMS', () => { beforeEach(async () => { await browser.reloadSession(); await browser.url( - '/design-system/admin/#/collections/pages/entries/buttons' + '/design-system/admin/#/collections/pages/entries/buttons', ); // Make the browser a little wider than normal to prevent the "show details" tabs // from triggering their mobile media queries @@ -92,7 +92,7 @@ describe('Netlify CMS', () => { // Move one level up the DOM tree const implementationButtonParent = await implementationButton.$('..'); await expect(implementationButtonParent).toHaveElementClassContaining( - 'selected' + 'selected', ); }); }); diff --git a/test/browser/packages/cfpb-forms.js b/test/browser/packages/cfpb-forms.js index 36ab0dfde2..e8f1037761 100644 --- a/test/browser/packages/cfpb-forms.js +++ b/test/browser/packages/cfpb-forms.js @@ -30,7 +30,7 @@ describe('Multiselect', () => { { timeout: 60000, timeoutMsg: 'Oops! Test timed out waiting for page to load!', - } + }, ); }); @@ -39,7 +39,7 @@ describe('Multiselect', () => { // Ensure multiselect has fully expanded await browser.pause(300); const firstMultiSelectOption = await $( - '.a-live_code .o-multiselect_options li:first-child' + '.a-live_code .o-multiselect_options li:first-child', ); await expect(firstMultiSelectOption).toBeDisplayedInViewport(); }); @@ -48,11 +48,11 @@ describe('Multiselect', () => { await multiselectInput.click(); const multiselectFieldset = await $('.a-live_code .o-multiselect_fieldset'); const lastMultiSelectOption = await $( - '.a-live_code .o-multiselect_options li:last-child' + '.a-live_code .o-multiselect_options li:last-child', ); await lastMultiSelectOption.scrollIntoView(); const multiselectFieldsetScrollTop = await multiselectFieldset.getProperty( - 'scrollTop' + 'scrollTop', ); // Ensure multiselect has fully expanded await browser.pause(300); @@ -68,13 +68,13 @@ describe('Multiselect', () => { await browser.pause(300); const firstMultiSelectOption = await $( - '.a-live_code .o-multiselect_options li[data-option=option1]' + '.a-live_code .o-multiselect_options li[data-option=option1]', ); const fourthMultiSelectOption = await $( - '.a-live_code .o-multiselect_options li[data-option=option4]' + '.a-live_code .o-multiselect_options li[data-option=option4]', ); const longMultiSelectOption = await $( - '.a-live_code .o-multiselect_options li[data-option=option8]' + '.a-live_code .o-multiselect_options li[data-option=option8]', ); // Find option #4 @@ -93,7 +93,7 @@ describe('Multiselect', () => { it('should let the user remove a choice', async () => { // Verify option1 is selected by default const multiSelectChoice = await $( - '.o-multiselect_choices label[for=test_select__multiple-option1]' + '.o-multiselect_choices label[for=test_select__multiple-option1]', ); await expect(multiSelectChoice).toBeDisplayed(); @@ -108,12 +108,12 @@ describe('Multiselect', () => { await browser.pause(300); const secondMultiSelectOption = await $( - '.a-live_code .o-multiselect_options li[data-option=option2] label' + '.a-live_code .o-multiselect_options li[data-option=option2] label', ); await secondMultiSelectOption.click(); const secondMultiSelectChoice = await $( - '.a-live_code .o-multiselect_choices label[for=test_select__multiple-option2]' + '.a-live_code .o-multiselect_choices label[for=test_select__multiple-option2]', ); await expect(secondMultiSelectChoice).toBeDisplayed(); }); diff --git a/test/unit-test/src/cfpb-atomic-component/src/mixins/EventObserver.spec.js b/test/unit-test/src/cfpb-atomic-component/src/mixins/EventObserver.spec.js index bdb512e8df..c651c4e93d 100644 --- a/test/unit-test/src/cfpb-atomic-component/src/mixins/EventObserver.spec.js +++ b/test/unit-test/src/cfpb-atomic-component/src/mixins/EventObserver.spec.js @@ -28,7 +28,7 @@ describe('EventObserver', () => { mockEvent.addEventListener('click', spy2); expect(mockEvent.getRegisteredEvents()['click'][1] === spy2).toBe(true); expect( - {}.hasOwnProperty.call(mockEvent.getRegisteredEvents(), 'click') + {}.hasOwnProperty.call(mockEvent.getRegisteredEvents(), 'click'), ).toBe(true); }); @@ -48,7 +48,7 @@ describe('EventObserver', () => { mockEvent.removeEventListener('click', spy1); mockEvent.removeEventListener('click', spy2); expect( - {}.hasOwnProperty.call(mockEvent.getRegisteredEvents(), 'click') + {}.hasOwnProperty.call(mockEvent.getRegisteredEvents(), 'click'), ).toBe(true); expect(mockEvent.getRegisteredEvents()['click'].length).toBe(0); mockEvent.dispatchEvent('click'); diff --git a/test/unit-test/src/cfpb-atomic-component/src/utilities/behavior/FlyoutMenu.spec.js b/test/unit-test/src/cfpb-atomic-component/src/utilities/behavior/FlyoutMenu.spec.js index c29668c471..1553f7db00 100644 --- a/test/unit-test/src/cfpb-atomic-component/src/utilities/behavior/FlyoutMenu.spec.js +++ b/test/unit-test/src/cfpb-atomic-component/src/utilities/behavior/FlyoutMenu.spec.js @@ -153,7 +153,7 @@ describe('FlyoutMenu', () => { 'when called by trigger click', () => { triggerDom.click(); - } + }, ); it( @@ -161,7 +161,7 @@ describe('FlyoutMenu', () => { 'when called by alt trigger click', () => { altTriggerDom.click(); - } + }, ); it( @@ -169,7 +169,7 @@ describe('FlyoutMenu', () => { 'when called directly', () => { flyoutMenu.expand(); - } + }, ); }); @@ -209,7 +209,7 @@ describe('FlyoutMenu', () => { 'when called by trigger click', () => { triggerDom.click(); - } + }, ); it( @@ -217,7 +217,7 @@ describe('FlyoutMenu', () => { 'when called by alt trigger click', () => { altTriggerDom.click(); - } + }, ); it( @@ -225,7 +225,7 @@ describe('FlyoutMenu', () => { 'when called directly', () => { flyoutMenu.collapse(); - } + }, ); }); @@ -233,12 +233,12 @@ describe('FlyoutMenu', () => { it('should set a transition', async () => { flyoutMenu.init(); const transition = new MoveTransition(contentDom).init( - MoveTransition.CLASSES.MOVE_LEFT + MoveTransition.CLASSES.MOVE_LEFT, ); flyoutMenu.setTransition( transition, transition.moveLeft, - transition.moveLeft2 + transition.moveLeft2, ); flyoutMenu.addEventListener('expandend', () => { const hasClass = contentDom.classList.contains('u-move-transition'); @@ -266,12 +266,12 @@ describe('FlyoutMenu', () => { it('should remove all transitions', () => { flyoutMenu.init(); const transition = new MoveTransition(contentDom).init( - MoveTransition.CLASSES.MOVE_TO_ORIGIN + MoveTransition.CLASSES.MOVE_TO_ORIGIN, ); flyoutMenu.setTransition( transition, transition.moveToOrigin, - transition.moveLeft + transition.moveLeft, ); let hasClass = contentDom.classList.contains('u-move-transition'); expect(hasClass).toBe(true); diff --git a/test/unit-test/src/cfpb-atomic-component/src/utilities/behavior/behavior.spec.js b/test/unit-test/src/cfpb-atomic-component/src/utilities/behavior/behavior.spec.js index 176cf766a5..d0867652f8 100644 --- a/test/unit-test/src/cfpb-atomic-component/src/utilities/behavior/behavior.spec.js +++ b/test/unit-test/src/cfpb-atomic-component/src/utilities/behavior/behavior.spec.js @@ -111,7 +111,7 @@ describe('behavior', () => { () => { const dom = checkBehaviorDom(containerDom, 'behavior_flyout-menu'); expect(dom).toStrictEqual(containerDom); - } + }, ); it( @@ -120,10 +120,10 @@ describe('behavior', () => { () => { const dom = checkBehaviorDom( behaviorElmDom, - 'behavior_flyout-menu_content' + 'behavior_flyout-menu_content', ); expect(dom).toStrictEqual(behaviorElmDom); - } + }, ); }); diff --git a/test/unit-test/src/cfpb-atomic-component/src/utilities/data-hook.spec.js b/test/unit-test/src/cfpb-atomic-component/src/utilities/data-hook.spec.js index b6b57f1b37..0dc92efd34 100644 --- a/test/unit-test/src/cfpb-atomic-component/src/utilities/data-hook.spec.js +++ b/test/unit-test/src/cfpb-atomic-component/src/utilities/data-hook.spec.js @@ -20,7 +20,7 @@ describe('Data hook', () => { it('should add a value to the data-* attribute of the element', () => { add(testComponent, 'test_state'); expect(testComponent.getAttribute('data-js-hook')).toBe( - 'test_behavior test_state' + 'test_behavior test_state', ); }); }); diff --git a/test/unit-test/src/cfpb-atomic-component/src/utilities/transition/BaseTransition.spec.js b/test/unit-test/src/cfpb-atomic-component/src/utilities/transition/BaseTransition.spec.js index 2b97cbfe74..2640061385 100644 --- a/test/unit-test/src/cfpb-atomic-component/src/utilities/transition/BaseTransition.spec.js +++ b/test/unit-test/src/cfpb-atomic-component/src/utilities/transition/BaseTransition.spec.js @@ -33,7 +33,7 @@ describe('BaseTransition', () => { CSS_PROPERTY: 'top', BASE_CLASS: 'u-test-transition', }, - mockChildTransition + mockChildTransition, ); }); @@ -50,7 +50,7 @@ describe('BaseTransition', () => { it('should have correct state after initializing', () => { expect(transition.init('test-class') instanceof BaseTransition).toBe( - true + true, ); }); }); diff --git a/test/unit-test/src/cfpb-expandables/src/Expandable.spec.js b/test/unit-test/src/cfpb-expandables/src/Expandable.spec.js index 68e0fb92b2..2ac170da10 100644 --- a/test/unit-test/src/cfpb-expandables/src/Expandable.spec.js +++ b/test/unit-test/src/cfpb-expandables/src/Expandable.spec.js @@ -115,10 +115,10 @@ describe('standard Expandable', () => { describe('initialized state', () => { it('should be initialized', () => { expect(expandableDom1.getAttribute('data-js-hook')).toBe( - 'state_atomic_init behavior_flyout-menu' + 'state_atomic_init behavior_flyout-menu', ); expect(expandableDom2.getAttribute('data-js-hook')).toBe( - 'state_atomic_init behavior_flyout-menu' + 'state_atomic_init behavior_flyout-menu', ); }); @@ -188,10 +188,10 @@ describe('accordion Expandables', () => { describe('initialized state', () => { it('should be initialized', () => { expect(expandableDom1.getAttribute('data-js-hook')).toBe( - 'state_atomic_init behavior_flyout-menu' + 'state_atomic_init behavior_flyout-menu', ); expect(expandableDom2.getAttribute('data-js-hook')).toBe( - 'state_atomic_init behavior_flyout-menu' + 'state_atomic_init behavior_flyout-menu', ); }); diff --git a/test/unit-test/src/cfpb-expandables/src/Summary-spec.js b/test/unit-test/src/cfpb-expandables/src/Summary-spec.js index 97f4261347..e62f680ef4 100644 --- a/test/unit-test/src/cfpb-expandables/src/Summary-spec.js +++ b/test/unit-test/src/cfpb-expandables/src/Summary-spec.js @@ -61,11 +61,11 @@ describe('Summary', () => { describe('initialized state', () => { it('should be initialized', () => { expect(summaryDom.getAttribute('data-js-hook')).toBe( - 'behavior_flyout-menu' + 'behavior_flyout-menu', ); summary.init(); expect(summaryDom.getAttribute('data-js-hook')).toBe( - 'behavior_flyout-menu state_atomic_init' + 'behavior_flyout-menu state_atomic_init', ); }); }); diff --git a/test/unit-test/src/cfpb-forms/src/organisms/MultiselectModel.spec.js b/test/unit-test/src/cfpb-forms/src/organisms/MultiselectModel.spec.js index 917a71f169..afdcf17ba1 100644 --- a/test/unit-test/src/cfpb-forms/src/organisms/MultiselectModel.spec.js +++ b/test/unit-test/src/cfpb-forms/src/organisms/MultiselectModel.spec.js @@ -210,7 +210,7 @@ describe('MultiselectModel', () => { multiselectModel.setIndex(0); expect(multiselectModel.getIndex()).toBe(0); expect( - multiselectModel.getFilterIndices()[multiselectModel.getIndex()] + multiselectModel.getFilterIndices()[multiselectModel.getIndex()], ).toBe(1); multiselectModel.setIndex(1); expect(multiselectModel.getIndex()).toBe(1); diff --git a/webpack.config.docs.js b/webpack.config.docs.js index ceb890e567..cec0118425 100644 --- a/webpack.config.docs.js +++ b/webpack.config.docs.js @@ -22,7 +22,7 @@ export default (env, argv) => { plugins.push( cssnano({ preset: 'default', - }) + }), ); } diff --git a/webpack.config.packages.js b/webpack.config.packages.js index 39cf78377b..51bddb8c8a 100644 --- a/webpack.config.packages.js +++ b/webpack.config.packages.js @@ -28,7 +28,7 @@ export default (env, argv) => { plugins.push( cssnano({ preset: 'default', - }) + }), ); } diff --git a/yarn.lock b/yarn.lock index 756ca4c617..a2c2189820 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,11 @@ # yarn lockfile v1 +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + "@ampproject/remapping@^2.2.0": version "2.2.1" resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" @@ -10,99 +15,49 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/code-frame@^7.22.5": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== dependencies: "@babel/highlight" "^7.22.5" -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.21.5": - version "7.21.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" - integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== +"@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.6.tgz#15606a20341de59ba02cd2fcc5086fcbe73bf544" + integrity sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg== -"@babel/compat-data@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255" - integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA== - -"@babel/core@7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89" - integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg== +"@babel/core@7.22.8", "@babel/core@^7.11.6", "@babel/core@^7.12.3": + version "7.22.8" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.8.tgz#386470abe884302db9c82e8e5e87be9e46c86785" + integrity sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw== dependencies: "@ampproject/remapping" "^2.2.0" "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" + "@babel/generator" "^7.22.7" + "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-module-transforms" "^7.22.5" - "@babel/helpers" "^7.22.5" - "@babel/parser" "^7.22.5" + "@babel/helpers" "^7.22.6" + "@babel/parser" "^7.22.7" "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" + "@babel/traverse" "^7.22.8" "@babel/types" "^7.22.5" + "@nicolo-ribaudo/semver-v6" "^6.3.3" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.2" - semver "^6.3.0" - -"@babel/core@^7.11.6", "@babel/core@^7.12.3": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" - integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-compilation-targets" "^7.21.5" - "@babel/helper-module-transforms" "^7.21.5" - "@babel/helpers" "^7.21.5" - "@babel/parser" "^7.21.8" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.2" - semver "^6.3.0" - -"@babel/generator@^7.21.5", "@babel/generator@^7.7.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" - integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== - dependencies: - "@babel/types" "^7.21.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" -"@babel/generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7" - integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA== +"@babel/generator@^7.22.7", "@babel/generator@^7.7.2": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.7.tgz#a6b8152d5a621893f2c9dacf9a4e286d520633d5" + integrity sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ== dependencies: "@babel/types" "^7.22.5" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" - integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== - dependencies: - "@babel/types" "^7.18.6" - "@babel/helper-annotate-as-pure@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" @@ -117,32 +72,21 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" - integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== +"@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz#e30d61abe9480aa5a83232eb31c111be922d2e52" + integrity sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA== dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - browserslist "^4.21.3" - lru-cache "^5.1.1" - semver "^6.3.0" - -"@babel/helper-compilation-targets@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02" - integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw== - dependencies: - "@babel/compat-data" "^7.22.5" + "@babel/compat-data" "^7.22.6" "@babel/helper-validator-option" "^7.22.5" - browserslist "^4.21.3" + "@nicolo-ribaudo/semver-v6" "^6.3.3" + browserslist "^4.21.9" lru-cache "^5.1.1" - semver "^6.3.0" "@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz#2192a1970ece4685fbff85b48da2c32fcb130b7c" - integrity sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q== + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz#58564873c889a6fea05a538e23f9f6d201f10950" + integrity sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-environment-visitor" "^7.22.5" @@ -151,57 +95,34 @@ "@babel/helper-optimise-call-expression" "^7.22.5" "@babel/helper-replace-supers" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - semver "^6.3.0" - -"@babel/helper-create-regexp-features-plugin@^7.18.6": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz#a7886f61c2e29e21fd4aaeaf1e473deba6b571dc" - integrity sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - regexpu-core "^5.3.1" - semver "^6.3.0" + "@babel/helper-split-export-declaration" "^7.22.6" + "@nicolo-ribaudo/semver-v6" "^6.3.3" -"@babel/helper-create-regexp-features-plugin@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz#bb2bf0debfe39b831986a4efbf4066586819c6e4" - integrity sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A== +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.6.tgz#87afd63012688ad792de430ceb3b6dc28e4e7a40" + integrity sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" + "@nicolo-ribaudo/semver-v6" "^6.3.3" regexpu-core "^5.3.1" - semver "^6.3.0" -"@babel/helper-define-polyfill-provider@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz#487053f103110f25b9755c5980e031e93ced24d8" - integrity sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg== +"@babel/helper-define-polyfill-provider@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.1.tgz#af1429c4a83ac316a6a8c2cc8ff45cb5d2998d3a" + integrity sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A== dependencies: - "@babel/helper-compilation-targets" "^7.17.7" - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" debug "^4.1.1" lodash.debounce "^4.0.8" resolve "^1.14.2" - semver "^6.1.2" - -"@babel/helper-environment-visitor@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" - integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== "@babel/helper-environment-visitor@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== -"@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== - dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" - "@babel/helper-function-name@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" @@ -210,13 +131,6 @@ "@babel/template" "^7.22.5" "@babel/types" "^7.22.5" -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - "@babel/helper-hoist-variables@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" @@ -231,34 +145,13 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" - integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== - dependencies: - "@babel/types" "^7.21.4" - -"@babel/helper-module-imports@^7.22.5": +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== dependencies: "@babel/types" "^7.22.5" -"@babel/helper-module-transforms@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" - integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== - dependencies: - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-module-imports" "^7.21.4" - "@babel/helper-simple-access" "^7.21.5" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - "@babel/helper-module-transforms@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" @@ -280,12 +173,7 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" - integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== - -"@babel/helper-plugin-utils@^7.22.5": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== @@ -312,13 +200,6 @@ "@babel/traverse" "^7.22.5" "@babel/types" "^7.22.5" -"@babel/helper-simple-access@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" - integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== - dependencies: - "@babel/types" "^7.21.5" - "@babel/helper-simple-access@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" @@ -333,45 +214,23 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-split-export-declaration@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08" - integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ== +"@babel/helper-split-export-declaration@^7.22.5", "@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== dependencies: "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" - integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== - "@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-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== - "@babel/helper-validator-identifier@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== -"@babel/helper-validator-option@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" - integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== - "@babel/helper-validator-option@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" @@ -387,33 +246,15 @@ "@babel/traverse" "^7.22.5" "@babel/types" "^7.22.5" -"@babel/helpers@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" - integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== - dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/helpers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820" - integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q== +"@babel/helpers@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd" + integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA== dependencies: "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" + "@babel/traverse" "^7.22.6" "@babel/types" "^7.22.5" -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - "@babel/highlight@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" @@ -423,15 +264,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" - integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== - -"@babel/parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea" - integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae" + integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q== "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": version "7.22.5" @@ -532,20 +368,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.22.5": +"@babel/plugin-syntax-jsx@^7.22.5", "@babel/plugin-syntax-jsx@^7.7.2": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-jsx@^7.7.2": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2" - integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" @@ -603,11 +432,11 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-typescript@^7.7.2": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz#2751948e9b7c6d771a8efa59340c15d4a2891ff8" - integrity sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA== + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" + integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" @@ -624,10 +453,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-generator-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz#7336356d23380eda9a56314974f053a020dab0c3" - integrity sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg== +"@babel/plugin-transform-async-generator-functions@^7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b" + integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg== dependencies: "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" @@ -674,19 +503,19 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-transform-classes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz#635d4e98da741fad814984639f4c0149eb0135e1" - integrity sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ== +"@babel/plugin-transform-classes@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363" + integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-function-name" "^7.22.5" "@babel/helper-optimise-call-expression" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" "@babel/plugin-transform-computed-properties@^7.22.5": @@ -704,7 +533,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.22.5": +"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": 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== @@ -712,14 +541,6 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" - integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@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" @@ -890,10 +711,10 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz#1003762b9c14295501beb41be72426736bedd1e0" - integrity sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ== +"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564" + integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" @@ -1046,13 +867,13 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/preset-env@7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.5.tgz#3da66078b181f3d62512c51cf7014392c511504e" - integrity sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A== +"@babel/preset-env@7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.7.tgz#a1ef34b64a80653c22ce4d9c25603cfa76fc168a" + integrity sha512-1whfDtW+CzhETuzYXfcgZAh8/GFMeEbz0V5dVgya8YeJyCU6Y/P2Gnx4Qb3MylK68Zu9UiwUvbPMPTpFAOJ+sQ== dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" + "@babel/compat-data" "^7.22.6" + "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-option" "^7.22.5" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" @@ -1077,13 +898,13 @@ "@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.5" + "@babel/plugin-transform-async-generator-functions" "^7.22.7" "@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.5" "@babel/plugin-transform-class-properties" "^7.22.5" "@babel/plugin-transform-class-static-block" "^7.22.5" - "@babel/plugin-transform-classes" "^7.22.5" + "@babel/plugin-transform-classes" "^7.22.6" "@babel/plugin-transform-computed-properties" "^7.22.5" "@babel/plugin-transform-destructuring" "^7.22.5" "@babel/plugin-transform-dotall-regex" "^7.22.5" @@ -1108,7 +929,7 @@ "@babel/plugin-transform-object-rest-spread" "^7.22.5" "@babel/plugin-transform-object-super" "^7.22.5" "@babel/plugin-transform-optional-catch-binding" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.6" "@babel/plugin-transform-parameters" "^7.22.5" "@babel/plugin-transform-private-methods" "^7.22.5" "@babel/plugin-transform-private-property-in-object" "^7.22.5" @@ -1126,11 +947,11 @@ "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" "@babel/preset-modules" "^0.1.5" "@babel/types" "^7.22.5" - babel-plugin-polyfill-corejs2 "^0.4.3" - babel-plugin-polyfill-corejs3 "^0.8.1" - babel-plugin-polyfill-regenerator "^0.5.0" - core-js-compat "^3.30.2" - semver "^6.3.0" + "@nicolo-ribaudo/semver-v6" "^6.3.3" + babel-plugin-polyfill-corejs2 "^0.4.4" + babel-plugin-polyfill-corejs3 "^0.8.2" + babel-plugin-polyfill-regenerator "^0.5.1" + core-js-compat "^3.31.0" "@babel/preset-modules@^0.1.5": version "0.1.5" @@ -1161,22 +982,13 @@ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== "@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.20.13", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" - integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438" + integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ== dependencies: regenerator-runtime "^0.13.11" -"@babel/template@^7.20.7", "@babel/template@^7.3.3": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" - integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/template@^7.22.5": +"@babel/template@^7.22.5", "@babel/template@^7.3.3": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== @@ -1185,48 +997,23 @@ "@babel/parser" "^7.22.5" "@babel/types" "^7.22.5" -"@babel/traverse@^7.21.5", "@babel/traverse@^7.7.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" - integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.21.5" - "@babel/types" "^7.21.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/traverse@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1" - integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== +"@babel/traverse@^7.22.5", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8": + version "7.22.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e" + integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw== dependencies: "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.5" + "@babel/generator" "^7.22.7" "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-function-name" "^7.22.5" "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/parser" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.22.7" "@babel/types" "^7.22.5" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" - integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== - dependencies: - "@babel/helper-string-parser" "^7.21.5" - "@babel/helper-validator-identifier" "^7.19.1" - to-fast-properties "^2.0.0" - -"@babel/types@^7.22.5": +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.3.3", "@babel/types@^7.4.4": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== @@ -1371,9 +1158,9 @@ integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== "@emotion/react@^11.1.1": - version "11.11.0" - resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.0.tgz#408196b7ef8729d8ad08fc061b03b046d1460e02" - integrity sha512-ZSK3ZJsNkwfjT3JpDAWJZlrGD81Z3ytNDsxw1LKq1o+xkmO5pnWfr6gmCC8gHEFf3nSSX/09YrG67jybNPxSUw== + version "11.11.1" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.1.tgz#b2c36afac95b184f73b08da8c214fdf861fa4157" + integrity sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA== dependencies: "@babel/runtime" "^7.18.3" "@emotion/babel-plugin" "^11.11.0" @@ -1495,14 +1282,14 @@ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== -"@eslint/eslintrc@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" - integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== +"@eslint/eslintrc@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d" + integrity sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.5.2" + espree "^9.6.0" globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" @@ -1510,12 +1297,12 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.42.0": - version "8.42.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.42.0.tgz#484a1d638de2911e6f5a30c12f49c7e4a3270fb6" - integrity sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw== +"@eslint/js@8.44.0": + version "8.44.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.44.0.tgz#961a5903c74139390478bdc808bcde3fc45ab7af" + integrity sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw== -"@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3": +"@gar/promisify@^1.0.1": version "1.1.3" resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== @@ -1622,28 +1409,28 @@ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== -"@jest/console@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" - integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== +"@jest/console@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.6.1.tgz#b48ba7b9c34b51483e6d590f46e5837f1ab5f639" + integrity sha512-Aj772AYgwTSr5w8qnyoJ0eDYvN6bMsH3ORH1ivMotrInHLKdUz6BDlaEXHdM6kODaBIkNIyQGzsMvRdOv7VG7Q== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-message-util "^29.6.1" + jest-util "^29.6.1" slash "^3.0.0" -"@jest/core@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" - integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== - dependencies: - "@jest/console" "^29.5.0" - "@jest/reporters" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" +"@jest/core@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.6.1.tgz#fac0d9ddf320490c93356ba201451825231e95f6" + integrity sha512-CcowHypRSm5oYQ1obz1wfvkjZZ2qoQlrKKvlfPwh5jUXVU12TWr2qMeH8chLMuTFzHh5a1g2yaqlqDICbr+ukQ== + dependencies: + "@jest/console" "^29.6.1" + "@jest/reporters" "^29.6.1" + "@jest/test-result" "^29.6.1" + "@jest/transform" "^29.6.1" + "@jest/types" "^29.6.1" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" @@ -1651,32 +1438,32 @@ exit "^0.1.2" graceful-fs "^4.2.9" jest-changed-files "^29.5.0" - jest-config "^29.5.0" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" + jest-config "^29.6.1" + jest-haste-map "^29.6.1" + jest-message-util "^29.6.1" jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-resolve-dependencies "^29.5.0" - jest-runner "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - jest-watcher "^29.5.0" + jest-resolve "^29.6.1" + jest-resolve-dependencies "^29.6.1" + jest-runner "^29.6.1" + jest-runtime "^29.6.1" + jest-snapshot "^29.6.1" + jest-util "^29.6.1" + jest-validate "^29.6.1" + jest-watcher "^29.6.1" micromatch "^4.0.4" - pretty-format "^29.5.0" + pretty-format "^29.6.1" slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" - integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== +"@jest/environment@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.6.1.tgz#ee358fff2f68168394b4a50f18c68278a21fe82f" + integrity sha512-RMMXx4ws+Gbvw3DfLSuo2cfQlK7IwGbpuEWXCqyYDcqYTI+9Ju3a5hDnXaxjNsa6uKh9PQF2v+qg+RLe63tz5A== dependencies: - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/fake-timers" "^29.6.1" + "@jest/types" "^29.6.1" "@types/node" "*" - jest-mock "^29.5.0" + jest-mock "^29.6.1" "@jest/expect-utils@^28.1.3": version "28.1.3" @@ -1685,54 +1472,54 @@ dependencies: jest-get-type "^28.0.2" -"@jest/expect-utils@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" - integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== +"@jest/expect-utils@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.6.1.tgz#ab83b27a15cdd203fe5f68230ea22767d5c3acc5" + integrity sha512-o319vIf5pEMx0LmzSxxkYYxo4wrRLKHq9dP1yJU7FoPTB0LfAKSz8SWD6D/6U3v/O52t9cF5t+MeJiRsfk7zMw== dependencies: jest-get-type "^29.4.3" -"@jest/expect@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" - integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== +"@jest/expect@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.6.1.tgz#fef18265188f6a97601f1ea0a2912d81a85b4657" + integrity sha512-N5xlPrAYaRNyFgVf2s9Uyyvr795jnB6rObuPx4QFvNJz8aAjpZUDfO4bh5G/xuplMID8PrnuF1+SfSyDxhsgYg== dependencies: - expect "^29.5.0" - jest-snapshot "^29.5.0" + expect "^29.6.1" + jest-snapshot "^29.6.1" -"@jest/fake-timers@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" - integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== +"@jest/fake-timers@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.6.1.tgz#c773efddbc61e1d2efcccac008139f621de57c69" + integrity sha512-RdgHgbXyosCDMVYmj7lLpUwXA4c69vcNzhrt69dJJdf8azUrpRh3ckFCaTPNjsEeRi27Cig0oKDGxy5j7hOgHg== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@sinonjs/fake-timers" "^10.0.2" "@types/node" "*" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-message-util "^29.6.1" + jest-mock "^29.6.1" + jest-util "^29.6.1" -"@jest/globals@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" - integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== +"@jest/globals@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.6.1.tgz#c8a8923e05efd757308082cc22893d82b8aa138f" + integrity sha512-2VjpaGy78JY9n9370H8zGRCFbYVWwjY6RdDMhoJHa1sYfwe6XM/azGN0SjY8kk7BOZApIejQ1BFPyH7FPG0w3A== dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/types" "^29.5.0" - jest-mock "^29.5.0" + "@jest/environment" "^29.6.1" + "@jest/expect" "^29.6.1" + "@jest/types" "^29.6.1" + jest-mock "^29.6.1" -"@jest/reporters@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" - integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== +"@jest/reporters@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.6.1.tgz#3325a89c9ead3cf97ad93df3a427549d16179863" + integrity sha512-9zuaI9QKr9JnoZtFQlw4GREQbxgmNYXU6QuWtmuODvk5nvPUeBYapVR/VYMyi2WSx3jXTLJTJji8rN6+Cm4+FA== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" + "@jest/console" "^29.6.1" + "@jest/test-result" "^29.6.1" + "@jest/transform" "^29.6.1" + "@jest/types" "^29.6.1" + "@jridgewell/trace-mapping" "^0.3.18" "@types/node" "*" chalk "^4.0.0" collect-v8-coverage "^1.0.0" @@ -1744,9 +1531,9 @@ istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.1.3" - jest-message-util "^29.5.0" - jest-util "^29.5.0" - jest-worker "^29.5.0" + jest-message-util "^29.6.1" + jest-util "^29.6.1" + jest-worker "^29.6.1" slash "^3.0.0" string-length "^4.0.1" strip-ansi "^6.0.0" @@ -1759,58 +1546,58 @@ dependencies: "@sinclair/typebox" "^0.24.1" -"@jest/schemas@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" - integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== +"@jest/schemas@^29.6.0": + version "29.6.0" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.0.tgz#0f4cb2c8e3dca80c135507ba5635a4fd755b0040" + integrity sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ== dependencies: - "@sinclair/typebox" "^0.25.16" + "@sinclair/typebox" "^0.27.8" -"@jest/source-map@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" - integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== +"@jest/source-map@^29.6.0": + version "29.6.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.0.tgz#bd34a05b5737cb1a99d43e1957020ac8e5b9ddb1" + integrity sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA== dependencies: - "@jridgewell/trace-mapping" "^0.3.15" + "@jridgewell/trace-mapping" "^0.3.18" callsites "^3.0.0" graceful-fs "^4.2.9" -"@jest/test-result@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" - integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== +"@jest/test-result@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.6.1.tgz#850e565a3f58ee8ca6ec424db00cb0f2d83c36ba" + integrity sha512-Ynr13ZRcpX6INak0TPUukU8GWRfm/vAytE3JbJNGAvINySWYdfE7dGZMbk36oVuK4CigpbhMn8eg1dixZ7ZJOw== dependencies: - "@jest/console" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/console" "^29.6.1" + "@jest/types" "^29.6.1" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" - integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== +"@jest/test-sequencer@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.6.1.tgz#e3e582ee074dd24ea9687d7d1aaf05ee3a9b068e" + integrity sha512-oBkC36PCDf/wb6dWeQIhaviU0l5u6VCsXa119yqdUosYAt7/FbQU2M2UoziO3igj/HBDEgp57ONQ3fm0v9uyyg== dependencies: - "@jest/test-result" "^29.5.0" + "@jest/test-result" "^29.6.1" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.6.1" slash "^3.0.0" -"@jest/transform@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" - integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== +"@jest/transform@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.6.1.tgz#acb5606019a197cb99beda3c05404b851f441c92" + integrity sha512-URnTneIU3ZjRSaf906cvf6Hpox3hIeJXRnz3VDSw5/X93gR8ycdfSIEy19FlVx8NFmpN7fe3Gb1xF+NjXaQLWg== dependencies: "@babel/core" "^7.11.6" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" + "@jest/types" "^29.6.1" + "@jridgewell/trace-mapping" "^0.3.18" babel-plugin-istanbul "^6.1.1" chalk "^4.0.0" convert-source-map "^2.0.0" fast-json-stable-stringify "^2.1.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.6.1" jest-regex-util "^29.4.3" - jest-util "^29.5.0" + jest-util "^29.6.1" micromatch "^4.0.4" pirates "^4.0.4" slash "^3.0.0" @@ -1828,12 +1615,12 @@ "@types/yargs" "^17.0.8" chalk "^4.0.0" -"@jest/types@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" - integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== +"@jest/types@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.1.tgz#ae79080278acff0a6af5eb49d063385aaa897bf2" + integrity sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw== dependencies: - "@jest/schemas" "^29.4.3" + "@jest/schemas" "^29.6.0" "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^3.0.0" "@types/node" "*" @@ -1859,10 +1646,10 @@ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/source-map@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda" - integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg== +"@jridgewell/source-map@^0.3.3": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" + integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== dependencies: "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" @@ -1877,7 +1664,7 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": version "0.3.18" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== @@ -1897,21 +1684,21 @@ resolved "https://registry.yarnpkg.com/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz#8ace5259254426ccef57f3175bc64ed7095ed919" integrity sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw== -"@lerna/child-process@7.0.1": - version "7.0.1" - resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-7.0.1.tgz#b4edc965c88b2247ccc1c9bfb3dce1f42baec928" - integrity sha512-lov3hXcX+g76fjQ5kg6+QdffL6kFw/aH3sG7NGk61mZfsWCDum9kcp9biqIRAmD6xJbrQsr1i0i9YeCMnHJ6pA== +"@lerna/child-process@7.1.1": + version "7.1.1" + resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-7.1.1.tgz#60eddd6dc4b6ba0fd51851c78b6dbdc4e1614220" + integrity sha512-mR8PaTkckYPLmEBG2VsVsJq2UuzEvjXevOB1rKLKUZ/dPCGcottVhbiEzTxickc+s7Y/1dTTLn/1BKj3B1a5BA== dependencies: chalk "^4.1.0" execa "^5.0.0" strong-log-transformer "^2.1.0" -"@lerna/create@7.0.1": - version "7.0.1" - resolved "https://registry.yarnpkg.com/@lerna/create/-/create-7.0.1.tgz#a204a087b3b7a2ea7bb00d374faf4f306cd48aca" - integrity sha512-vv9gtbrn/gBwQLdDlUeatO3uY58nxMktv9h9/5GEFcBesV9MAeQ0zRz8zkr2C0DX/m25lE+J5KTzJqZtMb03kw== +"@lerna/create@7.1.1": + version "7.1.1" + resolved "https://registry.yarnpkg.com/@lerna/create/-/create-7.1.1.tgz#2af94afb01971c1b594c06347b6998607aefe5c4" + integrity sha512-1PY2OgwGxp7b91JzLKEhONVl69mCt1IyYEc6pzKy3Sv+UOdeK2QFq1SX/85hNOR3iitiyZ75bNWUTcBly1ZlZg== dependencies: - "@lerna/child-process" "7.0.1" + "@lerna/child-process" "7.1.1" dedent "0.7.0" fs-extra "^11.1.1" init-package-json "5.0.0" @@ -1986,6 +1773,11 @@ resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e" integrity sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA== +"@nicolo-ribaudo/semver-v6@^6.3.3": + version "6.3.3" + resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/semver-v6/-/semver-v6-6.3.3.tgz#ea6d23ade78a325f7a52750aab1526b02b628c29" + integrity sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -2015,14 +1807,6 @@ "@gar/promisify" "^1.0.1" semver "^7.3.5" -"@npmcli/fs@^2.1.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" - integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== - dependencies: - "@gar/promisify" "^1.1.3" - semver "^7.3.5" - "@npmcli/fs@^3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e" @@ -2031,9 +1815,9 @@ semver "^7.3.5" "@npmcli/git@^4.0.0": - version "4.0.4" - resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-4.0.4.tgz#cdf74f21b1d440c0756fb28159d935129d9daa33" - integrity sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg== + version "4.1.0" + resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-4.1.0.tgz#ab0ad3fd82bc4d8c1351b6c62f0fa56e8fe6afa6" + integrity sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ== dependencies: "@npmcli/promise-spawn" "^6.0.0" lru-cache "^7.4.4" @@ -2060,14 +1844,6 @@ mkdirp "^1.0.4" rimraf "^3.0.2" -"@npmcli/move-file@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" - integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - "@npmcli/node-gyp@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a" @@ -2091,93 +1867,91 @@ read-package-json-fast "^3.0.0" which "^3.0.0" -"@nrwl/devkit@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-16.3.2.tgz#b45393dfd62dcb75554ff0c2dff6715a907e3877" - integrity sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw== +"@nrwl/devkit@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-16.5.1.tgz#43985cc1105e85afd8323586477c4a0d1b2eeee3" + integrity sha512-NB+DE/+AFJ7lKH/WBFyatJEhcZGj25F24ncDkwjZ6MzEiSOGOJS0LaV/R+VUsmS5EHTPXYOpn3zHWWAcJhyOmA== dependencies: - "@nx/devkit" "16.3.2" + "@nx/devkit" "16.5.1" -"@nrwl/tao@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-16.3.2.tgz#eefc1974342afbbe48e4e5351d6707ad2f9fb179" - integrity sha512-2Kg7dtv6JcQagCZPSq+okceI81NqmXGGgbKWqS7sOfdmp1otxS9uiUFNXw+Pdtnw38mdRviMtSOXScntu4sUKg== +"@nrwl/tao@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-16.5.1.tgz#e6e6b1ab73238497d4d9f014b30af18722e73503" + integrity sha512-x+gi/fKdM6uQNIti9exFlm3V5LBP3Y8vOEziO42HdOigyrXa0S0HD2WMpccmp6PclYKhwEDUjKJ39xh5sdh4Ig== dependencies: - nx "16.3.2" + nx "16.5.1" -"@nx/devkit@16.3.2", "@nx/devkit@>=16.1.3 < 17": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-16.3.2.tgz#95d58d104449c54bdc276fa1c9166fcad867cfa8" - integrity sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA== +"@nx/devkit@16.5.1", "@nx/devkit@>=16.1.3 < 17": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-16.5.1.tgz#1d6a27895a7c85edebe0ba31e0a394839ad5fdd2" + integrity sha512-T1acZrVVmJw/sJ4PIGidCBYBiBqlg/jT9e8nIGXLSDS20xcLvfo4zBQf8UZLrmHglnwwpDpOWuVJCp2rYA5aDg== dependencies: - "@nrwl/devkit" "16.3.2" + "@nrwl/devkit" "16.5.1" ejs "^3.1.7" ignore "^5.0.4" - semver "7.3.4" + semver "7.5.3" tmp "~0.2.1" tslib "^2.3.0" -"@nx/nx-darwin-arm64@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.3.2.tgz#83b6e78b27d2d7da8f7626560f52070c8735d28a" - integrity sha512-YfYVNfsJBzBcBnJUU4AcA6A4QMkgnVlETfp4KGL36Otq542mRY1ISGHdox63ocI5AKh5gay5AaGcR4wR9PU9Vg== - -"@nx/nx-darwin-x64@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-16.3.2.tgz#0ae2a64356542c5fb73ca8038ce10ec4512e7fcb" - integrity sha512-bJtpozz0zSRVRrcQ76GrlT3TWEGTymLYWrVG51bH5KZ46t6/a4EQBI3uL3vubMmOZ0jR4ywybOcPBBhxmBJ68w== - -"@nx/nx-freebsd-x64@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.3.2.tgz#202adf4d6070f47ed46450f006ecd50851147c74" - integrity sha512-ZvufI0bWqT67nLbBo6ejrIGxypdoedRQTP/tudWbs/4isvxLe1uVku1BfKCTQUsJG367SqNOU1H5kzI/MRr3ow== - -"@nx/nx-linux-arm-gnueabihf@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.3.2.tgz#62314a82566e3647866b9dd4167a2d0e1397f001" - integrity sha512-IQL4kxdiZLvifar7+SIum3glRuVsxtE0dL8RvteSDXrxDQnaTUrjILC+VGhalRmk7ngBbGKNrhWOeeL7390CzQ== - -"@nx/nx-linux-arm64-gnu@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.3.2.tgz#02826400aa55b8f44bac83332dd29647d0e95001" - integrity sha512-f6AWgPVu3mfUEoOBa0rY2/7QY0Or9eR0KtLFpcPh7RUpxPw2EXzIbjD/0RGipdpspSrgiMKbZpsUjo6mXBFsQA== - -"@nx/nx-linux-arm64-musl@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.3.2.tgz#a0a81520e0904aa026a7ab0a8a3bf3facec9f14c" - integrity sha512-AvrWcYz7021E3b5P9/0i26p60XMZfw86Epks51L6AhlflarlOH4AcEChc7APMtb1ELAIbDWx2S6oIDRbQ7rtVA== - -"@nx/nx-linux-x64-gnu@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.3.2.tgz#e79b5c142ec8d9bfb458ea5803bc4b62abbcf296" - integrity sha512-K2pWGAcbCNm6b7UZI9cc8z4Rb540QcuepBXD7akjPjWerzXriT6VCn4i9mVKsCg2mwSfknTJJVJ1PZwJSmTl/Q== - -"@nx/nx-linux-x64-musl@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.3.2.tgz#900aee8f171638b9fb44378e2ac0548cb4aa99a7" - integrity sha512-sY1QDuQlqyYiRPJZanrtV07tU0DOXiCrWb0pDsGiO0qHuUSmW5Vw17GWEY4z3rt0/5U8fJ+/9WQrneviOmsOKg== - -"@nx/nx-win32-arm64-msvc@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.3.2.tgz#88db772b3535648e147b1a0206b1a1fe875fa9a5" - integrity sha512-wBfohT2hjrLKn9WFHvG0MFVk7uYhgYNiptnTLdTouziHgFyZ08vyl7XYBq55BwHPMQ5iswVoEfjn/5ZBfCPscg== - -"@nx/nx-win32-x64-msvc@16.3.2": - version "16.3.2" - resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.3.2.tgz#2195faaf1fc465c7a89bfdd62323fdd2a5d91f15" - integrity sha512-QC0sWrfQm0/WdvvM//7UAgm+otbak6bznZ0zawTeqmLBh1hLjNeweyzSVKQEtZtlzDMKpzCVuuwkJq+VKBLvmw== +"@nx/nx-darwin-arm64@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.5.1.tgz#87111664de492e5ae270ef2adc74553e03d77341" + integrity sha512-q98TFI4B/9N9PmKUr1jcbtD4yAFs1HfYd9jUXXTQOlfO9SbDjnrYJgZ4Fp9rMNfrBhgIQ4x1qx0AukZccKmH9Q== + +"@nx/nx-darwin-x64@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-16.5.1.tgz#05c34ce8f8f23eeae0529d3c1022ee3e95a608a1" + integrity sha512-j9HmL1l8k7EVJ3eOM5y8COF93gqrydpxCDoz23ZEtsY+JHY77VAiRQsmqBgEx9GGA2dXi9VEdS67B0+1vKariw== + +"@nx/nx-freebsd-x64@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.5.1.tgz#b4303ac5066f5c8ced7768097d6c85e8055c7d3a" + integrity sha512-CXSPT01aVS869tvCCF2tZ7LnCa8l41wJ3mTVtWBkjmRde68E5Up093hklRMyXb3kfiDYlfIKWGwrV4r0eH6x1A== + +"@nx/nx-linux-arm-gnueabihf@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.5.1.tgz#4dde9e8c79da9c5a213b6938dff74f65dd79c157" + integrity sha512-BhrumqJSZCWFfLFUKl4CAUwR0Y0G2H5EfFVGKivVecEQbb+INAek1aa6c89evg2/OvetQYsJ+51QknskwqvLsA== + +"@nx/nx-linux-arm64-gnu@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.5.1.tgz#43dcdbd9b39fa91923ab949d161aa25c650f56d9" + integrity sha512-x7MsSG0W+X43WVv7JhiSq2eKvH2suNKdlUHEG09Yt0vm3z0bhtym1UCMUg3IUAK7jy9hhLeDaFVFkC6zo+H/XQ== + +"@nx/nx-linux-arm64-musl@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.5.1.tgz#fc33960cecb0064c3dd3330f393e3a38be8a71b7" + integrity sha512-J+/v/mFjOm74I0PNtH5Ka+fDd+/dWbKhpcZ2R1/6b9agzZk+Ff/SrwJcSYFXXWKbPX+uQ4RcJoytT06Zs3s0ow== + +"@nx/nx-linux-x64-gnu@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.5.1.tgz#2b2ffbb80e29455b6900ec20d4249055590dc58f" + integrity sha512-igooWJ5YxQ94Zft7IqgL+Lw0qHaY15Btw4gfK756g/YTYLZEt4tTvR1y6RnK/wdpE3sa68bFTLVBNCGTyiTiDQ== + +"@nx/nx-linux-x64-musl@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.5.1.tgz#955b2eae615ee6cf1954e24d42c205b1de8772bf" + integrity sha512-zF/exnPqFYbrLAduGhTmZ7zNEyADid2bzNQiIjJkh8Y6NpDwrQIwVIyvIxqynsjMrIs51kBH+8TUjKjj2Jgf5A== + +"@nx/nx-win32-arm64-msvc@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.5.1.tgz#1dc4a7e3662eb757214c46d8db432f61e43a3dd9" + integrity sha512-qtqiLS9Y9TYyAbbpq58kRoOroko4ZXg5oWVqIWFHoxc5bGPweQSJCROEqd1AOl2ZDC6BxfuVHfhDDop1kK05WA== + +"@nx/nx-win32-x64-msvc@16.5.1": + version "16.5.1" + resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.5.1.tgz#d2f4a1b2bf675bceb6fb16174b836438293f9dca" + integrity sha512-kUJBLakK7iyA9WfsGGQBVennA4jwf5XIgm0lu35oMOphtZIluvzItMt0EYBmylEROpmpEIhHq0P6J9FA+WH0Rg== "@octokit/auth-token@^3.0.0": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.3.tgz#ce7e48a3166731f26068d7a7a7996b5da58cbe0c" - integrity sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA== - dependencies: - "@octokit/types" "^9.0.0" + version "3.0.4" + resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.4.tgz#70e941ba742bdd2b49bdb7393e821dea8520a3db" + integrity sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ== "@octokit/core@^4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.1.tgz#fee6341ad0ce60c29cc455e056cd5b500410a588" - integrity sha512-tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw== + version "4.2.4" + resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.4.tgz#d8769ec2b43ff37cc3ea89ec4681a20ba58ef907" + integrity sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ== dependencies: "@octokit/auth-token" "^3.0.0" "@octokit/graphql" "^5.0.0" @@ -2188,28 +1962,23 @@ universal-user-agent "^6.0.0" "@octokit/endpoint@^7.0.0": - version "7.0.5" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.5.tgz#2bb2a911c12c50f10014183f5d596ce30ac67dd1" - integrity sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA== + version "7.0.6" + resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.6.tgz#791f65d3937555141fb6c08f91d618a7d645f1e2" + integrity sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg== dependencies: "@octokit/types" "^9.0.0" is-plain-object "^5.0.0" universal-user-agent "^6.0.0" "@octokit/graphql@^5.0.0": - version "5.0.5" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.5.tgz#a4cb3ea73f83b861893a6370ee82abb36e81afd2" - integrity sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ== + version "5.0.6" + resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.6.tgz#9eac411ac4353ccc5d3fca7d76736e6888c5d248" + integrity sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw== dependencies: "@octokit/request" "^6.0.0" "@octokit/types" "^9.0.0" universal-user-agent "^6.0.0" -"@octokit/openapi-types@^17.1.2": - version "17.2.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-17.2.0.tgz#f1800b5f9652b8e1b85cc6dfb1e0dc888810bdb5" - integrity sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ== - "@octokit/openapi-types@^18.0.0": version "18.0.0" resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz#f43d765b3c7533fd6fb88f3f25df079c24fccf69" @@ -2234,11 +2003,11 @@ integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA== "@octokit/plugin-rest-endpoint-methods@^7.1.2": - version "7.2.1" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.1.tgz#0e086930c8b4470b0eabaa7d68b67fd1b245bb3a" - integrity sha512-UmlNrrcF+AXxcxhZslTt1a/8aDxUKH0trrt/mJCxEPrWbW1ZEc+6xxcd5/n0iw3b+Xo8UBJQUKDr71+vNCBpRQ== + version "7.2.3" + resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz#37a84b171a6cb6658816c82c4082ac3512021797" + integrity sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA== dependencies: - "@octokit/types" "^9.3.1" + "@octokit/types" "^10.0.0" "@octokit/request-error@^3.0.0": version "3.0.3" @@ -2250,9 +2019,9 @@ once "^1.4.0" "@octokit/request@^6.0.0": - version "6.2.4" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.4.tgz#b00a7185865c72bdd432e63168b1e900953ded0c" - integrity sha512-at92SYQstwh7HH6+Kf3bFMnHrle7aIrC0r5rTP+Bb30118B6j1vI2/M4walh6qcQgfuLIKs8NUO5CytHTnUI3A== + version "6.2.8" + resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.8.tgz#aaf480b32ab2b210e9dadd8271d187c93171d8eb" + integrity sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw== dependencies: "@octokit/endpoint" "^7.0.0" "@octokit/request-error" "^3.0.0" @@ -2276,17 +2045,17 @@ resolved "https://registry.yarnpkg.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz#59b024d6f3c0ed82f00d08ead5b3750469125af7" integrity sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA== -"@octokit/types@^9.0.0": - version "9.2.2" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.2.2.tgz#d111d33928f288f48083bfe49d8a9a5945e67db1" - integrity sha512-9BjDxjgQIvCjNWZsbqyH5QC2Yni16oaE6xL+8SUBMzcYPF4TGQBXGA97Cl3KceK9mwiNMb1mOYCz6FbCCLEL+g== +"@octokit/types@^10.0.0": + version "10.0.0" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-10.0.0.tgz#7ee19c464ea4ada306c43f1a45d444000f419a4a" + integrity sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg== dependencies: - "@octokit/openapi-types" "^17.1.2" + "@octokit/openapi-types" "^18.0.0" -"@octokit/types@^9.2.3", "@octokit/types@^9.3.1": - version "9.3.1" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.1.tgz#9eb20390f8cfcc975635d813f9a2094efd4aa2dd" - integrity sha512-zfJzyXLHC42sWcn2kS+oZ/DRvFZBYCCbfInZtwp1Uopl1qh6pRg4NSP/wFX1xCOpXvEkctiG1sxlSlkZmzvxdw== +"@octokit/types@^9.0.0", "@octokit/types@^9.2.3": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5" + integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA== dependencies: "@octokit/openapi-types" "^18.0.0" @@ -2299,9 +2068,9 @@ node-gyp-build "^4.3.0" "@petamoriken/float16@^3.4.7": - version "3.8.0" - resolved "https://registry.yarnpkg.com/@petamoriken/float16/-/float16-3.8.0.tgz#3a48b7938e1a62188a61ec02d5b12630f671401f" - integrity sha512-AhVAm6SQ+zgxIiOzwVdUcDmKlu/qU39FiYD2UD6kQQaVenrn0dGZewIghWAENGQsvC+1avLCuT+T2/3Gsp/W3w== + version "3.8.1" + resolved "https://registry.yarnpkg.com/@petamoriken/float16/-/float16-3.8.1.tgz#ebb6994fb7b0698fc73e11a183a2b5e3ae722fb4" + integrity sha512-oj3dU9kuMy8AqrreIboVh3KCJGSQO5T+dJ8JQFl369961jTWvPLP1GIlLy0FVoWehXLoI9BXygu/yzuNiIHBlg== "@pkgjs/parseargs@^0.11.0": version "0.11.0" @@ -2398,15 +2167,23 @@ resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz#957cb64ea2f5ce527cc9cf02a096baeb0d2b99b4" integrity sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ== +"@sigstore/tuf@^1.0.1": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-1.0.2.tgz#acbb2c8399fb03aca0c90fa1dc1934bda4160623" + integrity sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q== + dependencies: + "@sigstore/protobuf-specs" "^0.1.0" + tuf-js "^1.1.7" + "@sinclair/typebox@^0.24.1": version "0.24.51" resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== -"@sinclair/typebox@^0.25.16": - version "0.25.24" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" - integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== "@sindresorhus/is@^0.7.0": version "0.7.0" @@ -2426,9 +2203,9 @@ type-detect "4.0.8" "@sinonjs/fake-timers@^10.0.2": - version "10.1.0" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.1.0.tgz#3595e42b3f0a7df80a9681cf58d8cb418eac1e99" - integrity sha512-w1qd368vtrwttm1PRJWPW1QHlbmHrVDGs1eBH/jZvRPUFS4MNXV9Q33EQdjOdeAxZ7O8+3wM7zxztm2nfUSyKw== + version "10.3.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== dependencies: "@sinonjs/commons" "^3.0.0" @@ -2485,9 +2262,9 @@ integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q== "@types/babel__core@^7.1.14": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891" - integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== + version "7.20.1" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b" + integrity sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw== dependencies: "@babel/parser" "^7.20.7" "@babel/types" "^7.20.7" @@ -2511,11 +2288,11 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.5.tgz#c107216842905afafd3b6e774f6f935da6f5db80" - integrity sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q== + version "7.20.1" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz#dd6f1d2411ae677dcb2db008c962598be31d6acf" + integrity sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg== dependencies: - "@babel/types" "^7.3.0" + "@babel/types" "^7.20.7" "@types/cacheable-request@^6.0.1": version "6.0.3" @@ -2553,9 +2330,9 @@ "@types/estree" "*" "@types/eslint@*": - version "8.37.0" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.37.0.tgz#29cebc6c2a3ac7fea7113207bf5a828fdf4d7ef1" - integrity sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ== + version "8.44.0" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.0.tgz#55818eabb376e2272f77fbf5c96c43137c3c1e53" + integrity sha512-gsF+c/0XOguWgaOgvFs+xnnRqt9GwgTvIks36WpE6ueeI4KCEHHd8K/CKHqhOqrJKsYH8m27kRzQEvWXAwXUTw== dependencies: "@types/estree" "*" "@types/json-schema" "*" @@ -2636,9 +2413,9 @@ parse5 "^7.0.0" "@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + version "7.0.12" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== "@types/json5@^0.0.29": version "0.0.29" @@ -2674,9 +2451,9 @@ "@types/lodash" "*" "@types/lodash@*": - version "4.14.194" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.194.tgz#b71eb6f7a0ff11bff59fc987134a093029258a76" - integrity sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g== + version "4.14.195" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.195.tgz#bafc975b252eb6cea78882ce8a7b6bf22a6de632" + integrity sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg== "@types/mdast@^3.0.0": version "3.0.11" @@ -2701,14 +2478,14 @@ integrity sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q== "@types/node@*", "@types/node@>=6": - version "20.1.7" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.1.7.tgz#ce10c802f7731909d0a44ac9888e8b3a9125eb62" - integrity sha512-WCuw/o4GSwDGMoonES8rcvwsig77dGCMbZDrZr2x4ZZiNW4P/gcoZXe/0twgtobcTkmg9TuKflxYL/DuwDyJzg== + version "20.4.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.1.tgz#a6033a8718653c50ac4962977e14d0f984d9527d" + integrity sha512-JIzsAvJeA/5iY6Y/OxZbv1lUcc8dNSE77lb2gnBH+/PJ3lFR1Ccvgwl5JWnHAkNHcRsT0TbpVOsiMKZ1F/yyJg== "@types/node@^18.0.0": - version "18.16.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.12.tgz#f11e19055c5b3daeb79dc6eb7ccdd3d036313034" - integrity sha512-tIRrjbY9C277MOfP8M3zjMIhtMlUJ6YVqkGgLjz+74jVsdf4/UjC6Hku4+1N0BS0qyC0JAS6tJLUk9H6JUKviQ== + version "18.16.19" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.19.tgz#cb03fca8910fdeb7595b755126a8a78144714eea" + integrity sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA== "@types/normalize-package-data@^2.4.0": version "2.4.1" @@ -2726,9 +2503,9 @@ integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== "@types/prettier@^2.1.5": - version "2.7.2" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.2.tgz#6c2324641cc4ba050a8c710b2b251b377581fbf0" - integrity sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg== + version "2.7.3" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f" + integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== "@types/prop-types@*": version "15.7.5" @@ -2746,9 +2523,9 @@ redux "^4.0.0" "@types/react@*": - version "18.2.6" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.6.tgz#5cd53ee0d30ffc193b159d3516c8c8ad2f19d571" - integrity sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA== + version "18.2.14" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.14.tgz#fa7a6fecf1ce35ca94e74874f70c56ce88f7a127" + integrity sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -2824,7 +2601,12 @@ resolved "https://registry.yarnpkg.com/@types/ua-parser-js/-/ua-parser-js-0.7.36.tgz#9bd0b47f26b5a3151be21ba4ce9f5fa457c5f190" integrity sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ== -"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": +"@types/unist@*", "@types/unist@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.0.tgz#988ae8af1e5239e89f9fbb1ade4c935f4eeedf9a" + integrity sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w== + +"@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": version "2.0.6" resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== @@ -2944,14 +2726,14 @@ strip-ansi "^6.0.0" "@wdio/logger@^8.1.0": - version "8.6.6" - resolved "https://registry.yarnpkg.com/@wdio/logger/-/logger-8.6.6.tgz#6f3844a2506730ae1e4151dca0ed0242b5b69b63" - integrity sha512-MS+Y5yqFGx2zVXMOfuBQAVdFsP4DuYz+/hM552xwiDWjGg6EZHoccqUYgH3J5zpu3JFpYV3R/a5jExFiGGck6g== + version "8.11.0" + resolved "https://registry.yarnpkg.com/@wdio/logger/-/logger-8.11.0.tgz#df28cb65d7b9e308a0cd1445a99adc8b5730174c" + integrity sha512-IsuKSaYi7NKEdgA57h8muzlN/MVp1dQG+V4C//7g4m03YJUnNQLvDhJzLjdeNTfvZy61U7foQSyt+3ktNzZkXA== dependencies: chalk "^5.1.2" loglevel "^1.6.0" loglevel-plugin-prefix "^0.8.4" - strip-ansi "^6.0.0" + strip-ansi "^7.1.0" "@wdio/mocha-framework@7.26.0": version "7.26.0" @@ -3214,10 +2996,10 @@ resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== -"@yarnpkg/parsers@^3.0.0-rc.18": - version "3.0.0-rc.43" - resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.43.tgz#2bf720ec6444e3f002f40dce734c262e9f3d888a" - integrity sha512-AhFF3mIDfA+jEwQv2WMHmiYhOvmdbh2qhUkDVQfiqzQtUwS4BgoWwom5NpSPg4Ix5vOul+w1690Bt21CkVLpgg== +"@yarnpkg/parsers@3.0.0-rc.46": + version "3.0.0-rc.46" + resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz#03f8363111efc0ea670e53b0282cd3ef62de4e01" + integrity sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q== dependencies: js-yaml "^3.10.0" tslib "^2.4.0" @@ -3278,10 +3060,10 @@ acorn-walk@^8.0.2: resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== -acorn@^8.1.0, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.0, acorn@^8.8.1: - version "8.8.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== +acorn@^8.1.0, acorn@^8.7.1, acorn@^8.8.1, acorn@^8.8.2, acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== add-stream@^1.0.0: version "1.0.0" @@ -3606,11 +3388,11 @@ argparse@^2.0.1: integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== aria-query@^5.0.0, aria-query@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" - integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== dependencies: - deep-equal "^2.0.5" + dequal "^2.0.3" array-buffer-byte-length@^1.0.0: version "1.0.0" @@ -3635,7 +3417,7 @@ array-ify@^1.0.0: resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== -array-includes@^3.1.5, array-includes@^3.1.6: +array-includes@^3.1.6: version "3.1.6" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== @@ -3771,9 +3553,9 @@ axe-core@4.6.3: integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg== axe-core@^4.6.2: - version "4.7.1" - resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.1.tgz#04392c9ccb3d7d7c5d2f8684f148d56d3442f33d" - integrity sha512-sCXXUhA+cljomZ3ZAwb8i1p3oOlkABzPy08ZDAoGcYuvtBPlQ1Ytde129ArXyHWDhfeewq7rlx9F+cUx2SSlkg== + version "4.7.2" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0" + integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g== axios@^1.0.0, axios@^1.2.1: version "1.4.0" @@ -3785,18 +3567,18 @@ axios@^1.0.0, axios@^1.2.1: proxy-from-env "^1.1.0" axobject-query@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1" - integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== + version "3.2.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== dependencies: - deep-equal "^2.0.5" + dequal "^2.0.3" -babel-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" - integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== +babel-jest@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.6.1.tgz#a7141ad1ed5ec50238f3cd36127636823111233a" + integrity sha512-qu+3bdPEQC6KZSPz+4Fyjbga5OODNcp49j6GKzG1EKbkfyJBxEYGVUmVGpwCSeGouG52R4EgYMLb6p9YeEEQ4A== dependencies: - "@jest/transform" "^29.5.0" + "@jest/transform" "^29.6.1" "@types/babel__core" "^7.1.14" babel-plugin-istanbul "^6.1.1" babel-preset-jest "^29.5.0" @@ -3804,12 +3586,12 @@ babel-jest@^29.5.0: graceful-fs "^4.2.9" slash "^3.0.0" -babel-loader@9.1.2: - version "9.1.2" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.2.tgz#a16a080de52d08854ee14570469905a5fc00d39c" - integrity sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA== +babel-loader@9.1.3: + version "9.1.3" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" + integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== dependencies: - find-cache-dir "^3.3.2" + find-cache-dir "^4.0.0" schema-utils "^4.0.0" babel-plugin-emotion@^10.0.27: @@ -3867,29 +3649,29 @@ babel-plugin-macros@^3.1.0: cosmiconfig "^7.0.0" resolve "^1.19.0" -babel-plugin-polyfill-corejs2@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz#75044d90ba5043a5fb559ac98496f62f3eb668fd" - integrity sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw== +babel-plugin-polyfill-corejs2@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.4.tgz#9f9a0e1cd9d645cc246a5e094db5c3aa913ccd2b" + integrity sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA== dependencies: - "@babel/compat-data" "^7.17.7" - "@babel/helper-define-polyfill-provider" "^0.4.0" - semver "^6.1.1" + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.4.1" + "@nicolo-ribaudo/semver-v6" "^6.3.3" -babel-plugin-polyfill-corejs3@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz#39248263c38191f0d226f928d666e6db1b4b3a8a" - integrity sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q== +babel-plugin-polyfill-corejs3@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.2.tgz#d406c5738d298cd9c66f64a94cf8d5904ce4cc5e" + integrity sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.0" - core-js-compat "^3.30.1" + "@babel/helper-define-polyfill-provider" "^0.4.1" + core-js-compat "^3.31.0" -babel-plugin-polyfill-regenerator@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz#e7344d88d9ef18a3c47ded99362ae4a757609380" - integrity sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g== +babel-plugin-polyfill-regenerator@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.1.tgz#ace7a5eced6dff7d5060c335c52064778216afd3" + integrity sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.0" + "@babel/helper-define-polyfill-provider" "^0.4.1" babel-plugin-syntax-jsx@^6.18.0: version "6.18.0" @@ -4031,15 +3813,15 @@ browser-stdout@1.3.1: resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.21.5: - version "4.21.5" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== +browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.21.9: + version "4.21.9" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" + integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" + caniuse-lite "^1.0.30001503" + electron-to-chromium "^1.4.431" + node-releases "^2.0.12" + update-browserslist-db "^1.0.11" bser@2.1.1: version "2.1.1" @@ -4153,34 +3935,10 @@ cacache@^15.2.0: tar "^6.0.2" unique-filename "^1.1.1" -cacache@^16.1.0: - version "16.1.3" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" - integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== - dependencies: - "@npmcli/fs" "^2.1.0" - "@npmcli/move-file" "^2.0.0" - chownr "^2.0.0" - fs-minipass "^2.1.0" - glob "^8.0.1" - infer-owner "^1.0.4" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - mkdirp "^1.0.4" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^9.0.0" - tar "^6.1.11" - unique-filename "^2.0.0" - cacache@^17.0.0: - version "17.1.2" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.2.tgz#57ce9b79d300373f7266f2f1e4e1718fe09e84b4" - integrity sha512-VcRDUtZd9r7yfGDpdm3dBDBSQbLd19IqWs9q1tuB9g6kmxYLwIjfLngRKMCfDHxReuf0SBclRuYn66Xds7jzUQ== + version "17.1.3" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.3.tgz#c6ac23bec56516a7c0c52020fd48b4909d7c7044" + integrity sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg== dependencies: "@npmcli/fs" "^3.1.0" fs-minipass "^3.0.0" @@ -4214,9 +3972,9 @@ cacheable-request@^2.1.1: responselike "1.0.2" cacheable-request@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz#ea0d0b889364a25854757301ca12b2da77f91d27" - integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew== + version "7.0.4" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz#7a33ebf08613178b403635be7b899d3e69bbe817" + integrity sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== dependencies: clone-response "^1.0.2" get-stream "^5.1.0" @@ -4299,10 +4057,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.30001449, caniuse-lite@^1.0.30001464: - version "1.0.30001488" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001488.tgz#d19d7b6e913afae3e98f023db97c19e9ddc5e91f" - integrity sha512-NORIQuuL4xGpIy6iCCQGN4iFjlBXtfKWIenlUuyZJumLRIindLb7wXM+GO8erEhb7vXfcnf4BAg2PrSDN5TNLQ== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001503: + version "1.0.30001515" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001515.tgz#418aefeed9d024cd3129bfae0ccc782d4cb8f12b" + integrity sha512-eEFDwUOZbE24sb+Ecsx3+OvNETqjWIdabMy52oOkIgcUtAsQifjUG9q4U9dgTHJM2mfk4uEPxc0+xuFdJ629QA== capital-case@^1.0.4: version "1.0.4" @@ -4360,9 +4118,9 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: supports-color "^7.1.0" chalk@^5.1.2: - version "5.2.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" - integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== + version "5.3.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" + integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== change-case@^4.1.2: version "4.1.2" @@ -4490,9 +4248,9 @@ ci-info@^3.2.0, ci-info@^3.6.1: integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== cjs-module-lexer@^1.0.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" - integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== + version "1.2.3" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" + integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== clean-css@~5.3.2: version "5.3.2" @@ -4635,9 +4393,9 @@ collapse-white-space@^1.0.0, collapse-white-space@^1.0.2: integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== + version "1.0.2" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== color-convert@^1.9.0, color-convert@^1.9.3: version "1.9.3" @@ -4742,16 +4500,16 @@ comment-parser@1.3.1: resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.3.1.tgz#3d7ea3adaf9345594aedee6563f422348f165c1b" integrity sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA== +common-path-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" + integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== + common-tags@^1.8.0: version "1.8.2" resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - compare-func@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" @@ -4898,16 +4656,16 @@ conventional-changelog-preset-loader@^3.0.0: integrity sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA== conventional-changelog-writer@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-6.0.0.tgz#8c8dea0441c6e648c9b25bb784e750d02f8002d5" - integrity sha512-8PyWTnn7zBIt9l4hj4UusFs1TyG+9Ulu1zlOAc72L7Sdv9Hsc8E86ot7htY3HXCVhXHB/NO0pVGvZpwsyJvFfw== + version "6.0.1" + resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz#d8d3bb5e1f6230caed969dcc762b1c368a8f7b01" + integrity sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ== dependencies: conventional-commits-filter "^3.0.0" dateformat "^3.0.3" handlebars "^4.7.7" json-stringify-safe "^5.0.1" meow "^8.1.2" - semver "^6.3.0" + semver "^7.0.0" split "^1.0.1" conventional-commits-filter@^3.0.0: @@ -4974,16 +4732,16 @@ copy-anything@^2.0.1: is-what "^3.14.1" copy-text-to-clipboard@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.1.0.tgz#6bf40deef0a51ac6858efb0d76ded2c6d6a15059" - integrity sha512-PFM6BnjLnOON/lB3ta/Jg7Ywsv+l9kQGD4TWDCSlRBGmqnnTM5MrDkhAFgw+8HZt0wW6Q2BBE4cmy9sq+s9Qng== + version "3.2.0" + resolved "https://registry.yarnpkg.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz#0202b2d9bdae30a49a53f898626dcc3b49ad960b" + integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q== -core-js-compat@^3.30.1, core-js-compat@^3.30.2: - version "3.30.2" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.30.2.tgz#83f136e375babdb8c80ad3c22d67c69098c1dd8b" - integrity sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA== +core-js-compat@^3.31.0: + version "3.31.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.1.tgz#5084ad1a46858df50ff89ace152441a63ba7aae0" + integrity sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA== dependencies: - browserslist "^4.21.5" + browserslist "^4.21.9" core-util-is@~1.0.0: version "1.0.3" @@ -5091,14 +4849,14 @@ csp_evaluator@1.1.1: integrity sha512-N3ASg0C4kNPUaNxt1XAvzHIVuzdtr8KLgfk1O8WDyimp1GisPAHESupArO2ieHk9QWbrJ/WkQODyh21Ps/xhxw== css-declaration-sorter@^6.3.1: - version "6.4.0" - resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz#630618adc21724484b3e9505bce812def44000ad" - integrity sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew== + version "6.4.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71" + integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== css-functions-list@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/css-functions-list/-/css-functions-list-3.1.0.tgz#cf5b09f835ad91a00e5959bcfc627cd498e1321b" - integrity sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w== + version "3.2.0" + resolved "https://registry.yarnpkg.com/css-functions-list/-/css-functions-list-3.2.0.tgz#8290b7d064bf483f48d6559c10e98dc4d1ad19ee" + integrity sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg== css-loader@6.8.1: version "6.8.1" @@ -5335,7 +5093,7 @@ decimal.js@^10.4.2: resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== -decode-uri-component@^0.2.0: +decode-uri-component@^0.2.0, decode-uri-component@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== @@ -5412,31 +5170,7 @@ dedent@0.7.0, dedent@^0.7.0: resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== -deep-equal@^2.0.5: - version "2.2.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" - integrity sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ== - dependencies: - array-buffer-byte-length "^1.0.0" - call-bind "^1.0.2" - es-get-iterator "^1.1.3" - get-intrinsic "^1.2.0" - is-arguments "^1.1.1" - is-array-buffer "^3.0.2" - is-date-object "^1.0.5" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - isarray "^2.0.5" - object-is "^1.1.5" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.5.0" - side-channel "^1.0.4" - which-boxed-primitive "^1.0.2" - which-collection "^1.0.1" - which-typed-array "^1.1.9" - -deep-is@^0.1.3, deep-is@~0.1.3: +deep-is@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== @@ -5505,6 +5239,11 @@ deprecation@^2.0.0: resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== +dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + destroy@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" @@ -5670,9 +5409,9 @@ domhandler@^5.0.2, domhandler@^5.0.3: domelementtype "^2.3.0" dompurify@^2.2.6: - version "2.4.5" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.5.tgz#0e89a27601f0bad978f9a924e7a05d5d2cccdd87" - integrity sha512-jggCCd+8Iqp4Tsz0nIvpcb22InKEBrGz5dw3EQJMs8HPJDsKbFIO3STYtAvCfDx26Muevn1MHVI0XxjgFfmiSA== + version "2.4.7" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.7.tgz#277adeb40a2c84be2d42a8bcd45f582bfa4d0cfc" + integrity sha512-kxxKlPEDa6Nc5WJi+qRgPbOAbgTpSULL+vI3NUXsZMlkJxTqYI9wg5ZTay2sFrdZRWHPWNi+EdAhcJf81WtoMQ== domutils@^3.0.1: version "3.1.0" @@ -5764,10 +5503,10 @@ ejs@^3.0.1, ejs@^3.1.7: dependencies: jake "^10.8.5" -electron-to-chromium@^1.4.284: - version "1.4.397" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.397.tgz#82a7e26c657538d59bb713b97ac22f97ea3a90ea" - integrity sha512-jwnPxhh350Q/aMatQia31KAIQdhEsYS0fFZ0BQQlN9tfvOEwShu6ZNwI4kL/xBabjcB/nTy6lSt17kNIluJZ8Q== +electron-to-chromium@^1.4.431: + version "1.4.455" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.455.tgz#81fe4353ac970eb971c07088c8da8b7f6280ddc9" + integrity sha512-8tgdX0Odl24LtmLwxotpJCVjIndN559AvaOtd67u+2mo+IDsgsTF580NB+uuDCqsHw8yFg53l5+imFV9Fw3cbA== emittery@^0.13.1: version "0.13.1" @@ -5813,10 +5552,10 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: dependencies: once "^1.4.0" -enhanced-resolve@^5.14.1: - version "5.14.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz#de684b6803724477a4af5d74ccae5de52c25f6b3" - integrity sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow== +enhanced-resolve@^5.15.0: + version "5.15.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -5838,11 +5577,16 @@ env-paths@^2.2.0: resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== -envinfo@7.8.1, envinfo@^7.7.3: +envinfo@7.8.1: version "7.8.1" resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== +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== + err-code@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" @@ -5907,25 +5651,10 @@ es-array-method-boxes-properly@^1.0.0: resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== -es-get-iterator@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" - integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" - has-symbols "^1.0.3" - is-arguments "^1.1.1" - is-map "^2.0.2" - is-set "^2.0.2" - is-string "^1.0.7" - isarray "^2.0.5" - stop-iteration-iterator "^1.0.0" - es-module-lexer@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.2.1.tgz#ba303831f63e6a394983fde2f97ad77b22324527" - integrity sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg== + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f" + integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA== es-set-tostringtag@^2.0.1: version "2.0.1" @@ -5983,14 +5712,13 @@ escape-string-regexp@^2.0.0: integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== escodegen@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" - integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== + version "2.1.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" + integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== dependencies: esprima "^4.0.1" estraverse "^5.2.0" esutils "^2.0.2" - optionator "^0.8.1" optionalDependencies: source-map "~0.6.1" @@ -6036,10 +5764,10 @@ eslint-plugin-import@2.27.5: semver "^6.3.0" tsconfig-paths "^3.14.1" -eslint-plugin-jsdoc@46.2.6: - version "46.2.6" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.2.6.tgz#f25590d371859f20691d65b5dcd4cbe370d65564" - integrity sha512-zIaK3zbSrKuH12bP+SPybPgcHSM6MFzh3HFeaODzmsF1N8C1l8dzJ22cW1aq4g0+nayU1VMjmNf7hg0dpShLrA== +eslint-plugin-jsdoc@46.4.3: + version "46.4.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.3.tgz#4a2ad3a01d7ba723acaed3940f746a0a31d1e58e" + integrity sha512-Prc7ol+vCIghPeECpwZq5+P+VZfoi87suywvbYCiCnkI1kTmVSdcOC2M8mioglWxBbd28wbb1OVjg/8OzGzatA== dependencies: "@es-joy/jsdoccomment" "~0.39.4" are-docs-informative "^0.0.2" @@ -6115,15 +5843,15 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== -eslint@8.42.0: - version "8.42.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.42.0.tgz#7bebdc3a55f9ed7167251fe7259f75219cade291" - integrity sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A== +eslint@8.44.0: + version "8.44.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.44.0.tgz#51246e3889b259bbcd1d7d736a0c10add4f0e500" + integrity sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.0.3" - "@eslint/js" "8.42.0" + "@eslint/eslintrc" "^2.1.0" + "@eslint/js" "8.44.0" "@humanwhocodes/config-array" "^0.11.10" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" @@ -6135,7 +5863,7 @@ eslint@8.42.0: escape-string-regexp "^4.0.0" eslint-scope "^7.2.0" eslint-visitor-keys "^3.4.1" - espree "^9.5.2" + espree "^9.6.0" esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" @@ -6155,17 +5883,17 @@ eslint@8.42.0: lodash.merge "^4.6.2" minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" + optionator "^0.9.3" strip-ansi "^6.0.1" strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.5.2: - version "9.5.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" - integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== +espree@^9.6.0: + version "9.6.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.0.tgz#80869754b1c6560f32e3b6929194a3fe07c5b82f" + integrity sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" eslint-visitor-keys "^3.4.1" @@ -6282,16 +6010,22 @@ expect@^28.1.0: jest-message-util "^28.1.3" jest-util "^28.1.3" -expect@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" - integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== +expect@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.6.1.tgz#64dd1c8f75e2c0b209418f2b8d36a07921adfdf1" + integrity sha512-XEdDLonERCU1n9uR56/Stx9OqojaLAQtZf9PrCHH9Hl8YXiEIka3H4NXJ3NOIBmQJTg7+j7buh34PMHfJujc8g== dependencies: - "@jest/expect-utils" "^29.5.0" + "@jest/expect-utils" "^29.6.1" + "@types/node" "*" jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-matcher-utils "^29.6.1" + jest-message-util "^29.6.1" + jest-util "^29.6.1" + +exponential-backoff@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" + integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== express@^4.17.1: version "4.18.2" @@ -6414,7 +6148,7 @@ fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: +fast-levenshtein@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== @@ -6538,6 +6272,11 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +filter-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" + integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== + finalhandler@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" @@ -6551,14 +6290,13 @@ finalhandler@1.2.0: statuses "2.0.1" unpipe "~1.0.0" -find-cache-dir@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== +find-cache-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" + integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" + common-path-prefix "^3.0.0" + pkg-dir "^7.0.0" find-root@^1.1.0: version "1.1.0" @@ -6596,6 +6334,14 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" +find-up@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" + integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== + dependencies: + locate-path "^7.1.0" + path-exists "^5.0.0" + flat-cache@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" @@ -6699,7 +6445,7 @@ fs-extra@^11.1.0, fs-extra@^11.1.1: jsonfile "^6.0.1" universalify "^2.0.0" -fs-minipass@^2.0.0, fs-minipass@^2.1.0: +fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== @@ -6897,12 +6643,12 @@ git-remote-origin-url@^2.0.0: pify "^2.3.0" git-semver-tags@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-5.0.0.tgz#775ff55effae0b50b755448408de6cd56ce293e2" - integrity sha512-fZ+tmZ1O5aXW/T5nLzZLbxWAHdQTLLXalOECMNAmhoEQSfqZjtaeMjpsXH4C5qVhrICTkVQeQFujB1lKzIHljA== + version "5.0.1" + resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-5.0.1.tgz#db748aa0e43d313bf38dcd68624d8443234e1c15" + integrity sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA== dependencies: meow "^8.1.2" - semver "^6.3.0" + semver "^7.0.0" git-up@^7.0.0: version "7.0.0" @@ -6970,15 +6716,15 @@ glob@7.2.0: path-is-absolute "^1.0.0" glob@^10.2.2: - version "10.2.4" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.2.4.tgz#f5bf7ddb080e3e9039b148a9e2aef3d5ebfc0a25" - integrity sha512-fDboBse/sl1oXSLhIp0FcCJgzW9KmhC/q8ULTKC82zc+DL3TL7FNb8qlt5qqXN53MsKEUSIcb+7DLmEygOE5Yw== + version "10.3.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.3.tgz#8360a4ffdd6ed90df84aa8d52f21f452e86a123b" + integrity sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw== dependencies: foreground-child "^3.1.0" jackspeak "^2.0.3" - minimatch "^9.0.0" - minipass "^5.0.0 || ^6.0.0" - path-scurry "^1.7.0" + minimatch "^9.0.1" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry "^1.10.1" glob@^7.1.3, glob@^7.1.4: version "7.2.3" @@ -7441,10 +7187,10 @@ html-encoding-sniffer@^3.0.0: dependencies: whatwg-encoding "^2.0.0" -html-entities@2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.6.tgz#966391d58e5737c77bca4025e31721b496ab7454" - integrity sha512-9o0+dcpIw2/HxkNuYKxSJUF/MMRZQECK4GnF+oQOmJ83yCVHTWgCH5aOXxK5bozNRmM8wtgryjHD3uloPBDEGw== +html-entities@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061" + integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ== html-escaper@^2.0.0: version "2.0.2" @@ -7803,7 +7549,7 @@ insert-css@0.0.0: resolved "https://registry.yarnpkg.com/insert-css/-/insert-css-0.0.0.tgz#2304bfa6f893abecb8ff9ca8d9c7605d94cf2911" integrity sha512-PwixL1rVtKkM1gz43tEHwZ2sUOYmWB5zk/9YiEmOxERqjfIkkMY4jwrl3v3e9NLzblEdkBuMLiTLm/0sHMx4qA== -internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5: +internal-slot@^1.0.3, internal-slot@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== @@ -7877,14 +7623,6 @@ is-alphanumerical@^1.0.0: is-alphabetical "^1.0.0" is-decimal "^1.0.0" -is-arguments@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" @@ -7957,7 +7695,7 @@ is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-mo dependencies: has "^1.0.3" -is-date-object@^1.0.1, is-date-object@^1.0.5: +is-date-object@^1.0.1: version "1.0.5" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== @@ -8036,11 +7774,6 @@ is-lambda@^1.0.1: resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== -is-map@^2.0.1, is-map@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" - integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== - is-natural-number@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8" @@ -8123,11 +7856,6 @@ is-retry-allowed@^1.1.0: resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== -is-set@^2.0.1, is-set@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" - integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== - is-shared-array-buffer@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" @@ -8209,11 +7937,6 @@ is-utf8@^0.2.0: resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== -is-weakmap@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" - integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== - is-weakref@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" @@ -8221,14 +7944,6 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" -is-weakset@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" - integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - is-what@^3.14.1: version "3.14.1" resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" @@ -8270,11 +7985,6 @@ isarray@0.0.1: resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== -isarray@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" - integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== - isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -8354,18 +8064,18 @@ isurl@^1.0.0-alpha5: is-object "^1.0.1" jackspeak@^2.0.3: - version "2.2.0" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.0.tgz#497cbaedc902ec3f31d5d61be804d2364ff9ddad" - integrity sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ== + version "2.2.1" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.1.tgz#655e8cf025d872c9c03d3eb63e8f0c024fef16a6" + integrity sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw== dependencies: "@isaacs/cliui" "^8.0.2" optionalDependencies: "@pkgjs/parseargs" "^0.11.0" jake@^10.8.5: - version "10.8.6" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.6.tgz#227a96786a1e035214e0ba84b482d6223d41ef04" - integrity sha512-G43Ub9IYEFfu72sua6rzooi8V8Gz2lkfk48rW20vEWCGizeaEPlKB1Kh8JIA84yQbiAEfqlPmSpGgCKKxH3rDA== + version "10.8.7" + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f" + integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w== dependencies: async "^3.2.3" chalk "^4.0.2" @@ -8380,87 +8090,87 @@ jest-changed-files@^29.5.0: execa "^5.0.0" p-limit "^3.1.0" -jest-circus@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" - integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== +jest-circus@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.6.1.tgz#861dab37e71a89907d1c0fabc54a0019738ed824" + integrity sha512-tPbYLEiBU4MYAL2XoZme/bgfUeotpDBd81lgHLCbDZZFaGmECk0b+/xejPFtmiBP87GgP/y4jplcRpbH+fgCzQ== dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/environment" "^29.6.1" + "@jest/expect" "^29.6.1" + "@jest/test-result" "^29.6.1" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" dedent "^0.7.0" is-generator-fn "^2.0.0" - jest-each "^29.5.0" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" + jest-each "^29.6.1" + jest-matcher-utils "^29.6.1" + jest-message-util "^29.6.1" + jest-runtime "^29.6.1" + jest-snapshot "^29.6.1" + jest-util "^29.6.1" p-limit "^3.1.0" - pretty-format "^29.5.0" + pretty-format "^29.6.1" pure-rand "^6.0.0" slash "^3.0.0" stack-utils "^2.0.3" -jest-cli@29.5.0, jest-cli@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" - integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== +jest-cli@29.6.1, jest-cli@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.6.1.tgz#99d9afa7449538221c71f358f0fdd3e9c6e89f72" + integrity sha512-607dSgTA4ODIN6go9w6xY3EYkyPFGicx51a69H7yfvt7lN53xNswEVLovq+E77VsTRi5fWprLH0yl4DJgE8Ing== dependencies: - "@jest/core" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/core" "^29.6.1" + "@jest/test-result" "^29.6.1" + "@jest/types" "^29.6.1" chalk "^4.0.0" exit "^0.1.2" graceful-fs "^4.2.9" import-local "^3.0.2" - jest-config "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-config "^29.6.1" + jest-util "^29.6.1" + jest-validate "^29.6.1" prompts "^2.0.1" yargs "^17.3.1" -jest-config@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" - integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== +jest-config@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.6.1.tgz#d785344509065d53a238224c6cdc0ed8e2f2f0dd" + integrity sha512-XdjYV2fy2xYixUiV2Wc54t3Z4oxYPAELUzWnV6+mcbq0rh742X2p52pii5A3oeRzYjLnQxCsZmp0qpI6klE2cQ== dependencies: "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^29.5.0" - "@jest/types" "^29.5.0" - babel-jest "^29.5.0" + "@jest/test-sequencer" "^29.6.1" + "@jest/types" "^29.6.1" + babel-jest "^29.6.1" chalk "^4.0.0" ci-info "^3.2.0" deepmerge "^4.2.2" glob "^7.1.3" graceful-fs "^4.2.9" - jest-circus "^29.5.0" - jest-environment-node "^29.5.0" + jest-circus "^29.6.1" + jest-environment-node "^29.6.1" jest-get-type "^29.4.3" jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-runner "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-resolve "^29.6.1" + jest-runner "^29.6.1" + jest-util "^29.6.1" + jest-validate "^29.6.1" micromatch "^4.0.4" parse-json "^5.2.0" - pretty-format "^29.5.0" + pretty-format "^29.6.1" slash "^3.0.0" strip-json-comments "^3.1.1" -"jest-diff@>=29.4.3 < 30", jest-diff@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" - integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== +"jest-diff@>=29.4.3 < 30", jest-diff@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.6.1.tgz#13df6db0a89ee6ad93c747c75c85c70ba941e545" + integrity sha512-FsNCvinvl8oVxpNLttNQX7FAq7vR+gMDGj90tiP7siWw1UdakWUGqrylpsYrpvj908IYckm5Y0Q7azNAozU1Kg== dependencies: chalk "^4.0.0" diff-sequences "^29.4.3" jest-get-type "^29.4.3" - pretty-format "^29.5.0" + pretty-format "^29.6.1" jest-diff@^28.1.3: version "28.1.3" @@ -8479,42 +8189,42 @@ jest-docblock@^29.4.3: dependencies: detect-newline "^3.0.0" -jest-each@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" - integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== +jest-each@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.6.1.tgz#975058e5b8f55c6780beab8b6ab214921815c89c" + integrity sha512-n5eoj5eiTHpKQCAVcNTT7DRqeUmJ01hsAL0Q1SMiBHcBcvTKDELixQOGMCpqhbIuTcfC4kMfSnpmDqRgRJcLNQ== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" chalk "^4.0.0" jest-get-type "^29.4.3" - jest-util "^29.5.0" - pretty-format "^29.5.0" + jest-util "^29.6.1" + pretty-format "^29.6.1" -jest-environment-jsdom@29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz#cfe86ebaf1453f3297b5ff3470fbe94739c960cb" - integrity sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw== +jest-environment-jsdom@29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.6.1.tgz#480bce658aa31589309c82ca510351fd7c683bbb" + integrity sha512-PoY+yLaHzVRhVEjcVKSfJ7wXmJW4UqPYNhR05h7u/TK0ouf6DmRNZFBL/Z00zgQMyWGMBXn69/FmOvhEJu8cIw== dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/environment" "^29.6.1" + "@jest/fake-timers" "^29.6.1" + "@jest/types" "^29.6.1" "@types/jsdom" "^20.0.0" "@types/node" "*" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-mock "^29.6.1" + jest-util "^29.6.1" jsdom "^20.0.0" -jest-environment-node@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" - integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== +jest-environment-node@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.6.1.tgz#08a122dece39e58bc388da815a2166c58b4abec6" + integrity sha512-ZNIfAiE+foBog24W+2caIldl4Irh8Lx1PUhg/GZ0odM1d/h2qORAsejiFc7zb+SEmYPn1yDZzEDSU5PmDkmVLQ== dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/environment" "^29.6.1" + "@jest/fake-timers" "^29.6.1" + "@jest/types" "^29.6.1" "@types/node" "*" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-mock "^29.6.1" + jest-util "^29.6.1" jest-get-type@^28.0.2: version "28.0.2" @@ -8526,32 +8236,32 @@ jest-get-type@^29.4.3: resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== -jest-haste-map@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" - integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== +jest-haste-map@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.6.1.tgz#62655c7a1c1b349a3206441330fb2dbdb4b63803" + integrity sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/graceful-fs" "^4.1.3" "@types/node" "*" anymatch "^3.0.3" fb-watchman "^2.0.0" graceful-fs "^4.2.9" jest-regex-util "^29.4.3" - jest-util "^29.5.0" - jest-worker "^29.5.0" + jest-util "^29.6.1" + jest-worker "^29.6.1" micromatch "^4.0.4" walker "^1.0.8" optionalDependencies: fsevents "^2.3.2" -jest-leak-detector@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" - integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== +jest-leak-detector@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.6.1.tgz#66a902c81318e66e694df7d096a95466cb962f8e" + integrity sha512-OrxMNyZirpOEwkF3UHnIkAiZbtkBWiye+hhBweCHkVbCgyEy71Mwbb5zgeTNYWJBi1qgDVfPC1IwO9dVEeTLwQ== dependencies: jest-get-type "^29.4.3" - pretty-format "^29.5.0" + pretty-format "^29.6.1" jest-matcher-utils@^28.1.0, jest-matcher-utils@^28.1.3: version "28.1.3" @@ -8563,15 +8273,15 @@ jest-matcher-utils@^28.1.0, jest-matcher-utils@^28.1.3: jest-get-type "^28.0.2" pretty-format "^28.1.3" -jest-matcher-utils@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" - integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== +jest-matcher-utils@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.6.1.tgz#6c60075d84655d6300c5d5128f46531848160b53" + integrity sha512-SLaztw9d2mfQQKHmJXKM0HCbl2PPVld/t9Xa6P9sgiExijviSp7TnZZpw2Fpt+OI3nwUO/slJbOfzfUMKKC5QA== dependencies: chalk "^4.0.0" - jest-diff "^29.5.0" + jest-diff "^29.6.1" jest-get-type "^29.4.3" - pretty-format "^29.5.0" + pretty-format "^29.6.1" jest-message-util@^28.1.3: version "28.1.3" @@ -8588,29 +8298,29 @@ jest-message-util@^28.1.3: slash "^3.0.0" stack-utils "^2.0.3" -jest-message-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" - integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== +jest-message-util@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.6.1.tgz#d0b21d87f117e1b9e165e24f245befd2ff34ff8d" + integrity sha512-KoAW2zAmNSd3Gk88uJ56qXUWbFk787QKmjjJVOjtGFmmGSZgDBrlIL4AfQw1xyMYPNVD7dNInfIbur9B2rd/wQ== dependencies: "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/stack-utils" "^2.0.0" chalk "^4.0.0" graceful-fs "^4.2.9" micromatch "^4.0.4" - pretty-format "^29.5.0" + pretty-format "^29.6.1" slash "^3.0.0" stack-utils "^2.0.3" -jest-mock@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" - integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== +jest-mock@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.6.1.tgz#049ee26aea8cbf54c764af649070910607316517" + integrity sha512-brovyV9HBkjXAEdRooaTQK42n8usKoSRR3gihzUpYeV/vwqgSoNfrksO7UfSACnPmxasO/8TmHM3w9Hp3G1dgw== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/node" "*" - jest-util "^29.5.0" + jest-util "^29.6.1" jest-pnp-resolver@^1.2.2: version "1.2.3" @@ -8622,112 +8332,110 @@ jest-regex-util@^29.4.3: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== -jest-resolve-dependencies@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" - integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== +jest-resolve-dependencies@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.1.tgz#b85b06670f987a62515bbf625d54a499e3d708f5" + integrity sha512-BbFvxLXtcldaFOhNMXmHRWx1nXQO5LoXiKSGQcA1LxxirYceZT6ch8KTE1bK3X31TNG/JbkI7OkS/ABexVahiw== dependencies: jest-regex-util "^29.4.3" - jest-snapshot "^29.5.0" + jest-snapshot "^29.6.1" -jest-resolve@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" - integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== +jest-resolve@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.6.1.tgz#4c3324b993a85e300add2f8609f51b80ddea39ee" + integrity sha512-AeRkyS8g37UyJiP9w3mmI/VXU/q8l/IH52vj/cDAyScDcemRbSBhfX/NMYIGilQgSVwsjxrCHf3XJu4f+lxCMg== dependencies: chalk "^4.0.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.6.1" jest-pnp-resolver "^1.2.2" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-util "^29.6.1" + jest-validate "^29.6.1" resolve "^1.20.0" resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" - integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== - dependencies: - "@jest/console" "^29.5.0" - "@jest/environment" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" +jest-runner@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.6.1.tgz#54557087e7972d345540d622ab5bfc3d8f34688c" + integrity sha512-tw0wb2Q9yhjAQ2w8rHRDxteryyIck7gIzQE4Reu3JuOBpGp96xWgF0nY8MDdejzrLCZKDcp8JlZrBN/EtkQvPQ== + dependencies: + "@jest/console" "^29.6.1" + "@jest/environment" "^29.6.1" + "@jest/test-result" "^29.6.1" + "@jest/transform" "^29.6.1" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" emittery "^0.13.1" graceful-fs "^4.2.9" jest-docblock "^29.4.3" - jest-environment-node "^29.5.0" - jest-haste-map "^29.5.0" - jest-leak-detector "^29.5.0" - jest-message-util "^29.5.0" - jest-resolve "^29.5.0" - jest-runtime "^29.5.0" - jest-util "^29.5.0" - jest-watcher "^29.5.0" - jest-worker "^29.5.0" + jest-environment-node "^29.6.1" + jest-haste-map "^29.6.1" + jest-leak-detector "^29.6.1" + jest-message-util "^29.6.1" + jest-resolve "^29.6.1" + jest-runtime "^29.6.1" + jest-util "^29.6.1" + jest-watcher "^29.6.1" + jest-worker "^29.6.1" p-limit "^3.1.0" source-map-support "0.5.13" -jest-runtime@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" - integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/globals" "^29.5.0" - "@jest/source-map" "^29.4.3" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" +jest-runtime@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.6.1.tgz#8a0fc9274ef277f3d70ba19d238e64334958a0dc" + integrity sha512-D6/AYOA+Lhs5e5il8+5pSLemjtJezUr+8zx+Sn8xlmOux3XOqx4d8l/2udBea8CRPqqrzhsKUsN/gBDE/IcaPQ== + dependencies: + "@jest/environment" "^29.6.1" + "@jest/fake-timers" "^29.6.1" + "@jest/globals" "^29.6.1" + "@jest/source-map" "^29.6.0" + "@jest/test-result" "^29.6.1" + "@jest/transform" "^29.6.1" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" cjs-module-lexer "^1.0.0" collect-v8-coverage "^1.0.0" glob "^7.1.3" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" + jest-haste-map "^29.6.1" + jest-message-util "^29.6.1" + jest-mock "^29.6.1" jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" + jest-resolve "^29.6.1" + jest-snapshot "^29.6.1" + jest-util "^29.6.1" slash "^3.0.0" strip-bom "^4.0.0" -jest-snapshot@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" - integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== +jest-snapshot@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.6.1.tgz#0d083cb7de716d5d5cdbe80d598ed2fbafac0239" + integrity sha512-G4UQE1QQ6OaCgfY+A0uR1W2AY0tGXUPQpoUClhWHq1Xdnx1H6JOrC2nH5lqnOEqaDgbHFgIwZ7bNq24HpB180A== dependencies: "@babel/core" "^7.11.6" "@babel/generator" "^7.7.2" "@babel/plugin-syntax-jsx" "^7.7.2" "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" "@babel/types" "^7.3.3" - "@jest/expect-utils" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/babel__traverse" "^7.0.6" + "@jest/expect-utils" "^29.6.1" + "@jest/transform" "^29.6.1" + "@jest/types" "^29.6.1" "@types/prettier" "^2.1.5" babel-preset-current-node-syntax "^1.0.0" chalk "^4.0.0" - expect "^29.5.0" + expect "^29.6.1" graceful-fs "^4.2.9" - jest-diff "^29.5.0" + jest-diff "^29.6.1" jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-matcher-utils "^29.6.1" + jest-message-util "^29.6.1" + jest-util "^29.6.1" natural-compare "^1.4.0" - pretty-format "^29.5.0" - semver "^7.3.5" + pretty-format "^29.6.1" + semver "^7.5.3" jest-util@^28.1.3: version "28.1.3" @@ -8741,42 +8449,42 @@ jest-util@^28.1.3: graceful-fs "^4.2.9" picomatch "^2.2.3" -jest-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" - integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== +jest-util@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.6.1.tgz#c9e29a87a6edbf1e39e6dee2b4689b8a146679cb" + integrity sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" ci-info "^3.2.0" graceful-fs "^4.2.9" picomatch "^2.2.3" -jest-validate@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" - integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== +jest-validate@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.6.1.tgz#765e684af6e2c86dce950aebefbbcd4546d69f7b" + integrity sha512-r3Ds69/0KCN4vx4sYAbGL1EVpZ7MSS0vLmd3gV78O+NAx3PDQQukRU5hNHPXlyqCgFY8XUk7EuTMLugh0KzahA== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" camelcase "^6.2.0" chalk "^4.0.0" jest-get-type "^29.4.3" leven "^3.1.0" - pretty-format "^29.5.0" + pretty-format "^29.6.1" -jest-watcher@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" - integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== +jest-watcher@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.6.1.tgz#7c0c43ddd52418af134c551c92c9ea31e5ec942e" + integrity sha512-d4wpjWTS7HEZPaaj8m36QiaP856JthRZkrgcIY/7ISoUWPIillrXM23WPboZVLbiwZBt4/qn2Jke84Sla6JhFA== dependencies: - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/test-result" "^29.6.1" + "@jest/types" "^29.6.1" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" emittery "^0.13.1" - jest-util "^29.5.0" + jest-util "^29.6.1" string-length "^4.0.1" jest-worker@^27.4.5: @@ -8788,30 +8496,30 @@ jest-worker@^27.4.5: merge-stream "^2.0.0" supports-color "^8.0.0" -jest-worker@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" - integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== +jest-worker@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.6.1.tgz#64b015f0e985ef3a8ad049b61fe92b3db74a5319" + integrity sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA== dependencies: "@types/node" "*" - jest-util "^29.5.0" + jest-util "^29.6.1" merge-stream "^2.0.0" supports-color "^8.0.0" -jest@29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" - integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== +jest@29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.6.1.tgz#74be1cb719c3abe439f2d94aeb18e6540a5b02ad" + integrity sha512-Nirw5B4nn69rVUZtemCQhwxOBhm0nsp3hmtF4rzCeWD7BkjAXRIji7xWQfnTNbz9g0aVsBX6aZK3n+23LM6uDw== dependencies: - "@jest/core" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/core" "^29.6.1" + "@jest/types" "^29.6.1" import-local "^3.0.2" - jest-cli "^29.5.0" + jest-cli "^29.6.1" jiti@^1.18.2: - version "1.18.2" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.18.2.tgz#80c3ef3d486ebf2450d9335122b32d121f2a83cd" - integrity sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg== + version "1.19.1" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.1.tgz#fa99e4b76a23053e0e7cde098efe1704a14c16f1" + integrity sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg== jpeg-js@^0.4.1, jpeg-js@^0.4.4: version "0.4.4" @@ -8987,12 +8695,14 @@ jsonparse@^1.2.0, jsonparse@^1.3.1: integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" - integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== + version "3.3.4" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz#b896535fed5b867650acce5a9bd4135ffc7b3bf9" + integrity sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw== dependencies: - array-includes "^3.1.5" - object.assign "^4.1.3" + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" jwt-decode@^3.0.0: version "3.1.2" @@ -9081,13 +8791,13 @@ lerna-changelog@2.2.0: progress "^2.0.0" yargs "^17.1.0" -lerna@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/lerna/-/lerna-7.0.1.tgz#056fc44f0e4852a06e943197d3d0d05d59d84559" - integrity sha512-kX279o8N/L2URwoR3Pf4TdIl5P8G443qAFy095ZD+Vu1tOMo8U6xOc221EgHoMuYhdqlT3f0vgn5bMMr/xNYhQ== +lerna@7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/lerna/-/lerna-7.1.1.tgz#6703062e6c4ddefdaf41e8890e9200690924fd71" + integrity sha512-rjivAl3bYu2+lWOi90vy0tYFgwBYPMiNkR/DuEWZC08wle5dsbOZ/SlXeLk9+kzbF89Bt5P6p+qF78A2tJsWPA== dependencies: - "@lerna/child-process" "7.0.1" - "@lerna/create" "7.0.1" + "@lerna/child-process" "7.1.1" + "@lerna/create" "7.1.1" "@npmcli/run-script" "6.0.2" "@nx/devkit" ">=16.1.3 < 17" "@octokit/plugin-enterprise-rest" "6.0.1" @@ -9196,14 +8906,6 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - libnpmaccess@7.0.2: version "7.0.2" resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-7.0.2.tgz#7f056c8c933dd9c8ba771fa6493556b53c5aac52" @@ -9242,9 +8944,9 @@ lighthouse-logger@1.2.0: marky "^1.2.0" lighthouse-logger@^1.0.0, lighthouse-logger@^1.3.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-1.4.1.tgz#a076d7be80cbac16b9fdcd930379b03fff514699" - integrity sha512-VDZF31xGrLS1Zyf79/Xs6J9I08EVgJyz085MAt0G3Sh6nARFSUaM+IkuEZE9xZrLpTtzH1Qt9UzH/7kt9LnhZQ== + version "1.4.2" + resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz#aef90f9e97cd81db367c7634292ee22079280aaa" + integrity sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g== dependencies: debug "^2.6.9" marky "^1.2.2" @@ -9389,6 +9091,13 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" +locate-path@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" + integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + dependencies: + p-locate "^6.0.0" + lodash-es@^4.17.15: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" @@ -9575,10 +9284,10 @@ lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== -lru-cache@^9.1.1: - version "9.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-9.1.1.tgz#c58a93de58630b688de39ad04ef02ef26f1902f1" - integrity sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A== +"lru-cache@^9.1.1 || ^10.0.0": + version "10.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.0.tgz#b9e2a6a72a129d81ab317202d93c7691df727e61" + integrity sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw== lru_map@^0.3.3: version "0.3.3" @@ -9590,7 +9299,7 @@ lunr@2.3.9: resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== -make-dir@3.1.0, make-dir@^3.0.0, make-dir@^3.0.2: +make-dir@3.1.0, make-dir@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== @@ -9612,29 +9321,7 @@ make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" -make-fetch-happen@^10.0.3: - version "10.2.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" - integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== - dependencies: - agentkeepalive "^4.2.1" - cacache "^16.1.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-fetch "^2.0.3" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^0.6.3" - promise-retry "^2.0.1" - socks-proxy-agent "^7.0.0" - ssri "^9.0.0" - -make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.1.0: +make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.0.3, make-fetch-happen@^11.1.1: version "11.1.1" resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f" integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w== @@ -10149,10 +9836,10 @@ minimatch@^8.0.2: dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" - integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== +minimatch@^9.0.0, minimatch@^9.0.1: + version "9.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== dependencies: brace-expansion "^2.0.1" @@ -10195,17 +9882,6 @@ minipass-fetch@^1.3.2: optionalDependencies: encoding "^0.1.12" -minipass-fetch@^2.0.3: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" - integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== - dependencies: - minipass "^3.1.6" - minipass-sized "^1.0.3" - minizlib "^2.1.2" - optionalDependencies: - encoding "^0.1.13" - minipass-fetch@^3.0.0: version "3.0.3" resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.3.tgz#d9df70085609864331b533c960fd4ffaa78d15ce" @@ -10246,7 +9922,7 @@ minipass-sized@^1.0.3: dependencies: minipass "^3.0.0" -minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3, minipass@^3.1.6: +minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: version "3.3.6" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== @@ -10263,10 +9939,10 @@ minipass@^5.0.0: resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== -"minipass@^5.0.0 || ^6.0.0": - version "6.0.1" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.1.tgz#315417c259cb32a1b2fc530c0e7f55c901a60a6d" - integrity sha512-Tenl5QPpgozlOGBiveNYHg2f6y+VpxsXRoIHFUVJuSmTonXRAE6q9b8Mp/O46762/2AlW4ye4Nkyvx0fgWDKbw== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0": + version "7.0.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.2.tgz#58a82b7d81c7010da5bd4b2c0c85ac4b4ec5131e" + integrity sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA== minizlib@^2.0.0, minizlib@^2.1.1, minizlib@^2.1.2: version "2.1.2" @@ -10820,9 +10496,9 @@ node-fetch@2.6.7: whatwg-url "^5.0.0" node-fetch@^2.6.1, node-fetch@^2.6.7: - version "2.6.11" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" - integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== + version "2.6.12" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.12.tgz#02eb8e22074018e3d5a83016649d04df0e348fba" + integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g== dependencies: whatwg-url "^5.0.0" @@ -10832,14 +10508,15 @@ node-gyp-build@^4.3.0: integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== node-gyp@^9.0.0: - version "9.3.1" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.3.1.tgz#1e19f5f290afcc9c46973d68700cbd21a96192e4" - integrity sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg== + version "9.4.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.4.0.tgz#2a7a91c7cba4eccfd95e949369f27c9ba704f369" + integrity sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg== dependencies: env-paths "^2.2.0" + exponential-backoff "^3.1.1" glob "^7.1.4" graceful-fs "^4.2.6" - make-fetch-happen "^10.0.3" + make-fetch-happen "^11.0.3" nopt "^6.0.0" npmlog "^6.0.0" rimraf "^3.0.2" @@ -10863,10 +10540,10 @@ node-polyglot@^2.3.0: string.prototype.trim "^1.2.6" warning "^4.0.3" -node-releases@^2.0.8: - version "2.0.10" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" - integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== +node-releases@^2.0.12: + 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== nopt@^6.0.0: version "6.0.0" @@ -11051,19 +10728,19 @@ nth-check@^2.0.1: boolbase "^1.0.0" nwsapi@^2.2.2: - version "2.2.4" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.4.tgz#fd59d5e904e8e1f03c25a7d5a15cfa16c714a1e5" - integrity sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g== + version "2.2.7" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" + integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== -nx@16.3.2, "nx@>=16.1.3 < 17": - version "16.3.2" - resolved "https://registry.yarnpkg.com/nx/-/nx-16.3.2.tgz#92a2d7ef06d15b3b111b7cf9d35de08de0a22d90" - integrity sha512-fOzCVL7qoCJAcYTJwvJ9j+PSaL791ro4AICWuLxaphZsp2jcLoav4Ev7ONPks2Wlkt8FS9bee3nqQ3w1ya36Og== +nx@16.5.1, "nx@>=16.1.3 < 17": + version "16.5.1" + resolved "https://registry.yarnpkg.com/nx/-/nx-16.5.1.tgz#fc0d19090d8faae5f431f9fec199adf95881150c" + integrity sha512-I3hJRE4hG7JWAtncWwDEO3GVeGPpN0TtM8xH5ArZXyDuVeTth/i3TtJzdDzqXO1HHtIoAQN0xeq4n9cLuMil5g== dependencies: - "@nrwl/tao" "16.3.2" + "@nrwl/tao" "16.5.1" "@parcel/watcher" "2.0.4" "@yarnpkg/lockfile" "^1.1.0" - "@yarnpkg/parsers" "^3.0.0-rc.18" + "@yarnpkg/parsers" "3.0.0-rc.46" "@zkochan/js-yaml" "0.0.6" axios "^1.0.0" chalk "^4.1.0" @@ -11084,7 +10761,7 @@ nx@16.3.2, "nx@>=16.1.3 < 17": minimatch "3.0.5" npm-run-path "^4.0.1" open "^8.4.0" - semver "7.3.4" + semver "7.5.3" string-width "^4.2.3" strong-log-transformer "^2.1.0" tar-stream "~2.2.0" @@ -11095,16 +10772,16 @@ nx@16.3.2, "nx@>=16.1.3 < 17": yargs "^17.6.2" yargs-parser "21.1.1" optionalDependencies: - "@nx/nx-darwin-arm64" "16.3.2" - "@nx/nx-darwin-x64" "16.3.2" - "@nx/nx-freebsd-x64" "16.3.2" - "@nx/nx-linux-arm-gnueabihf" "16.3.2" - "@nx/nx-linux-arm64-gnu" "16.3.2" - "@nx/nx-linux-arm64-musl" "16.3.2" - "@nx/nx-linux-x64-gnu" "16.3.2" - "@nx/nx-linux-x64-musl" "16.3.2" - "@nx/nx-win32-arm64-msvc" "16.3.2" - "@nx/nx-win32-x64-msvc" "16.3.2" + "@nx/nx-darwin-arm64" "16.5.1" + "@nx/nx-darwin-x64" "16.5.1" + "@nx/nx-freebsd-x64" "16.5.1" + "@nx/nx-linux-arm-gnueabihf" "16.5.1" + "@nx/nx-linux-arm64-gnu" "16.5.1" + "@nx/nx-linux-arm64-musl" "16.5.1" + "@nx/nx-linux-x64-gnu" "16.5.1" + "@nx/nx-linux-x64-musl" "16.5.1" + "@nx/nx-win32-arm64-msvc" "16.5.1" + "@nx/nx-win32-x64-msvc" "16.5.1" object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" @@ -11116,20 +10793,12 @@ object-inspect@^1.10.3, object-inspect@^1.12.3, object-inspect@^1.9.0: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== -object-is@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" - integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object.assign@^4.1.3, object.assign@^4.1.4: +object.assign@^4.1.4: version "4.1.4" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== @@ -11268,29 +10937,17 @@ optimism@^0.10.0: dependencies: "@wry/context" "^0.4.0" -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" ora@^5.4.1: version "5.4.1" @@ -11365,6 +11022,13 @@ p-limit@^3.0.2, p-limit@^3.1.0: dependencies: yocto-queue "^0.1.0" +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" @@ -11386,6 +11050,13 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +p-locate@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" + integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + dependencies: + p-limit "^4.0.0" + p-map-series@2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-2.1.0.tgz#7560d4c452d9da0c07e692fdbfe6e2c81a2a91f2" @@ -11643,6 +11314,11 @@ path-exists@^4.0.0: resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== +path-exists@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" + integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== + path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" @@ -11658,13 +11334,13 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-scurry@^1.6.1, path-scurry@^1.7.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.9.1.tgz#838566bb22e38feaf80ecd49ae06cd12acd782ee" - integrity sha512-UgmoiySyjFxP6tscZDgWGEAgsW5ok8W3F5CJDnnH2pozwSTGE6eH7vwTotMwATWA2r5xqdkKdxYPkwlJjAI/3g== +path-scurry@^1.10.1, path-scurry@^1.6.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" + integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== dependencies: - lru-cache "^9.1.1" - minipass "^5.0.0 || ^6.0.0" + lru-cache "^9.1.1 || ^10.0.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" path-to-regexp@0.1.7: version "0.1.7" @@ -11755,17 +11431,24 @@ pinkie@^2.0.0: integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== pirates@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" - integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== -pkg-dir@4.2.0, pkg-dir@^4.1.0, pkg-dir@^4.2.0: +pkg-dir@4.2.0, pkg-dir@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: find-up "^4.0.0" +pkg-dir@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" + integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== + dependencies: + find-up "^6.3.0" + portfinder@^1.0.28: version "1.0.32" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.32.tgz#2fe1b9e58389712429dc2bea5beb2146146c7f81" @@ -12041,10 +11724,10 @@ postcss-value-parser@4.2.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4 resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@8.4.24, postcss@^8.4.14, postcss@^8.4.19, postcss@^8.4.21, postcss@^8.4.24: - version "8.4.24" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df" - integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg== +postcss@8.4.25, postcss@^8.4.14, postcss@^8.4.19, postcss@^8.4.21, postcss@^8.4.24: + version "8.4.25" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.25.tgz#4a133f5e379eda7f61e906c3b1aaa9b81292726f" + integrity sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw== dependencies: nanoid "^3.3.6" picocolors "^1.0.0" @@ -12055,20 +11738,15 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - prepend-http@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== -prettier@2.8.8: - version "2.8.8" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" - integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== +prettier@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.0.tgz#e7b19f691245a21d618c68bc54dc06122f6105ae" + integrity sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g== pretty-format@^28.1.3: version "28.1.3" @@ -12080,12 +11758,12 @@ pretty-format@^28.1.3: ansi-styles "^5.0.0" react-is "^18.0.0" -pretty-format@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" - integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== +pretty-format@^29.6.1: + version "29.6.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.6.1.tgz#ec838c288850b7c4f9090b867c2d4f4edbfb0f3e" + integrity sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog== dependencies: - "@jest/schemas" "^29.4.3" + "@jest/schemas" "^29.6.0" ansi-styles "^5.0.0" react-is "^18.0.0" @@ -12211,10 +11889,10 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw== +punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== punycode@^2.1.0, punycode@^2.1.1: version "2.3.0" @@ -12268,7 +11946,7 @@ qs@6.11.0: dependencies: side-channel "^1.0.4" -qs@^6.4.0: +qs@^6.11.0, qs@^6.4.0: version "6.11.2" resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== @@ -12289,10 +11967,15 @@ query-string@^5.0.1: object-assign "^4.1.0" strict-uri-encode "^1.0.0" -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== +query-string@^7.0.1: + version "7.1.3" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328" + integrity sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg== + dependencies: + decode-uri-component "^0.2.2" + filter-obj "^1.1.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" querystringify@^2.1.1: version "2.2.0" @@ -12605,9 +12288,9 @@ react-style-proptype@^3.2.2: prop-types "^15.5.4" react-textarea-autosize@^8.0.0: - version "8.4.1" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.4.1.tgz#bcfc5462727014b808b14ee916c01e275e8a8335" - integrity sha512-aD2C+qK6QypknC+lCMzteOdIjoMbNlgSFmJjCV+DrfTPwp59i/it9mMNf2HDzvRjQgKAyBDPyLJhcrzElf2U4Q== + version "8.5.2" + resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.5.2.tgz#6421df2b5b50b9ca8c5e96fd31be688ea7fa2f9d" + integrity sha512-uOkyjkEl0ByEK21eCJMHDGBAAd/BoFQBawYK5XItjAmCTeSbjxghd8qnt7nzsLYzidjnoObu6M26xts0YGKsGg== dependencies: "@babel/runtime" "^7.20.13" use-composed-ref "^1.3.0" @@ -12647,9 +12330,9 @@ react-transition-group@^4.0.0, react-transition-group@^4.3.0: prop-types "^15.6.2" react-virtualized-auto-sizer@^1.0.2: - version "1.0.17" - resolved "https://registry.yarnpkg.com/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.17.tgz#4a172762e1edc2bb3e545bdf24663f1007d1daba" - integrity sha512-XtojyZHGo/iYmGkOEL8psTQsr5XI4fd+QxCD16ru00mnJhuvXFXcPLHXj5cKJh/xUttxPCglnpUI8d2u6gUgzw== + version "1.0.20" + resolved "https://registry.yarnpkg.com/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.20.tgz#d9a907253a7c221c52fa57dc775a6ef40c182645" + integrity sha512-OdIyHwj4S4wyhbKHOKM1wLSj/UDXm839Z3Cvfg2a9j+He6yDa6i5p0qQvEiCnyQlGO/HyfSnigQwuxvYalaAXA== react-waypoint@^10.0.0: version "10.3.0" @@ -12705,7 +12388,7 @@ read-package-json-fast@^3.0.0: json-parse-even-better-errors "^3.0.0" npm-normalize-package-bin "^3.0.0" -read-package-json@6.0.4: +read-package-json@6.0.4, read-package-json@^6.0.0: version "6.0.4" resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.4.tgz#90318824ec456c287437ea79595f4c2854708836" integrity sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw== @@ -12715,16 +12398,6 @@ read-package-json@6.0.4: normalize-package-data "^5.0.0" npm-normalize-package-bin "^3.0.0" -read-package-json@^6.0.0: - version "6.0.3" - resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.3.tgz#726116b75e00eac2075240995f05681af4ca7122" - integrity sha512-4QbpReW4kxFgeBQ0vPAqh2y8sXEB3D4t3jsXbJKIhBiF80KT6XRo45reqwtftju5J6ru1ax06A2Gb/wM1qCOEQ== - dependencies: - glob "^10.2.2" - json-parse-even-better-errors "^3.0.0" - normalize-package-data "^5.0.0" - npm-normalize-package-bin "^3.0.0" - read-pkg-up@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" @@ -12921,7 +12594,7 @@ regenerator-transform@^0.15.1: dependencies: "@babel/runtime" "^7.8.4" -regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: +regexp.prototype.flags@^1.4.3: version "1.5.0" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== @@ -13294,15 +12967,16 @@ sanitize-filename@^1.6.1: truncate-utf8-bytes "^1.0.0" saucelabs@^7.1.3: - version "7.2.1" - resolved "https://registry.yarnpkg.com/saucelabs/-/saucelabs-7.2.1.tgz#d9aba144f419d32b20d5c9af81b03e45a27c74c8" - integrity sha512-HKrppXGiOD5B9XMCeg9QtKiyve4duafDv5Jof+7HZ6eRWqRYsDSYxIzMSYszeqvrbYUufd0nVPbhZDlFhe3atg== + version "7.2.2" + resolved "https://registry.yarnpkg.com/saucelabs/-/saucelabs-7.2.2.tgz#8c5765e8fffaf5b607788598adc7fe2e7d005fed" + integrity sha512-rxbazYeKw0RDoXnGCfTeY6or9QM42Nn/LcZyO4Wi11h1d5k7EkoXU58g6FrYZgC7+UtI1t4CZu5Z1a2F/YQzvg== dependencies: change-case "^4.1.2" download "^8.0.0" form-data "^4.0.0" got "^11.8.2" hash.js "^1.1.7" + query-string "^7.0.1" tunnel "^0.0.6" yargs "^17.2.1" @@ -13326,19 +13000,19 @@ scheduler@^0.19.1: loose-envify "^1.1.0" object-assign "^4.1.1" -schema-utils@^3.1.1, schema-utils@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.2.tgz#36c10abca6f7577aeae136c804b0c741edeadc99" - integrity sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg== +schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== dependencies: "@types/json-schema" "^7.0.8" ajv "^6.12.5" ajv-keywords "^3.5.2" schema-utils@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.1.tgz#eb2d042df8b01f4b5c276a2dfd41ba0faab72e8d" - integrity sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ== + version "4.2.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" + integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== dependencies: "@types/json-schema" "^7.0.9" ajv "^8.9.0" @@ -13380,19 +13054,19 @@ semaphore@^1.0.5, semaphore@^1.1.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@7.3.4: - version "7.3.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" - integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== +semver@7.5.3: + version "7.5.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e" + integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ== dependencies: lru-cache "^6.0.0" -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: +semver@^6.0.0, semver@^6.3.0: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.0.0, semver@^7.1.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.1: +semver@^7.0.0, semver@^7.1.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.1, semver@^7.5.3: 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== @@ -13517,18 +13191,18 @@ signal-exit@^4.0.1: integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== sigstore@^1.3.0, sigstore@^1.4.0: - version "1.5.2" - resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.5.2.tgz#8d4c2a549341211cb08c687999843edc48c1a94c" - integrity sha512-X95v6xAAooVpn7PaB94TDmFeSO5SBfCtB1R23fvzr36WTfjtkiiyOeei979nbTjc8nzh6FSLeltQZuODsm1EjQ== + version "1.7.0" + resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.7.0.tgz#9186e6c8ce1ab0cba5d97b414212d40f0a01564e" + integrity sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q== dependencies: "@sigstore/protobuf-specs" "^0.1.0" + "@sigstore/tuf" "^1.0.1" make-fetch-happen "^11.0.1" - tuf-js "^1.1.3" simple-git@^3.0.0: - version "3.18.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.18.0.tgz#2e25adbbc1e3df5ee97c0f1b468ddadf3f0f9adf" - integrity sha512-Yt0GJ5aYrpPci3JyrYcsPz8Xc05Hi4JPSOb+Sgn/BmPX35fn/6Fp9Mef8eMBCrL2siY5w4j49TA5Q+bxPpri1Q== + version "3.19.1" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.19.1.tgz#ff9c021961a3d876a1b115b1893bed9a28855d30" + integrity sha512-Ck+rcjVaE1HotraRAS8u/+xgTvToTuoMkT9/l9lvuP5jftwnYUp6DwuJzsKErHgfyRk8IB8pqGHWEbM3tLgV1w== dependencies: "@kwsites/file-exists" "^1.1.1" "@kwsites/promise-deferred" "^1.1.1" @@ -13807,6 +13481,11 @@ speedline-core@^1.4.3: image-ssim "^0.2.0" jpeg-js "^0.4.1" +split-on-first@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== + split2@^3.2.2: version "3.2.2" resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" @@ -13845,7 +13524,7 @@ ssri@^8.0.0, ssri@^8.0.1: dependencies: minipass "^3.1.1" -ssri@^9.0.0, ssri@^9.0.1: +ssri@^9.0.1: version "9.0.1" resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== @@ -13874,13 +13553,6 @@ statuses@2.0.1: resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== -stop-iteration-iterator@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" - integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== - dependencies: - internal-slot "^1.0.4" - stream-buffers@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-3.0.2.tgz#5249005a8d5c2d00b3a32e6e0a6ea209dc4f3521" @@ -13891,6 +13563,11 @@ strict-uri-encode@^1.0.0: resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ== +strict-uri-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" + integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== + string-length@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" @@ -14027,10 +13704,10 @@ strip-ansi@^5.1.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" - integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== +strip-ansi@^7.0.1, strip-ansi@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== dependencies: ansi-regex "^6.0.1" @@ -14143,9 +13820,9 @@ stylelint-config-recommended@6.0.0: integrity sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw== stylelint-less@^1.0.3: - version "1.0.6" - resolved "https://registry.yarnpkg.com/stylelint-less/-/stylelint-less-1.0.6.tgz#8397d9320cb89638233ca7f67268f2948b3f0964" - integrity sha512-lL+4HFP8V6WkXuNGXRAirnW83KQYEE6LpBsOCibka0bFHUh2mIcJXwcc4uQu1c9UUopHr8vjIH2YElW61lQBXg== + version "1.0.7" + resolved "https://registry.yarnpkg.com/stylelint-less/-/stylelint-less-1.0.7.tgz#6aed3c09df9af3dec8e72ee0c499f3dcacf23e53" + integrity sha512-iI7FzgUK+cg23miQe6sPU6X799m6xCT5jc1PvA8G5exmNow39qNzRUMNxsdxYUXU4q3mW7ypUb8g97ykhJTEDA== dependencies: postcss "^8.4.14" postcss-value-parser "4.2.0" @@ -14425,7 +14102,7 @@ temp-dir@1.0.0: resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== -terser-webpack-plugin@5.3.9: +terser-webpack-plugin@5.3.9, 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== @@ -14436,24 +14113,13 @@ terser-webpack-plugin@5.3.9: serialize-javascript "^6.0.1" terser "^5.16.8" -terser-webpack-plugin@^5.3.7: - version "5.3.8" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz#415e03d2508f7de63d59eca85c5d102838f06610" - integrity sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg== - dependencies: - "@jridgewell/trace-mapping" "^0.3.17" - jest-worker "^27.4.5" - schema-utils "^3.1.1" - serialize-javascript "^6.0.1" - terser "^5.16.8" - terser@^5.15.1, terser@^5.16.8: - version "5.17.4" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.17.4.tgz#b0c2d94897dfeba43213ed5f90ed117270a2c696" - integrity sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw== + version "5.19.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.19.0.tgz#7b3137b01226bdd179978207b9c8148754a6da9c" + integrity sha512-JpcpGOQLOXm2jsomozdMDpd5f8ZHh1rR48OFgWUH3QsyZcfPgv2qDCYbcDEAYNd4OZRj2bWYKpwdll/udZCk/Q== dependencies: - "@jridgewell/source-map" "^0.3.2" - acorn "^8.5.0" + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" commander "^2.20.0" source-map-support "~0.5.20" @@ -14656,9 +14322,9 @@ trim@0.0.1: integrity sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== triple-beam@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" - integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== + version "1.4.1" + resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.4.1.tgz#6fde70271dc6e5d73ca0c3b24e2d92afb7441984" + integrity sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg== trough@^1.0.0: version "1.0.5" @@ -14704,18 +14370,18 @@ tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.3: integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" - integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + version "2.6.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" + integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== -tuf-js@^1.1.3: - version "1.1.6" - resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.6.tgz#ad3e7a20237b83b51c2a8f9d1ddf093279a10fc2" - integrity sha512-CXwFVIsXGbVY4vFiWF7TJKWmlKJAT8TWkH4RmiohJRcDJInix++F0dznDmoVbtJNzZ8yLprKUG4YrDIhv3nBMg== +tuf-js@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.7.tgz#21b7ae92a9373015be77dfe0cb282a80ec3bbe43" + integrity sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg== dependencies: "@tufjs/models" "1.0.4" debug "^4.3.4" - make-fetch-happen "^11.1.0" + make-fetch-happen "^11.1.1" tunnel@^0.0.6: version "0.0.6" @@ -14729,13 +14395,6 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - type-detect@4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" @@ -14811,9 +14470,9 @@ typedarray@^0.0.6: integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== "typescript@>=3 < 6": - version "5.1.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" - integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== + version "5.1.6" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274" + integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== ua-parser-js@^1.0.1: version "1.0.35" @@ -14914,13 +14573,6 @@ unique-filename@^1.1.1: dependencies: unique-slug "^2.0.0" -unique-filename@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" - integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== - dependencies: - unique-slug "^3.0.0" - unique-filename@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" @@ -14935,13 +14587,6 @@ unique-slug@^2.0.0: dependencies: imurmurhash "^0.1.4" -unique-slug@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" - integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== - dependencies: - imurmurhash "^0.1.4" - unique-slug@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" @@ -15014,12 +14659,12 @@ unist-util-stringify-position@^2.0.0: dependencies: "@types/unist" "^2.0.2" -unist-util-stringify-position@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d" - integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg== +unist-util-stringify-position@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2" + integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== dependencies: - "@types/unist" "^2.0.0" + "@types/unist" "^3.0.0" unist-util-visit-parents@^2.0.0, unist-util-visit-parents@^2.0.1: version "2.1.2" @@ -15077,7 +14722,7 @@ upath@2.0.1: resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== -update-browserslist-db@^1.0.10: +update-browserslist-db@^1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== @@ -15086,14 +14731,14 @@ update-browserslist-db@^1.0.10: picocolors "^1.0.0" uploadcare-widget-tab-effects@^1.4.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.6.0.tgz#6de4664b0b2fa47100b5a3e0afc1d41b35b8f429" - integrity sha512-RoWxeZnk41qm8Mo19R8Zvshsuqetc4y+gFtxA89x+noLCSFItuviGZJBf7rcX3ocwn+aFNKbXp44dlaVDoYRIA== + version "1.7.2" + resolved "https://registry.yarnpkg.com/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.7.2.tgz#a4a766143a586087345b28aa971edac87f98e3f4" + integrity sha512-56IxhR5TueGRv9ZUReAZTycV4iWBZ421L1KlMGpK7kCJs/vyQMDY+iQTr3WLtEUmq2Jl9v6H6EA471s3jjpGYQ== uploadcare-widget@^3.7.0: - version "3.21.0" - resolved "https://registry.yarnpkg.com/uploadcare-widget/-/uploadcare-widget-3.21.0.tgz#db67e7f97d257c3ab8da65328121502f8ab6b1f8" - integrity sha512-9C/WLwK3Anx+76rDzg/pe1vBv41j4HapgxfbyVLS+3oolB3bd9NvURAkvfyEif8QUnt7MwK2Ubw3f7UP/a3v9w== + version "3.21.2" + resolved "https://registry.yarnpkg.com/uploadcare-widget/-/uploadcare-widget-3.21.2.tgz#50c1fb46209dcf21c55b4ebdb9c6c967f80dac2d" + integrity sha512-vJ5lS9dKQFMgU9pg+SehcA+iGiGLnhtlok8rY3qVZN9gSo35m4mtt8kRwJuyh/SxJr3g/5wy12sLYeA/qLVoJA== dependencies: escape-html "^1.0.3" jquery "^3.6.0" @@ -15145,12 +14790,12 @@ url-to-options@^1.0.1: integrity sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A== url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - integrity sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ== + version "0.11.1" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.1.tgz#26f90f615427eca1b9f4d6a28288c147e2302a32" + integrity sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA== dependencies: - punycode "1.3.2" - querystring "0.2.0" + punycode "^1.4.1" + qs "^6.11.0" use-composed-ref@^1.3.0: version "1.3.0" @@ -15256,12 +14901,12 @@ vfile-location@^2.0.0: integrity sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA== vfile-message@*: - version "3.1.4" - resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.4.tgz#15a50816ae7d7c2d1fa87090a7f9f96612b59dea" - integrity sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw== + version "4.0.2" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.2.tgz#c883c9f677c72c166362fd635f21fc165a7d1181" + integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw== dependencies: - "@types/unist" "^2.0.0" - unist-util-stringify-position "^3.0.0" + "@types/unist" "^3.0.0" + unist-util-stringify-position "^4.0.0" vfile-message@^1.0.0: version "1.1.1" @@ -15439,9 +15084,9 @@ webpack-cli@5.1.4: webpack-merge "^5.7.3" webpack-merge@^5.7.3: - version "5.8.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" - integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== + version "5.9.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" + integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== dependencies: clone-deep "^4.0.1" wildcard "^2.0.0" @@ -15451,10 +15096,10 @@ webpack-sources@^3.2.3: resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== -webpack@5.86.0: - version "5.86.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.86.0.tgz#b0eb81794b62aee0b7e7eb8c5073495217d9fc6d" - integrity sha512-3BOvworZ8SO/D4GVP+GoRC3fVeg5MO4vzmq8TJJEkdmopxyazGDxN8ClqN12uzrZW9Tv8EED8v5VSb6Sqyi0pg== +webpack@5.88.1: + version "5.88.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.1.tgz#21eba01e81bd5edff1968aea726e2fbfd557d3f8" + integrity sha512-FROX3TxQnC/ox4N+3xQoWZzvGXSuscxR32rbzjpXgEzWudJFEJBpdlkkob2ylrv5yzzufD1zph1OoFsLtm6stQ== dependencies: "@types/eslint-scope" "^3.7.3" "@types/estree" "^1.0.0" @@ -15465,7 +15110,7 @@ webpack@5.86.0: acorn-import-assertions "^1.9.0" browserslist "^4.14.5" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.14.1" + enhanced-resolve "^5.15.0" es-module-lexer "^1.2.1" eslint-scope "5.1.1" events "^3.2.0" @@ -15475,7 +15120,7 @@ webpack@5.86.0: loader-runner "^4.2.0" mime-types "^2.1.27" neo-async "^2.6.2" - schema-utils "^3.1.2" + schema-utils "^3.2.0" tapable "^2.1.1" terser-webpack-plugin "^5.3.7" watchpack "^2.4.0" @@ -15535,25 +15180,15 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" -which-collection@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" - integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== - dependencies: - is-map "^2.0.1" - is-set "^2.0.1" - is-weakmap "^2.0.1" - is-weakset "^2.0.1" - which-module@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== + version "1.1.10" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.10.tgz#74baa2789991905c2076abb317103b866c64e69e" + integrity sha512-uxoA5vLUfRPdjCuJ1h5LlYdmTLbYfums398v3WLkM+i/Wltl2/XyZpQWKbN++ck5L64SR/grOHqtXCUKmlZPNA== dependencies: available-typed-arrays "^1.0.5" call-bind "^1.0.2" @@ -15605,9 +15240,9 @@ winston-transport@^4.5.0: triple-beam "^1.3.0" winston@^3.3.3: - version "3.8.2" - resolved "https://registry.yarnpkg.com/winston/-/winston-3.8.2.tgz#56e16b34022eb4cff2638196d9646d7430fdad50" - integrity sha512-MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew== + version "3.10.0" + resolved "https://registry.yarnpkg.com/winston/-/winston-3.10.0.tgz#d033cb7bd3ced026fed13bf9d92c55b903116803" + integrity sha512-nT6SIDaE9B7ZRO0u3UvdrimG0HkB7dSTAgInQnNR2SOPJ4bvq5q79+pXLftKmP52lJGW15+H5MCK0nM9D3KB/g== dependencies: "@colors/colors" "1.5.0" "@dabh/diagnostics" "^2.0.2" @@ -15621,11 +15256,6 @@ winston@^3.3.3: triple-beam "^1.3.0" winston-transport "^4.5.0" -word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - wordwrap@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" @@ -15918,6 +15548,11 @@ yocto-queue@^0.1.0: resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== +yocto-queue@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== + zen-observable-ts@^0.8.21: version "0.8.21" resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz#85d0031fbbde1eba3cd07d3ba90da241215f421d"