From d145b8689c5658671a496ffee070b428438effc3 Mon Sep 17 00:00:00 2001 From: Ben Holmes Date: Tue, 31 May 2022 12:08:09 -0400 Subject: [PATCH] Chore: remove rss helper from `getStaticPaths` (#3462) * chore: remove rss() with helpful error message * docs: add context on "getStaticPaths" removal * chore: changeset * deps: remove fast-xml-parser from core! * chore: update lockfile --- .changeset/modern-readers-ring.md | 5 + packages/astro/package.json | 1 - packages/astro/src/@types/astro.ts | 51 +- packages/astro/src/core/build/page-data.ts | 27 - packages/astro/src/core/render/dev/index.ts | 2 +- packages/astro/src/core/render/pretty-feed.ts | 102 ---- packages/astro/src/core/render/route-cache.ts | 14 +- packages/astro/src/core/render/rss.ts | 134 ----- pnpm-lock.yaml | 551 ++++++++++-------- 9 files changed, 323 insertions(+), 564 deletions(-) create mode 100644 .changeset/modern-readers-ring.md delete mode 100644 packages/astro/src/core/render/pretty-feed.ts delete mode 100644 packages/astro/src/core/render/rss.ts diff --git a/.changeset/modern-readers-ring.md b/.changeset/modern-readers-ring.md new file mode 100644 index 000000000..e5cbd8ac0 --- /dev/null +++ b/.changeset/modern-readers-ring.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Remove the rss() helper from getStaticPaths. Using rss() now prints an error pointing to the new @astrojs/rss documentation. diff --git a/packages/astro/package.json b/packages/astro/package.json index 4dbe4418c..f52256356 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -101,7 +101,6 @@ "estree-walker": "^3.0.1", "execa": "^6.1.0", "fast-glob": "^3.2.11", - "fast-xml-parser": "^4.0.7", "gray-matter": "^4.0.3", "html-entities": "^2.3.3", "html-escaper": "^3.0.3", diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index c46027751..14dc852d3 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -775,7 +775,11 @@ export type GetHydrateCallback = () => Promise< * Docs: https://docs.astro.build/reference/api-reference/#getstaticpaths */ export interface GetStaticPathsOptions { paginate: PaginateFunction; - rss: (...args: any[]) => any; + /** + * The RSS helper has been removed from getStaticPaths! Try the new @astrojs/rss package instead. + * @see https://docs.astro.build/en/guides/rss/ + */ + rss(): never; } export type GetStaticPathsItem = { params: Params; props?: Props }; @@ -986,51 +990,6 @@ export type SerializedRouteData = Omit & { export type RuntimeMode = 'development' | 'production'; -/** - * RSS - * Docs: https://docs.astro.build/reference/api-reference/#rss - */ -export interface RSS { - /** (required) Title of the RSS Feed */ - title: string; - /** (required) Description of the RSS Feed */ - description: string; - /** Specify arbitrary metadata on opening tag */ - xmlns?: Record; - /** - * If false (default), does not include XSL stylesheet. - * If true, automatically includes 'pretty-feed-v3'. - * If a string value, specifies a local custom XSL stylesheet, for example '/custom-feed.xsl'. - */ - stylesheet?: string | boolean; - /** Specify custom data in opening of file */ - customData?: string; - /** - * Specify where the RSS xml file should be written. - * Relative to final build directory. Example: '/foo/bar.xml' - * Defaults to '/rss.xml'. - */ - dest?: string; - /** Return data about each item */ - items: { - /** (required) Title of item */ - title: string; - /** (required) Link to item */ - link: string; - /** Publication date of item */ - pubDate?: Date; - /** Item description */ - description?: string; - /** Append some other XML-valid data to this item */ - customData?: string; - }[]; -} - -export type RSSFunction = (args: RSS) => RSSResult; - -export type FeedResult = { url: string; content?: string }; -export type RSSResult = { xml: FeedResult; xsl?: FeedResult }; - export type SSRError = Error & vite.ErrorPayload['err']; export interface SSRElement { diff --git a/packages/astro/src/core/build/page-data.ts b/packages/astro/src/core/build/page-data.ts index c40ee40da..b634ddcff 100644 --- a/packages/astro/src/core/build/page-data.ts +++ b/packages/astro/src/core/build/page-data.ts @@ -8,7 +8,6 @@ import { fileURLToPath } from 'url'; import * as colors from 'kleur/colors'; import { debug } from '../logger/core.js'; import { preload as ssrPreload } from '../render/dev/index.js'; -import { generateRssFunction } from '../render/rss.js'; import { callGetStaticPaths, RouteCache, RouteCacheEntry } from '../render/route-cache.js'; import { removeTrailingForwardSlash } from '../path.js'; import { isBuildingToSSR } from '../util.js'; @@ -114,32 +113,6 @@ export async function collectPagesData( debug('build', `├── ${colors.bold(colors.red('✗'))} ${route.component}`); throw err; }); - const rssFn = generateRssFunction(astroConfig.site, route); - for (const rssCallArg of result.rss) { - const rssResult = rssFn(rssCallArg); - if (rssResult.xml) { - const { url, content } = rssResult.xml; - if (content) { - const rssFile = new URL(url.replace(/^\/?/, './'), astroConfig.outDir); - if (assets[fileURLToPath(rssFile)]) { - throw new Error( - `[getStaticPaths] RSS feed ${url} already exists.\nUse \`rss(data, {url: '...'})\` to choose a unique, custom URL. (${route.component})` - ); - } - assets[fileURLToPath(rssFile)] = content; - } - } - if (rssResult.xsl?.content) { - const { url, content } = rssResult.xsl; - const stylesheetFile = new URL(url.replace(/^\/?/, './'), astroConfig.outDir); - if (assets[fileURLToPath(stylesheetFile)]) { - throw new Error( - `[getStaticPaths] RSS feed stylesheet ${url} already exists.\nUse \`rss(data, {stylesheet: '...'})\` to choose a unique, custom URL. (${route.component})` - ); - } - assets[fileURLToPath(stylesheetFile)] = content; - } - } const finalPaths = result.staticPaths .map((staticPath) => staticPath.params && route.generate(staticPath.params)) .filter((staticPath) => { diff --git a/packages/astro/src/core/render/dev/index.ts b/packages/astro/src/core/render/dev/index.ts index 1522086f2..ddde50291 100644 --- a/packages/astro/src/core/render/dev/index.ts +++ b/packages/astro/src/core/render/dev/index.ts @@ -28,7 +28,7 @@ export interface SSROptions { logging: LogOptions; /** "development" or "production" */ mode: RuntimeMode; - /** production website, needed for some RSS functions */ + /** production website */ origin: string; /** the web request (needed for dynamic routes) */ pathname: string; diff --git a/packages/astro/src/core/render/pretty-feed.ts b/packages/astro/src/core/render/pretty-feed.ts deleted file mode 100644 index ed3168fec..000000000 --- a/packages/astro/src/core/render/pretty-feed.ts +++ /dev/null @@ -1,102 +0,0 @@ -// Vendored from https://github.com/genmon/aboutfeeds/blob/main/tools/pretty-feed-v3.xsl -/** Basic stylesheet for RSS feeds */ -export const PRETTY_FEED_V3 = ` - - - - - - - <xsl:value-of select="/rss/channel/title"/> Web Feed - - - - - - -
-
-

- - - - - - - - - - - - - - - - - - - Web Feed Preview -

-

-

- - - - - Visit Website → - -
-

Recent Items

- -
-

- - - - - - -

- - Published: - -
-
-
- - -
-
`; diff --git a/packages/astro/src/core/render/route-cache.ts b/packages/astro/src/core/render/route-cache.ts index 762128555..3deed88bd 100644 --- a/packages/astro/src/core/render/route-cache.ts +++ b/packages/astro/src/core/render/route-cache.ts @@ -5,7 +5,6 @@ import type { GetStaticPathsResultKeyed, Params, RouteData, - RSS, } from '../../@types/astro'; import { LogOptions, warn, debug } from '../logger/core.js'; @@ -16,8 +15,6 @@ import { validateGetStaticPathsResult, } from '../routing/validation.js'; -type RSSFn = (...args: any[]) => any; - interface CallGetStaticPathsOptions { mod: ComponentInstance; route: RouteData; @@ -34,18 +31,15 @@ export async function callGetStaticPaths({ ssr, }: CallGetStaticPathsOptions): Promise { validateGetStaticPathsModule(mod, { ssr }); - const resultInProgress = { - rss: [] as RSS[], - }; let staticPaths: GetStaticPathsResult = []; if (mod.getStaticPaths) { staticPaths = ( await mod.getStaticPaths({ paginate: generatePaginateFunction(route), - rss: (data) => { - resultInProgress.rss.push(data); - }, + rss() { + throw new Error('The RSS helper has been removed from getStaticPaths! Try the new @astrojs/rss package instead. See https://docs.astro.build/en/guides/rss/') + } }) ).flat(); } @@ -61,14 +55,12 @@ export async function callGetStaticPaths({ validateGetStaticPathsResult(keyedStaticPaths, logging); } return { - rss: resultInProgress.rss, staticPaths: keyedStaticPaths, }; } export interface RouteCacheEntry { staticPaths: GetStaticPathsResultKeyed; - rss: RSS[]; } /** diff --git a/packages/astro/src/core/render/rss.ts b/packages/astro/src/core/render/rss.ts deleted file mode 100644 index 38a10604f..000000000 --- a/packages/astro/src/core/render/rss.ts +++ /dev/null @@ -1,134 +0,0 @@ -import type { RSSFunction, RSS, RSSResult, RouteData } from '../../@types/astro'; - -import { XMLValidator } from 'fast-xml-parser'; -import { PRETTY_FEED_V3 } from './pretty-feed.js'; -import { createCanonicalURL, isValidURL } from './util.js'; - -/** Validates getStaticPaths.rss */ -export function validateRSS(args: GenerateRSSArgs): void { - const { rssData, srcFile } = args; - if (!rssData.title) throw new Error(`[${srcFile}] rss.title required`); - if (!rssData.description) throw new Error(`[${srcFile}] rss.description required`); - if ((rssData as any).item) - throw new Error(`[${srcFile}] \`item: Function\` should be \`items: Item[]\``); - if (!Array.isArray(rssData.items)) - throw new Error(`[${srcFile}] rss.items should be an array of items`); -} - -type GenerateRSSArgs = { site: string; rssData: RSS; srcFile: string }; - -/** Generate RSS 2.0 feed */ -export function generateRSS(args: GenerateRSSArgs): string { - validateRSS(args); - const { srcFile, rssData, site } = args; - if ((rssData as any).item) - throw new Error( - `[${srcFile}] rss() \`item()\` function was deprecated, and is now \`items: object[]\`.` - ); - - let xml = ``; - if (typeof rssData.stylesheet === 'string') { - xml += ``; - } - xml += ``; - xml += ``; - - // title, description, customData - xml += `<![CDATA[${rssData.title}]]>`; - xml += ``; - xml += `${createCanonicalURL(site).href}`; - if (typeof rssData.customData === 'string') xml += rssData.customData; - // items - for (const result of rssData.items) { - xml += ``; - // validate - if (typeof result !== 'object') - throw new Error( - `[${srcFile}] rss.items expected an object. got: "${JSON.stringify(result)}"` - ); - if (!result.title) - throw new Error( - `[${srcFile}] rss.items required "title" property is missing. got: "${JSON.stringify( - result - )}"` - ); - if (!result.link) - throw new Error( - `[${srcFile}] rss.items required "link" property is missing. got: "${JSON.stringify( - result - )}"` - ); - xml += `<![CDATA[${result.title}]]>`; - // If the item's link is already a valid URL, don't mess with it. - const itemLink = isValidURL(result.link) - ? result.link - : createCanonicalURL(result.link, site).href; - xml += `${itemLink}`; - xml += `${itemLink}`; - if (result.description) xml += ``; - if (result.pubDate) { - // note: this should be a Date, but if user provided a string or number, we can work with that, too. - if (typeof result.pubDate === 'number' || typeof result.pubDate === 'string') { - result.pubDate = new Date(result.pubDate); - } else if (result.pubDate instanceof Date === false) { - throw new Error('[${filename}] rss.item().pubDate must be a Date'); - } - xml += `${result.pubDate.toUTCString()}`; - } - if (typeof result.customData === 'string') xml += result.customData; - xml += ``; - } - - xml += ``; - - // validate user’s inputs to see if it’s valid XML - const isValid = XMLValidator.validate(xml); - if (isValid !== true) { - // If valid XML, isValid will be `true`. Otherwise, this will be an error object. Throw. - throw new Error(isValid as any); - } - - return xml; -} - -export function generateRSSStylesheet() { - return PRETTY_FEED_V3; -} - -/** Generated function to be run */ -export function generateRssFunction(site: string | undefined, route: RouteData): RSSFunction { - return function rssUtility(args: RSS): RSSResult { - if (!site) { - throw new Error( - `[${route.component}] rss() tried to generate RSS but "site" missing in astro.config.mjs` - ); - } - let result: RSSResult = {} as any; - const { dest, ...rssData } = args; - const feedURL = dest || '/rss.xml'; - if (rssData.stylesheet === true) { - rssData.stylesheet = feedURL.replace(/\.xml$/, '.xsl'); - result.xsl = { - url: rssData.stylesheet, - content: generateRSSStylesheet(), - }; - } else if (typeof rssData.stylesheet === 'string') { - result.xsl = { - url: rssData.stylesheet, - }; - } - result.xml = { - url: feedURL, - content: generateRSS({ rssData, site, srcFile: route.component }), - }; - return result; - }; -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cccf27649..0710ef43b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -30,7 +30,7 @@ importers: '@octokit/action': 3.18.1 '@typescript-eslint/eslint-plugin': 5.26.0_hzuh7e2up357pvq3mkokjvu2lq '@typescript-eslint/parser': 5.26.0_xztl6dhthcahlo6akmb2bmjmle - del: 6.1.0 + del: 6.1.1 esbuild: 0.14.39 eslint: 8.16.0 eslint-config-prettier: 8.5.0_eslint@8.16.0 @@ -138,7 +138,7 @@ importers: lit: ^2.2.4 dependencies: '@webcomponents/template-shadowroot': 0.1.0 - lit: 2.2.4 + lit: 2.2.5 devDependencies: '@astrojs/lit': link:../../packages/integrations/lit astro: link:../../packages/astro @@ -162,11 +162,11 @@ importers: vue: ^3.2.36 dependencies: '@webcomponents/template-shadowroot': 0.1.0 - lit: 2.2.4 + lit: 2.2.5 preact: 10.7.2 react: 18.1.0 react-dom: 18.1.0_react@18.1.0 - solid-js: 1.4.2 + solid-js: 1.4.3 svelte: 3.48.0 vue: 3.2.36 devDependencies: @@ -212,7 +212,7 @@ importers: astro: ^1.0.0-beta.37 solid-js: ^1.4.2 dependencies: - solid-js: 1.4.2 + solid-js: 1.4.3 devDependencies: '@astrojs/solid-js': link:../../packages/integrations/solid astro: link:../../packages/astro @@ -259,7 +259,7 @@ importers: vue: ^3.2.36 dependencies: '@webcomponents/template-shadowroot': 0.1.0 - lit: 2.2.4 + lit: 2.2.5 preact: 10.7.2 react: 18.1.0 react-dom: 18.1.0_react@18.1.0 @@ -274,7 +274,7 @@ importers: '@astrojs/tailwind': link:../../packages/integrations/tailwind '@astrojs/turbolinks': link:../../packages/integrations/turbolinks astro: link:../../packages/astro - solid-js: 1.4.2 + solid-js: 1.4.3 examples/minimal: specifiers: @@ -508,7 +508,6 @@ importers: estree-walker: ^3.0.1 execa: ^6.1.0 fast-glob: ^3.2.11 - fast-xml-parser: ^4.0.7 gray-matter: ^4.0.3 html-entities: ^2.3.3 html-escaper: ^3.0.3 @@ -569,7 +568,6 @@ importers: estree-walker: 3.0.1 execa: 6.1.0 fast-glob: 3.2.11 - fast-xml-parser: 4.0.7 gray-matter: 4.0.3 html-entities: 2.3.3 html-escaper: 3.0.3 @@ -677,7 +675,7 @@ importers: '@astrojs/lit': link:../../../../integrations/lit '@webcomponents/template-shadowroot': 0.1.0 astro: link:../../.. - lit: 2.2.4 + lit: 2.2.5 packages/astro/e2e/fixtures/multiple-frameworks: specifiers: @@ -698,11 +696,11 @@ importers: vue: ^3.2.36 dependencies: '@webcomponents/template-shadowroot': 0.1.0 - lit: 2.2.4 + lit: 2.2.5 preact: 10.7.2 react: 18.1.0 react-dom: 18.1.0_react@18.1.0 - solid-js: 1.4.2 + solid-js: 1.4.3 svelte: 3.48.0 vue: 3.2.36 devDependencies: @@ -751,7 +749,7 @@ importers: '@astrojs/solid-js': link:../../../../integrations/solid astro: link:../../.. devDependencies: - solid-js: 1.4.2 + solid-js: 1.4.3 packages/astro/e2e/fixtures/svelte-component: specifiers: @@ -980,7 +978,7 @@ importers: dependencies: '@astrojs/preact': link:../../../../integrations/preact astro: link:../../.. - hast-util-select: 5.0.1 + hast-util-select: 5.0.2 rehype-slug: 5.0.1 packages/astro/test/fixtures/astro-markdown-shiki/langs: @@ -1494,7 +1492,7 @@ importers: astro-scripts: workspace:* cheerio: ^1.0.0-rc.11 dependencies: - '@lit-labs/ssr': 2.1.0 + '@lit-labs/ssr': 2.2.0 devDependencies: astro: link:../../astro astro-scripts: link:../../../scripts @@ -1613,7 +1611,7 @@ importers: devDependencies: astro: link:../../astro astro-scripts: link:../../../scripts - solid-js: 1.4.2 + solid-js: 1.4.3 packages/integrations/svelte: specifiers: @@ -1625,7 +1623,7 @@ importers: svelte-preprocess: ^4.10.6 vite: ^2.9.9 dependencies: - '@sveltejs/vite-plugin-svelte': 1.0.0-next.44_svelte@3.48.0+vite@2.9.9 + '@sveltejs/vite-plugin-svelte': 1.0.0-next.45_svelte@3.48.0+vite@2.9.9 postcss-load-config: 3.1.4 svelte-preprocess: 4.10.6_xxnnhi7j46bwl35r5gwl6d4d6q vite: 2.9.9 @@ -2052,8 +2050,8 @@ packages: resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==} dev: true - /@apideck/better-ajv-errors/0.3.3_ajv@8.11.0: - resolution: {integrity: sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==} + /@apideck/better-ajv-errors/0.3.4_ajv@8.11.0: + resolution: {integrity: sha512-Ic2d8ZT6HJiSikGVQvSklaFyw1OUv4g8sDOxa0PXSlbmN/3gL5IO1WYY9DOwTDqOFmjWoqG1yaaKnPDqYCE9KA==} engines: {node: '>=10'} peerDependencies: ajv: '>=8' @@ -2138,6 +2136,15 @@ packages: '@jridgewell/gen-mapping': 0.3.1 jsesc: 2.5.2 + /@babel/generator/7.18.2: + resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.2 + '@jridgewell/gen-mapping': 0.3.1 + jsesc: 2.5.2 + dev: true + /@babel/helper-annotate-as-pure/7.16.7: resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} engines: {node: '>=6.9.0'} @@ -2149,7 +2156,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.16.7 - '@babel/types': 7.18.0 + '@babel/types': 7.18.2 dev: true /@babel/helper-compilation-targets/7.17.10_@babel+core@7.18.0: @@ -2167,6 +2174,22 @@ packages: browserslist: 4.20.3 semver: 6.3.0 + /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.0: + resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + peerDependenciesMeta: + '@babel/core': + optional: true + dependencies: + '@babel/compat-data': 7.17.10 + '@babel/core': 7.18.0 + '@babel/helper-validator-option': 7.16.7 + browserslist: 4.20.3 + semver: 6.3.0 + dev: true + /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.0: resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} engines: {node: '>=6.9.0'} @@ -2182,7 +2205,7 @@ packages: '@babel/helper-function-name': 7.17.9 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 transitivePeerDependencies: - supports-color @@ -2211,7 +2234,7 @@ packages: optional: true dependencies: '@babel/core': 7.18.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 '@babel/traverse': 7.18.0 @@ -2229,11 +2252,16 @@ packages: dependencies: '@babel/types': 7.18.0 + /@babel/helper-environment-visitor/7.18.2: + resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-explode-assignable-expression/7.16.7: resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.2 dev: true /@babel/helper-function-name/7.17.9: @@ -2253,7 +2281,7 @@ packages: resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.2 dev: true /@babel/helper-module-imports/7.16.0: @@ -2288,7 +2316,7 @@ packages: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.2 dev: true /@babel/helper-plugin-utils/7.17.12: @@ -2301,20 +2329,20 @@ packages: dependencies: '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-wrap-function': 7.16.8 - '@babel/types': 7.18.0 + '@babel/types': 7.18.2 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-replace-supers/7.16.7: - resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} + /@babel/helper-replace-supers/7.18.2: + resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.2 transitivePeerDependencies: - supports-color dev: true @@ -2325,11 +2353,18 @@ packages: dependencies: '@babel/types': 7.18.0 + /@babel/helper-simple-access/7.18.2: + resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.2 + dev: true + /@babel/helper-skip-transparent-expression-wrappers/7.16.0: resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.2 dev: true /@babel/helper-split-export-declaration/7.16.7: @@ -2352,8 +2387,8 @@ packages: dependencies: '@babel/helper-function-name': 7.17.9 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.2 transitivePeerDependencies: - supports-color dev: true @@ -2556,7 +2591,7 @@ packages: dependencies: '@babel/compat-data': 7.17.10 '@babel/core': 7.18.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0 '@babel/helper-plugin-utils': 7.17.12 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0 @@ -2906,7 +2941,7 @@ packages: '@babel/helper-function-name': 7.17.9 '@babel/helper-optimise-call-expression': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 globals: 11.12.0 transitivePeerDependencies: @@ -3003,7 +3038,7 @@ packages: optional: true dependencies: '@babel/core': 7.18.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0 '@babel/helper-function-name': 7.17.9 '@babel/helper-plugin-utils': 7.17.12 dev: true @@ -3051,8 +3086,8 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.18.0_@babel+core@7.18.0: - resolution: {integrity: sha512-cCeR0VZWtfxWS4YueAK2qtHtBPJRSaJcMlbS8jhSIm/A3E2Kpro4W1Dn4cqJtp59dtWfXjQwK7SPKF8ghs7rlw==} + /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.0: + resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3063,7 +3098,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-module-transforms': 7.18.0 '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-simple-access': 7.17.7 + '@babel/helper-simple-access': 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color @@ -3142,7 +3177,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 transitivePeerDependencies: - supports-color dev: true @@ -3256,8 +3291,8 @@ packages: '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-template-literals/7.17.12_@babel+core@7.18.0: - resolution: {integrity: sha512-kAKJ7DX1dSRa2s7WN1xUAuaQmkTpN+uig4wCKWivVXIObqGbVTUlSavHyfI2iZvz89GFAMGm9p2DBJ4Y1Tp0hw==} + /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.0: + resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3309,8 +3344,8 @@ packages: '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/preset-env/7.18.0_@babel+core@7.18.0: - resolution: {integrity: sha512-cP74OMs7ECLPeG1reiCQ/D/ypyOxgfm8uR6HRYV23vTJ7Lu1nbgj9DQDo/vH59gnn7GOAwtTDPPYV4aXzsMKHA==} + /@babel/preset-env/7.18.2_@babel+core@7.18.0: + resolution: {integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3320,7 +3355,7 @@ packages: dependencies: '@babel/compat-data': 7.17.10 '@babel/core': 7.18.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.0 @@ -3370,7 +3405,7 @@ packages: '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.0 '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.0 '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.0 - '@babel/plugin-transform-modules-commonjs': 7.18.0_@babel+core@7.18.0 + '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.0 '@babel/plugin-transform-modules-systemjs': 7.18.0_@babel+core@7.18.0 '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.0 '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.0 @@ -3383,16 +3418,16 @@ packages: '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.0 '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.0 '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-template-literals': 7.17.12_@babel+core@7.18.0 + '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.0 '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.0 '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.0 '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.0 '@babel/preset-modules': 0.1.5_@babel+core@7.18.0 - '@babel/types': 7.18.0 + '@babel/types': 7.18.2 babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.0 babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.0 babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.0 - core-js-compat: 3.22.6 + core-js-compat: 3.22.7 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -3410,12 +3445,12 @@ packages: '@babel/helper-plugin-utils': 7.17.12 '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.0 '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.0 - '@babel/types': 7.18.0 + '@babel/types': 7.18.2 esutils: 2.0.3 dev: true - /@babel/runtime/7.18.0: - resolution: {integrity: sha512-YMQvx/6nKEaucl0MY56mwIG483xk8SDNdlUwb2Ts6FUpr7fm85DxEmsY18LXBNhcTz6tO6JwZV8w1W06v8UKeg==} + /@babel/runtime/7.18.3: + resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 @@ -3445,6 +3480,24 @@ packages: transitivePeerDependencies: - supports-color + /@babel/traverse/7.18.2: + resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 + '@babel/helper-function-name': 7.17.9 + '@babel/helper-hoist-variables': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/parser': 7.18.0 + '@babel/types': 7.18.2 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/types/7.18.0: resolution: {integrity: sha512-vhAmLPAiC8j9K2GnsnLPCIH5wCrPpYIVBCWRBFDCB7Y/BXLqi/O+1RSTTM2bsmg6U/551+FCf9PNPxjABmxHTw==} engines: {node: '>=6.9.0'} @@ -3452,6 +3505,14 @@ packages: '@babel/helper-validator-identifier': 7.16.7 to-fast-properties: 2.0.0 + /@babel/types/7.18.2: + resolution: {integrity: sha512-0On6B8A4/+mFUto5WERt3EEuG1NznDirvwca1O8UwXQHVY8g3R7OzYgxXdOfMwLO08UrpUD/2+3Bclyq+/C94Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + to-fast-properties: 2.0.0 + dev: true + /@builder.io/partytown/0.4.5: resolution: {integrity: sha512-HcHlmMYSpOxfJ0lFVxgZrvgIjz1Q8knlGuWkBpvjIp68j+xVWg969+sn7BCfyKhcGaYlnVOY/CEBHapQBcl0jw==} hasBin: true @@ -3460,7 +3521,7 @@ packages: /@changesets/apply-release-plan/6.0.0: resolution: {integrity: sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/config': 2.0.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 1.3.2 @@ -3478,7 +3539,7 @@ packages: /@changesets/assemble-release-plan/5.1.2: resolution: {integrity: sha512-nOFyDw4APSkY/vh5WNwGEtThPgEjVShp03PKVdId6wZTJALVcAALCSLmDRfeqjE2z9EsGJb7hZdDlziKlnqZgw==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.2 '@changesets/types': 5.0.0 @@ -3506,7 +3567,7 @@ packages: resolution: {integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==} hasBin: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/apply-release-plan': 6.0.0 '@changesets/assemble-release-plan': 5.1.2 '@changesets/changelog-git': 0.1.11 @@ -3580,7 +3641,7 @@ packages: /@changesets/get-release-plan/3.0.8: resolution: {integrity: sha512-TJYiWNuP0Lzu2dL/KHuk75w7TkiE5HqoYirrXF7SJIxkhlgH9toQf2C7IapiFTObtuF1qDN8HJAX1CuIOwXldg==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/assemble-release-plan': 5.1.2 '@changesets/config': 2.0.0 '@changesets/pre': 1.0.11 @@ -3596,7 +3657,7 @@ packages: /@changesets/git/1.3.2: resolution: {integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/types': 5.0.0 '@manypkg/get-packages': 1.1.3 @@ -3620,7 +3681,7 @@ packages: /@changesets/pre/1.0.11: resolution: {integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/types': 5.0.0 '@manypkg/get-packages': 1.1.3 @@ -3630,7 +3691,7 @@ packages: /@changesets/read/0.5.5: resolution: {integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/git': 1.3.2 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.13 @@ -3651,7 +3712,7 @@ packages: /@changesets/write/0.1.8: resolution: {integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/types': 5.0.0 fs-extra: 7.0.1 human-id: 1.0.2 @@ -3779,20 +3840,20 @@ packages: /@internationalized/date/3.0.0-rc.0: resolution: {integrity: sha512-R8ui3O2G43fZ/z5cBdJuU6nswKtuVrKloDE6utvqKEeGf6igFoiapcjg7jbQ+WvWIDGtdUytOp2fOq/X4efBdQ==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 dev: false /@internationalized/message/3.0.6: resolution: {integrity: sha512-ECk3toFy87I2z5zipRNwdbouvRlIyMKb/FzKj1upMaNS52AKhpvrLgo3CY/ZXQKm4CRIbeh6p/F/Ztt+enhIEA==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 intl-messageformat: 9.13.0 dev: false /@internationalized/number/3.1.0: resolution: {integrity: sha512-CEts+2rIB4QveKeeF6xIHdn8aLVvUt5aiarkpCZgtMyYqfqo/ZBELf2UyhvLPGpRxcF24ClCISMTP9BTVreSAg==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 dev: false /@jridgewell/gen-mapping/0.1.1: @@ -3836,20 +3897,20 @@ packages: resolution: {integrity: sha512-rr/UVhxbKWNUr+3qRyvZk+glC7v7ph8Gk/W0z96YG64COJKf9ilnWY6JGW77TRqhrRMmS2nsvAXOyQgcF+4jrA==} dependencies: '@lit/reactive-element': 1.3.2 - lit: 2.2.4 - lit-html: 2.2.4 + lit: 2.2.5 + lit-html: 2.2.5 dev: false - /@lit-labs/ssr/2.1.0: - resolution: {integrity: sha512-Tnz/S99G57QKQkI+5QhpfOyVxdHM/IbSa3DZmbF5aeIugivONjurHOuMn6AHzzgdteae3ihcGV2eehKPJuG4/w==} + /@lit-labs/ssr/2.2.0: + resolution: {integrity: sha512-XL8Iur+i7mSnBwou8MOezOayawNKklaer9F3PvrN0PhwhI/ZQGngWiYDdgGOUxoSJCmBN8ss/zlQ3GHXkbilkw==} engines: {node: '>=13.9.0'} dependencies: '@lit-labs/ssr-client': 1.0.1 '@lit/reactive-element': 1.3.2 - '@types/node': 16.11.35 - lit: 2.2.4 + '@types/node': 16.11.36 + lit: 2.2.5 lit-element: 3.2.0 - lit-html: 2.2.4 + lit-html: 2.2.5 node-fetch: 2.6.7 parse5: 6.0.1 resolve: 1.22.0 @@ -3868,7 +3929,7 @@ packages: /@manypkg/find-root/1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@types/node': 12.20.52 find-up: 4.1.0 fs-extra: 8.1.0 @@ -3877,7 +3938,7 @@ packages: /@manypkg/get-packages/1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -4115,7 +4176,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -4133,7 +4194,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/link': 3.2.5_react@17.0.2 @@ -4148,7 +4209,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4162,7 +4223,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/label': 3.2.5_react@17.0.2 '@react-aria/toggle': 3.2.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4178,7 +4239,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/listbox': 3.4.5_react@17.0.2 @@ -4203,7 +4264,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-stately/overlays': 3.2.0_react@17.0.2 @@ -4216,7 +4277,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -4230,7 +4291,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -4252,7 +4313,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@internationalized/date': 3.0.0-rc.0 '@internationalized/message': 3.0.6 '@internationalized/number': 3.1.0 @@ -4267,7 +4328,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 react: 17.0.2 @@ -4278,7 +4339,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-types/label': 3.5.4_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -4290,7 +4351,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4304,7 +4365,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/label': 3.2.5_react@17.0.2 @@ -4323,7 +4384,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-aria/visually-hidden': 3.2.8_react@17.0.2 react: 17.0.2 @@ -4336,7 +4397,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/overlays': 3.8.2_sfoxds7t5ydpegc3knd667wn6m @@ -4357,7 +4418,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/progress': 3.1.8_react@17.0.2 '@react-types/meter': 3.1.6_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -4370,7 +4431,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/live-announcer': 3.0.6_sfoxds7t5ydpegc3knd667wn6m @@ -4392,7 +4453,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4411,7 +4472,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/label': 3.2.5_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4425,7 +4486,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -4441,7 +4502,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/textfield': 3.5.5_react@17.0.2 @@ -4459,7 +4520,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/label': 3.2.5_react@17.0.2 @@ -4481,7 +4542,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -4497,7 +4558,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 react: 17.0.2 @@ -4508,7 +4569,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -4527,7 +4588,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/live-announcer': 3.0.6_sfoxds7t5ydpegc3knd667wn6m '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4542,7 +4603,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -4551,7 +4612,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/toggle': 3.2.4_react@17.0.2 '@react-stately/toggle': 3.2.7_react@17.0.2 '@react-types/switch': 3.1.6_react@17.0.2 @@ -4564,7 +4625,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/grid': 3.2.6_sfoxds7t5ydpegc3knd667wn6m '@react-aria/i18n': 3.3.9_react@17.0.2 @@ -4587,7 +4648,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -4605,7 +4666,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/label': 3.2.5_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4619,7 +4680,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4635,7 +4696,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4650,7 +4711,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/ssr': 3.1.2_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -4664,7 +4725,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -4679,7 +4740,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 clsx: 1.1.1 @@ -4693,7 +4754,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/actiongroup': 3.2.6_react@17.0.2 '@react-aria/button': 3.4.4_react@17.0.2 '@react-aria/focus': 3.5.5_react@17.0.2 @@ -4725,7 +4786,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/breadcrumbs': 3.1.10_react@17.0.2 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 @@ -4749,7 +4810,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/button': 3.4.4_react@17.0.2 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -4772,7 +4833,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/button': 3.7.4_hvcaygfkrdsthu4bca6eisslhq '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m @@ -4791,7 +4852,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/checkbox': 3.3.4_react@17.0.2 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -4816,7 +4877,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/button': 3.4.4_react@17.0.2 '@react-aria/combobox': 3.2.6_sfoxds7t5ydpegc3knd667wn6m '@react-aria/dialog': 3.1.9_react@17.0.2 @@ -4852,7 +4913,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-spectrum/button': 3.7.4_hvcaygfkrdsthu4bca6eisslhq '@react-spectrum/dialog': 3.3.9_hvcaygfkrdsthu4bca6eisslhq @@ -4873,7 +4934,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/dialog': 3.1.9_react@17.0.2 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 @@ -4904,7 +4965,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/separator': 3.1.7_react@17.0.2 '@react-spectrum/utils': 3.6.8_react@17.0.2 '@react-types/divider': 3.1.6_react@17.0.2 @@ -4918,7 +4979,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m '@react-spectrum/utils': 3.6.8_react@17.0.2 @@ -4933,7 +4994,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m '@react-spectrum/utils': 3.6.8_react@17.0.2 @@ -4947,7 +5008,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/layout': 3.2.6_yrnkbltii27iipti42xi2zu23q '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m @@ -4963,7 +5024,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m '@react-spectrum/utils': 3.6.8_react@17.0.2 @@ -4978,7 +5039,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/label': 3.2.5_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -5000,7 +5061,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/ssr': 3.1.2_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m @@ -5017,7 +5078,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/link': 3.2.5_react@17.0.2 @@ -5035,7 +5096,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -5066,7 +5127,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -5103,7 +5164,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/meter': 3.1.8_react@17.0.2 '@react-spectrum/progress': 3.1.8_yrnkbltii27iipti42xi2zu23q '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m @@ -5120,7 +5181,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/button': 3.4.4_react@17.0.2 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 @@ -5149,7 +5210,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/overlays': 3.8.2_sfoxds7t5ydpegc3knd667wn6m '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m @@ -5169,7 +5230,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -5200,7 +5261,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/progress': 3.1.8_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m @@ -5216,7 +5277,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/overlays': 3.8.2_sfoxds7t5ydpegc3knd667wn6m '@react-aria/utils': 3.12.0_react@17.0.2 @@ -5234,7 +5295,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/radio': 3.1.11_react@17.0.2 @@ -5256,7 +5317,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/searchfield': 3.2.7_react@17.0.2 '@react-spectrum/button': 3.7.4_hvcaygfkrdsthu4bca6eisslhq '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m @@ -5277,7 +5338,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -5298,7 +5359,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m '@react-spectrum/utils': 3.6.8_react@17.0.2 @@ -5313,7 +5374,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/switch': 3.1.8_react@17.0.2 @@ -5336,7 +5397,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/grid': 3.2.6_sfoxds7t5ydpegc3knd667wn6m '@react-aria/i18n': 3.3.9_react@17.0.2 @@ -5370,7 +5431,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -5399,7 +5460,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m '@react-spectrum/utils': 3.6.8_react@17.0.2 @@ -5414,7 +5475,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 @@ -5437,7 +5498,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-types/provider': 3.4.3_react@17.0.2 react: 17.0.2 dev: false @@ -5447,7 +5508,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-types/provider': 3.4.3_react@17.0.2 react: 17.0.2 dev: false @@ -5457,7 +5518,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-types/provider': 3.4.3_react@17.0.2 react: 17.0.2 dev: false @@ -5469,7 +5530,7 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/focus': 3.5.5_react@17.0.2 '@react-aria/interactions': 3.8.4_react@17.0.2 '@react-aria/overlays': 3.8.2_sfoxds7t5ydpegc3knd667wn6m @@ -5493,7 +5554,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/ssr': 3.1.2_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 @@ -5508,7 +5569,7 @@ packages: '@react-spectrum/provider': ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m @@ -5523,7 +5584,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-spectrum/utils': 3.6.8_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -5536,7 +5597,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/toggle': 3.2.7_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/checkbox': 3.2.7_react@17.0.2 @@ -5548,7 +5609,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-types/shared': 3.12.0_react@17.0.2 react: 17.0.2 dev: false @@ -5558,7 +5619,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/list': 3.4.5_react@17.0.2 '@react-stately/menu': 3.2.7_react@17.0.2 '@react-stately/select': 3.1.7_react@17.0.2 @@ -5573,7 +5634,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-types/shared': 3.12.0_react@17.0.2 react: 17.0.2 dev: false @@ -5583,7 +5644,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/selection': 3.9.4_react@17.0.2 '@react-types/grid': 3.0.4_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -5595,7 +5656,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/virtualizer': 3.1.9_react@17.0.2 '@react-types/grid': 3.0.4_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -5608,7 +5669,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/collections': 3.3.8_react@17.0.2 '@react-stately/selection': 3.9.4_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 @@ -5621,7 +5682,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/overlays': 3.2.0_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/menu': 3.5.3_react@17.0.2 @@ -5634,7 +5695,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@internationalized/number': 3.1.0 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/numberfield': 3.2.0_react@17.0.2 @@ -5647,7 +5708,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/overlays': 3.5.5_react@17.0.2 react: 17.0.2 @@ -5658,7 +5719,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/radio': 3.1.6_react@17.0.2 react: 17.0.2 @@ -5669,7 +5730,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/searchfield': 3.2.0_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -5681,7 +5742,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/collections': 3.3.8_react@17.0.2 '@react-stately/list': 3.4.5_react@17.0.2 '@react-stately/menu': 3.2.7_react@17.0.2 @@ -5697,7 +5758,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/collections': 3.3.8_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -5709,7 +5770,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/i18n': 3.3.9_react@17.0.2 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 @@ -5722,7 +5783,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/collections': 3.3.8_react@17.0.2 '@react-stately/grid': 3.1.4_react@17.0.2 '@react-stately/selection': 3.9.4_react@17.0.2 @@ -5737,7 +5798,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/list': 3.4.5_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/tabs': 3.0.5_react@17.0.2 @@ -5749,7 +5810,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/checkbox': 3.2.7_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 @@ -5761,7 +5822,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/overlays': 3.2.0_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 '@react-types/tooltip': 3.1.6_react@17.0.2 @@ -5773,7 +5834,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-stately/collections': 3.3.8_react@17.0.2 '@react-stately/selection': 3.9.4_react@17.0.2 '@react-stately/utils': 3.4.1_react@17.0.2 @@ -5786,7 +5847,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -5795,7 +5856,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@react-aria/utils': 3.12.0_react@17.0.2 '@react-types/shared': 3.12.0_react@17.0.2 react: 17.0.2 @@ -6295,8 +6356,8 @@ packages: string.prototype.matchall: 4.0.7 dev: true - /@sveltejs/vite-plugin-svelte/1.0.0-next.44_svelte@3.48.0+vite@2.9.9: - resolution: {integrity: sha512-n+sssEWbzykPS447FmnNyU5GxEhrBPDVd0lxNZnxRGz9P6651LjjwAnISKr3CKgT9v8IybP8VD0n2i5XzbqExg==} + /@sveltejs/vite-plugin-svelte/1.0.0-next.45_svelte@3.48.0+vite@2.9.9: + resolution: {integrity: sha512-WLschM2qpa4lSpKR4zTVDJ2AW48u3Gjs3BX5s6aZvLRC3bjBjKcOcGmOG9pLu07C869wdMwZFZ+GroVcx7ZKpw==} engines: {node: ^14.13.1 || >= 16} peerDependencies: diff-match-patch: ^1.0.5 @@ -6490,8 +6551,8 @@ packages: resolution: {integrity: sha512-B9EoJFjhqcQ9OmQrNorItO+OwEOORNn3S31WuiHvZY/dm9ajkB7AKD/8toessEtHHNL+58jofbq7hMMY9v4yig==} dev: true - /@types/node/16.11.35: - resolution: {integrity: sha512-QXu45LyepgnhUfnIAj/FyT4uM87ug5KpIrgXfQtUPNAlx8w5hmd8z8emqCLNvG11QkpRSCG9Qg2buMxvqfjfsQ==} + /@types/node/16.11.36: + resolution: {integrity: sha512-FR5QJe+TaoZ2GsMHkjuwoNabr+UrJNRr2HNOo+r/7vhcuntM6Ee/pRPOnRhhL2XE9OOvX9VLEq+BcXl3VjNoWA==} dev: false /@types/node/17.0.35: @@ -6546,20 +6607,20 @@ packages: dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.0.11 + csstype: 3.1.0 /@types/react/18.0.9: resolution: {integrity: sha512-9bjbg1hJHUm4De19L1cHiW0Jvx3geel6Qczhjd0qY5VKVE2X5+x77YxAepuCwVh4vrgZJdgEJw48zrhRIeF4Nw==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.0.11 + csstype: 3.1.0 dev: false /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 14.18.18 + '@types/node': 17.0.35 dev: true /@types/resolve/1.20.2: @@ -6848,7 +6909,7 @@ packages: acorn: 8.7.1 bindings: 1.5.0 estree-walker: 2.0.2 - glob: 7.2.3 + glob: 7.2.0 graceful-fs: 4.2.10 micromatch: 4.0.5 node-gyp-build: 4.4.0 @@ -7095,11 +7156,6 @@ packages: engines: {node: '>=6'} dev: true - /ansi-colors/4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - dev: true - /ansi-regex/2.1.1: resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} engines: {node: '>=0.10.0'} @@ -7288,7 +7344,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0 - core-js-compat: 3.22.6 + core-js-compat: 3.22.7 transitivePeerDependencies: - supports-color dev: true @@ -7677,7 +7733,7 @@ packages: dev: false /code-point-at/1.1.0: - resolution: {integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=} + resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} engines: {node: '>=0.10.0'} /color-convert/1.9.3: @@ -7761,15 +7817,15 @@ packages: dev: true /console-control-strings/1.1.0: - resolution: {integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=} + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} /convert-source-map/1.8.0: resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} dependencies: safe-buffer: 5.1.2 - /core-js-compat/3.22.6: - resolution: {integrity: sha512-dQ/SxlHcuiywaPIoSUCU6Fx+Mk/H5TXENqd/ZJcK85ta0ZcQkbzHwblxPeL0hF5o+NsT2uK3q9ZOG5TboiVuWw==} + /core-js-compat/3.22.7: + resolution: {integrity: sha512-uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA==} dependencies: browserslist: 4.20.3 semver: 7.0.0 @@ -7779,7 +7835,7 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} /cross-spawn/5.1.0: - resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=} + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 @@ -7836,8 +7892,8 @@ packages: /csstype/2.6.20: resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==} - /csstype/3.0.11: - resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==} + /csstype/3.1.0: + resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} /csv-generate/3.4.3: resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} @@ -7911,7 +7967,7 @@ packages: ms: 2.1.2 /decamelize-keys/1.1.0: - resolution: {integrity: sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=} + resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} engines: {node: '>=0.10.0'} dependencies: decamelize: 1.2.0 @@ -7919,7 +7975,7 @@ packages: dev: true /decamelize/1.2.0: - resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=} + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} dev: true @@ -7977,7 +8033,7 @@ packages: object-keys: 1.1.1 /defined/1.0.0: - resolution: {integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=} + resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==} /defu/5.0.1: resolution: {integrity: sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ==} @@ -7999,8 +8055,8 @@ packages: hasBin: true dev: false - /del/6.1.0: - resolution: {integrity: sha512-OpcRktOt7G7HBfyxP0srBH4Djg4824EQORX8E1qvIhIzthNNArxxhrB/Mm7dRMiLi1nvFyUpDhzD2cTtbBhV8A==} + /del/6.1.1: + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} engines: {node: '>=10'} dependencies: globby: 11.1.0 @@ -8014,7 +8070,7 @@ packages: dev: true /delegates/1.0.0: - resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} /depd/2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} @@ -8034,7 +8090,7 @@ packages: engines: {node: '>=8'} /detect-libc/1.0.3: - resolution: {integrity: sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=} + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} engines: {node: '>=0.10'} hasBin: true @@ -8042,8 +8098,8 @@ packages: resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} engines: {node: '>=8'} - /detective/5.2.0: - resolution: {integrity: sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==} + /detective/5.2.1: + resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} engines: {node: '>=0.8.0'} hasBin: true dependencies: @@ -8086,7 +8142,7 @@ packages: /dom-helpers/3.4.0: resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 dev: false /dom-serializer/1.4.1: @@ -8191,7 +8247,7 @@ packages: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} dependencies: - ansi-colors: 4.1.3 + ansi-colors: 4.1.1 dev: true /entities/2.2.0: @@ -8790,7 +8846,7 @@ packages: /filelist/1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: - minimatch: 5.0.1 + minimatch: 5.1.0 dev: true /fill-range/7.0.1: @@ -9043,17 +9099,6 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 - dev: true - - /glob/7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 /globals/11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} @@ -9253,6 +9298,28 @@ packages: space-separated-tokens: 2.0.1 unist-util-visit: 4.1.0 zwitch: 2.0.2 + dev: true + + /hast-util-select/5.0.2: + resolution: {integrity: sha512-QGN5o7N8gq1BhUX96ApLE8izOXlf+IPkOVGXcp9Dskdd3w0OqZrn6faPAmS0/oVogwJOd0lWFSYmBK75e+030g==} + dependencies: + '@types/hast': 2.3.4 + '@types/unist': 2.0.6 + bcp-47-match: 2.0.2 + comma-separated-tokens: 2.0.2 + css-selector-parser: 1.4.1 + direction: 2.0.1 + hast-util-has-property: 2.0.0 + hast-util-is-element: 2.1.2 + hast-util-to-string: 2.0.0 + hast-util-whitespace: 2.0.0 + not: 0.1.0 + nth-check: 2.1.1 + property-information: 6.1.1 + space-separated-tokens: 2.0.1 + unist-util-visit: 4.1.0 + zwitch: 2.0.2 + dev: false /hast-util-to-html/8.0.3: resolution: {integrity: sha512-/D/E5ymdPYhHpPkuTHOUkSatxr4w1ZKrZsG0Zv/3C2SRVT0JFJG53VS45AMrBtYk0wp5A7ksEhiC8QaOZM95+A==} @@ -9785,7 +9852,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 14.18.18 + '@types/node': 17.0.35 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -9934,21 +10001,21 @@ packages: resolution: {integrity: sha512-HbE7yt2SnUtg5DCrWt028oaU4D5F4k/1cntAFHTkzY8ZIa8N0Wmu92PxSxucsQSOXlODFrICkQ5x/tEshKi13g==} dependencies: '@lit/reactive-element': 1.3.2 - lit-html: 2.2.4 + lit-html: 2.2.5 dev: false - /lit-html/2.2.4: - resolution: {integrity: sha512-IPY0V0z/QWcTduxb6DlP46Un8n6tG+mHSAijGcPozfXTjVkvFLN4/irPzthtq/eC8RU+7CUqh6h4KB7tnRPJfg==} + /lit-html/2.2.5: + resolution: {integrity: sha512-e56Y9V+RNA+SGYsWP2DGb/wad5Ccd3xUZYjmcmbeZcnc0wP4zFQRXeXn7W3bbfBekmHDK2dOnuYNYkg0bQjh/w==} dependencies: '@types/trusted-types': 2.0.2 dev: false - /lit/2.2.4: - resolution: {integrity: sha512-O7t+uizo1/Br0y+5RaWRzPkd4MsoL4XY2eq7n2wrESyCCjeagq4ERZKsyKX40jbmsz4bAAs7/0qNRX11TuXzoA==} + /lit/2.2.5: + resolution: {integrity: sha512-Ln463c0xJZfzVxBcHddNvFQQ8Z22NK7KgNmrzwFF1iESHUud412RRExzepj18wpTbusgwoTnOYuoTpo9uyNBaQ==} dependencies: '@lit/reactive-element': 1.3.2 lit-element: 3.2.0 - lit-html: 2.2.4 + lit-html: 2.2.5 dev: false /load-yaml-file/0.2.0: @@ -10638,8 +10705,8 @@ packages: brace-expansion: 1.1.11 dev: true - /minimatch/5.0.1: - resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==} + /minimatch/5.1.0: + resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 @@ -10812,8 +10879,8 @@ packages: tslib: 2.4.0 dev: false - /node-abi/3.15.0: - resolution: {integrity: sha512-Ic6z/j6I9RLm4ov7npo1I48UQr2BEyFCqh6p7S1dhEx9jPO0GPGq/e2Rb7x7DroQrmiVMz/Bw1vJm9sPAl2nxA==} + /node-abi/3.22.0: + resolution: {integrity: sha512-u4uAs/4Zzmp/jjsD9cyFYDXeISfUWaAVWshPmDZOFOv4Xl4SbzTXm53I04C2uRueYJ+0t5PEtLH/owbn2Npf/w==} engines: {node: '>=10'} dependencies: semver: 7.3.7 @@ -11138,15 +11205,15 @@ packages: get-uri: 3.0.2 http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.1 - pac-resolver: 5.0.0 + pac-resolver: 5.0.1 raw-body: 2.5.1 socks-proxy-agent: 5.0.1 transitivePeerDependencies: - supports-color dev: true - /pac-resolver/5.0.0: - resolution: {integrity: sha512-H+/A6KitiHNNW+bxBKREk2MCGSxljfqRX76NjummWEYIat7ldVXRU3dhRIE3iXZ0nvGBk6smv3nntxKkzRL8NA==} + /pac-resolver/5.0.1: + resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==} engines: {node: '>= 8'} dependencies: degenerator: 3.0.2 @@ -11398,7 +11465,7 @@ packages: minimist: 1.2.6 mkdirp-classic: 0.5.3 napi-build-utils: 1.0.2 - node-abi: 3.15.0 + node-abi: 3.22.0 npmlog: 4.1.2 pump: 3.0.0 rc: 1.2.8 @@ -11711,7 +11778,7 @@ packages: /regenerator-transform/0.15.0: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 dev: true /regexp.prototype.flags/1.4.3: @@ -11923,13 +11990,13 @@ packages: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true dependencies: - glob: 7.2.3 + glob: 7.2.0 /rimraf/3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: - glob: 7.2.3 + glob: 7.2.0 /rollup-plugin-terser/7.0.2_rollup@2.74.1: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} @@ -12224,14 +12291,14 @@ packages: smart-buffer: 4.2.0 dev: true - /solid-js/1.4.2: - resolution: {integrity: sha512-IU5yKuT8P/n5F5g8j1rTXqxUdPYmoZDk/074TG94AEYf/nyXAeG82BSge4/lLIbCfUcnGUJ6DRdebIjujOAYyg==} + /solid-js/1.4.3: + resolution: {integrity: sha512-3uh2cbT4ICronIasLAxycF6SVgvqcfwFCDCzlEA9CEahn1qQg8Rw8aRGiI4O51PrHcN5aPRO9knYYRCs0PgzcQ==} /solid-nanostores/0.0.6: resolution: {integrity: sha512-iwbgdBzQSxBKoxkzaZgC9MGGUsHWJ74at9i7FF0naoqtwGuKdLYOgOJ9QRlA353DHDS/ttH2e0SRS6s3gz8NLQ==} dependencies: nanostores: 0.5.12 - solid-js: 1.4.2 + solid-js: 1.4.3 dev: false /sorcery/0.10.0: @@ -12596,7 +12663,7 @@ packages: arg: 5.0.1 chokidar: 3.5.3 color-name: 1.1.4 - detective: 5.2.0 + detective: 5.2.1 didyoumean: 1.2.2 dlv: 1.1.3 fast-glob: 3.2.11 @@ -13514,7 +13581,7 @@ packages: /wide-align/1.1.5: resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: - string-width: 1.0.2 + string-width: 4.2.3 /widest-line/4.0.1: resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} @@ -13545,10 +13612,10 @@ packages: resolution: {integrity: sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==} engines: {node: '>=10.0.0'} dependencies: - '@apideck/better-ajv-errors': 0.3.3_ajv@8.11.0 + '@apideck/better-ajv-errors': 0.3.4_ajv@8.11.0 '@babel/core': 7.18.0 - '@babel/preset-env': 7.18.0_@babel+core@7.18.0 - '@babel/runtime': 7.18.0 + '@babel/preset-env': 7.18.2_@babel+core@7.18.0 + '@babel/runtime': 7.18.3 '@rollup/plugin-babel': 5.3.1_ykg7cmcqpmn5fbkb5gxs7i3du4 '@rollup/plugin-node-resolve': 11.2.1_rollup@2.74.1 '@rollup/plugin-replace': 2.4.2_rollup@2.74.1 @@ -13557,7 +13624,7 @@ packages: common-tags: 1.8.2 fast-json-stable-stringify: 2.1.0 fs-extra: 9.1.0 - glob: 7.2.3 + glob: 7.2.0 lodash: 4.17.21 pretty-bytes: 5.6.0 rollup: 2.74.1