diff --git a/apps/govuk-docs/src/common/pages/components.tsx b/apps/govuk-docs/src/common/pages/components.tsx index 824687f0b..26c923616 100644 --- a/apps/govuk-docs/src/common/pages/components.tsx +++ b/apps/govuk-docs/src/common/pages/components.tsx @@ -22,6 +22,7 @@ const mainStories = [ require('../../../../../components/footer/spec/Footer.stories.mdx'), require('../../../../../components/header/spec/Header.stories.mdx'), require('../../../../../components/inset-text/spec/InsetText.stories.mdx'), + require('../../../../../components/notification-banner/spec/NotificationBanner.stories.mdx'), require('../../../../../components/pagination/spec/Pagination.stories.mdx'), require('../../../../../components/panel/spec/Panel.stories.mdx'), require('../../../../../components/phase-banner/spec/PhaseBanner.stories.mdx'), diff --git a/components/notification-banner/.gitignore b/components/notification-banner/.gitignore new file mode 100644 index 000000000..aa49ac15e --- /dev/null +++ b/components/notification-banner/.gitignore @@ -0,0 +1,5 @@ +dist/ +node_modules/ +package-lock.json +pnpm-lock.yaml +tsconfig.tsbuildinfo diff --git a/components/notification-banner/README.md b/components/notification-banner/README.md new file mode 100644 index 000000000..8cbe44d40 --- /dev/null +++ b/components/notification-banner/README.md @@ -0,0 +1,70 @@ +NotGovUK - Notification Banner +============================== + +A component to tell the user about something they need to know about, but that’s not directly related to the page content. + + +Using this package +------------------ + +First install the package into your project: + +```shell +npm install -S @not-govuk/notification-banner +``` + +Then use it in your code as follows: + +```js +import React, { createElement as h } from 'react'; +import NotificationBanner from '@not-govuk/notification-banner'; + +export const MyComponent = props => ( + +

+ You have 7 days left to send your application. + View application. +

+
+); + +export default MyComponent; +``` + + +Working on this package +----------------------- + +Before working on this package you must install its dependencies using +the following command: + +```shell +pnpm install +``` + + +### Testing + +Run the unit tests. + +```shell +npm test +``` + + +### Building + +Build the package by compiling the TypeScript source code. + +```shell +npm run build +``` + + +### Clean-up + +Remove any previously built files. + +```shell +npm run clean +``` diff --git a/components/notification-banner/assets/NotificationBanner.scss b/components/notification-banner/assets/NotificationBanner.scss new file mode 100644 index 000000000..d5704cd33 --- /dev/null +++ b/components/notification-banner/assets/NotificationBanner.scss @@ -0,0 +1,26 @@ +@import "@not-govuk/sass-base"; +@import "govuk-frontend/govuk/components/notification-banner"; + +.govuk-notification-banner { + &__content { + & .heading, + & .govuk-heading, + & h2 { + @extend .govuk-notification-banner__title; + } + } + + &__content { + & .heading, + & .govuk-heading, + & h3 { + @extend .govuk-notification-banner__heading; + } + + & .link, + & .govuk-link, + & a { + @extend .govuk-notification-banner__link; + } + } +} diff --git a/components/notification-banner/jest.config.js b/components/notification-banner/jest.config.js new file mode 100644 index 000000000..116a1cfbe --- /dev/null +++ b/components/notification-banner/jest.config.js @@ -0,0 +1,15 @@ +'use strict'; + +const baseConfig = require('../../jest.config.base'); + +const config = { + ...baseConfig, + collectCoverageFrom: [ + '/src/**.{ts,tsx}', + ], + testMatch: [ + '/spec/**.{ts,tsx}' + ] +}; + +module.exports = config; diff --git a/components/notification-banner/package.json b/components/notification-banner/package.json new file mode 100644 index 000000000..8930b38ef --- /dev/null +++ b/components/notification-banner/package.json @@ -0,0 +1,54 @@ +{ + "name": "@not-govuk/notification-banner", + "version": "0.7.2", + "description": "A component to tell the user about something they need to know about, but that’s not directly related to the page content.", + "main": "src/NotificationBanner.tsx", + "sass": "assets/NotificationBanner.scss", + "publishConfig": { + "main": "dist/NotificationBanner.js", + "typings": "dist/NotificationBanner.d.ts" + }, + "files": [ + "/assets", + "/dist" + ], + "scripts": { + "test": "NODE_OPTIONS=--experimental-vm-modules jest", + "prepublishOnly": "npm run clean && npm run build", + "build": "tsc", + "clean": "rm -rf dist tsconfig.tsbuildinfo" + }, + "author": "Daniel A.C. Martin (http://daniel-martin.co.uk/)", + "license": "MIT", + "keywords": [ + "react-components" + ], + "dependencies": { + "@not-govuk/component-helpers": "workspace:^0.7.2", + "@not-govuk/sass-base": "workspace:^0.7.2", + "govuk-frontend": "4.6.0" + }, + "peerDependencies": { + "@not-govuk/docs-components": "^0.7.2", + "@storybook/addon-docs": "^6.4.0", + "react": "^16.9.55" + }, + "peerDependenciesMeta": { + "@not-govuk/docs-components": { + "optional": true + }, + "@storybook/addon-docs": { + "optional": true + } + }, + "devDependencies": { + "@mdx-js/react": "1.6.22", + "@not-govuk/component-test-helpers": "workspace:^0.7.2", + "@not-govuk/tag": "workspace:^0.7.2", + "@types/react": "16.14.32", + "jest": "29.2.2", + "jest-environment-jsdom": "29.2.2", + "ts-jest": "29.0.3", + "typescript": "4.8.4" + } +} diff --git a/components/notification-banner/spec/NotificationBanner.stories.mdx b/components/notification-banner/spec/NotificationBanner.stories.mdx new file mode 100644 index 000000000..c14302c32 --- /dev/null +++ b/components/notification-banner/spec/NotificationBanner.stories.mdx @@ -0,0 +1,164 @@ +import { Meta, Preview, Props, Story } from '@storybook/addon-docs'; +import { Tag } from '@not-govuk/tag'; +import { NotificationBanner } from '../src/NotificationBanner'; +import readMe from '../README.md'; + + + +# Notification banner + +
+ Experimental +

This component is currently experimental because [more research] is needed to validate it.

+
+ +Use a notification banner to tell the user about something they need to know about, but that’s not directly related to the page content. + + + + +

+ You have 7 days left to send your application. View application. +

+
+
+
+ + + + +## When to use this component + +A notification banner lets you tell the user about something that’s not directly relevant to the thing they’re trying to do on that page of the service. For example: + +- telling the user about a problem that’s affecting the service as a whole (for example, delays in processing applications because of an emergency) +- telling the user about something that affects them in particular (for example, an approaching deadline they need to meet) +- telling the user about the outcome of something they’ve just done on a previous page (for example, confirming that an email has been sent) + + +## When not to use this component + +Use notification banners sparingly. There’s [evidence that people often miss them], and using them too often is likely to make this problem worse. + +If the information is directly relevant to the thing the user is doing on that page, put the information in the main page content instead. Use [inset text] or [warning text] if it needs to stand out. + +Do not: + +- use a notification banner to tell the user about validation errors - use an [error message] and [error summary] instead +- show a notification banner and an [error summary] on the same page - just show the error summary + + +## How it works + +Position a notification banner immediately before the page `h1`. The notification banner should be the same width as the page’s other content, such as components, headings and body text. For example, if the other content takes up two-thirds of the screen on desktop devices, then the notification banner should also take up two-thirds. [Read about how to lay out pages]. + +Use `role="region"` and `aria-labelledby="govuk-notification-banner-title"` (with `id="govuk-notification-banner-title"` on ``) so that screen reader users can navigate to the notification banner. + +Avoid showing more than one notification banner on the same page. Instead, combine the messages in a single notification banner. If the messages are too different to combine, only show the highest priority notification banner. + + +### Notification banner headings + +You can use `

` headings in the `govuk-notification-banner__content` to help structure your content. + +Avoid using headings for single-line notifications that do not need them. + + +## Telling the user about a problem that affects the whole service + +Use a ‘neutral’ blue notification banner if the user needs to know about a problem with the service as a whole. + +For example: + +- in a service that lets the user register or apply for something, they might need to know that it’s taking longer than usual to process applications because of an emergency +- in an account-type service, the user might need to know that the service will be down for scheduled maintenance + + + + There may be a delay in processing your application because of the coronavirus outbreak. + + + +If your service is on GOV.UK and it’s affected by an emergency, ask your department’s content team to [request a change to the service start page]. + +If your service is getting more demand than usual, check that you’ve set up [There is a problem with the service pages] and [Service unavailable pages], and the wording is up to date. + + +## Telling the user about something that’s happening elsewhere + +Use a ‘neutral’ notification banner if the user needs to know about something that’s happening elsewhere in the service. For example: + +- in a case working system, the user might need to know that there are new cases waiting for their attention +- in an account-type service, you might need to tell the user that there’s a deadline approaching or that a payment is overdue + + + + +

+ You have 7 days left to send your application. View application. +

+
+
+
+ + +## Reacting to something the user has done + +You can also use a notification banner to tell the user about the outcome of something they’ve just done - but they have not finished using the service, so it does not make sense to use a [confirmation page]. + +Using a notification banner is unlikely to be the right approach in a linear service - for example, a service that lets the user register or apply for a thing. For a linear service, it will usually make sense to stick to the [‘one thing per page’ approach]. Do not use a notification banner to tell users that they’ve finished using a linear service. Use a [confirmation page] instead. + +Use the green version of the notification banner to confirm that something they’re expecting to happen has happened. + + + + +

+ Training outcome recorded and trainee withdrawn +

+

Contact example@department.gov.uk if you think there’s a problem.

+
+
+
+ +Since you’re using the notification banner to tell the user about the outcome of something they’ve just done, add `role="alert"` so focus shifts to the notification banner on page load. + +Remove a green notification banner when the user moves to a new page. + +To make the green version of the notification banner accessible: + +- use headings like ‘Success’ - so that you’re [not relying on colour alone to convey meaning]) +- use the same heading for green notification banners within the same service - so that you’re [identifying components that work in the same way consistently] + + +

Research on this component

+ +We need more research to understand: + +- how common it is for users to miss important information in notification banners (including users of assistive technology, who might skip straight to the `h1`) +- whether it’s sometimes helpful to allow users to dismiss notifications, and how to do this + + +[more research]: #research-on-this-component +[evidence that people often miss them]: https://www.nngroup.com/articles/banner-blindness-old-and-new-findings/ +[inset text]: https://design-system.service.gov.uk/components/inset-text/ +[warning text]: https://design-system.service.gov.uk/components/warning-text/ +[error message]: https://design-system.service.gov.uk/components/error-message/ +[error summary]: https://design-system.service.gov.uk/components/error-summary/ +[Read about how to lay out pages]: https://design-system.service.gov.uk/styles/layout/ +[request a change to the service start page]: https://www.gov.uk/guidance/contact-the-government-digital-service/request-a-thing#change-govuk-content +[There is a problem with the service pages]: https://design-system.service.gov.uk/patterns/problem-with-the-service-pages/ +[Service unavailable pages]: https://design-system.service.gov.uk/patterns/service-unavailable-pages/ +[confirmation page]: https://design-system.service.gov.uk/patterns/confirmation-pages/ +[‘one thing per page’ approach]: https://www.gov.uk/service-manual/design/form-structure +[not relying on colour alone to convey meaning]: https://www.w3.org/WAI/WCAG21/Understanding/use-of-color.html +[identifying components that work in the same way consistently]: https://www.w3.org/WAI/WCAG21/Understanding/consistent-identification diff --git a/components/notification-banner/spec/NotificationBanner.ts b/components/notification-banner/spec/NotificationBanner.ts new file mode 100644 index 000000000..9ac123eb3 --- /dev/null +++ b/components/notification-banner/spec/NotificationBanner.ts @@ -0,0 +1,76 @@ +import { createElement as h } from 'react'; +import { render, screen } from '@not-govuk/component-test-helpers'; +import NotificationBanner from '../src/NotificationBanner'; + +describe('NotificationBanner', () => { + const minimalProps = { + }; + + describe('when given minimal valid props', () => { + beforeEach(async () => { + render(h(NotificationBanner, minimalProps, 'My notification.')); + }); + + it('renders a region', async () => expect(screen.getByRole('region')).toBeInTheDocument()); + it('without the success class modifier', async () => expect(screen.getByRole('region')).not.toHaveClass('govuk-notification-banner--success')); + it('that is labelled with \'Important\'', async () => expect(screen.getByRole('region')).toHaveAccessibleName('Important')); + it('that contains the children', async () => expect(screen.getByRole('region')).toHaveTextContent('My notification.')); + }); + + describe('when given a type of success', () => { + const props = { + ...minimalProps, + type: 'success' + }; + + beforeEach(async () => { + render(h(NotificationBanner, props, 'My notification.')); + }); + + it('renders an alert', async () => expect(screen.getByRole('alert')).toBeInTheDocument()); + it('with the success class modifier', async () => expect(screen.getByRole('alert')).toHaveClass('govuk-notification-banner--success')); + it('that has focus', async () => expect(screen.getByRole('alert')).toHaveFocus()); + it('that is labelled with \'Success\'', async () => expect(screen.getByRole('alert')).toHaveAccessibleName('Success')); + it('that contains the children', async () => expect(screen.getByRole('alert')).toHaveTextContent('My notification.')); + }); + + describe('when given an id and title', () => { + const props = { + ...minimalProps, + title: 'Caution', + id: 'my-notification' + }; + + beforeEach(async () => { + render(h(NotificationBanner, props, 'My notification.')); + }); + + it('renders a region', async () => expect(screen.getByRole('region')).toBeInTheDocument()); + it('without the success class modifier', async () => expect(screen.getByRole('region')).not.toHaveClass('govuk-notification-banner--success')); + it('with the id provided', async () => expect(screen.getByRole('region')).toHaveAttribute('id', 'my-notification')); + it('that is labelled by the title provided', async () => expect(screen.getByRole('region')).toHaveAccessibleName('Caution')); + it('with a derived label id', async () => expect(screen.getByText('Caution')).toHaveAttribute('id', 'my-notification-title')); + it('that contains the children', async () => expect(screen.getByRole('region')).toHaveTextContent('My notification.')); + }); + + describe('when given all valid props', () => { + const props = { + ...minimalProps, + title: 'All done', + titleId: 'my-alert', + type: 'success', + disableAutoFocus: true + }; + + beforeEach(async () => { + render(h(NotificationBanner, props, 'My notification.')); + }); + + it('renders an alert', async () => expect(screen.getByRole('alert')).toBeInTheDocument()); + it('with the success class modifier', async () => expect(screen.getByRole('alert')).toHaveClass('govuk-notification-banner--success')); + it('that does NOT have focus', async () => expect(screen.getByRole('alert')).not.toHaveFocus()); + it('that is labelled by the title provided', async () => expect(screen.getByRole('alert')).toHaveAccessibleName('All done')); + it('with a derived label id', async () => expect(screen.getByText('All done')).toHaveAttribute('id', 'my-alert')); + it('that contains the children', async () => expect(screen.getByRole('alert')).toHaveTextContent('My notification.')); + }); +}); diff --git a/components/notification-banner/src/NotificationBanner.tsx b/components/notification-banner/src/NotificationBanner.tsx new file mode 100644 index 000000000..1507d07e6 --- /dev/null +++ b/components/notification-banner/src/NotificationBanner.tsx @@ -0,0 +1,94 @@ +import { FC, HTMLAttributes, ReactNode, createElement as h, useEffect, useRef } from 'react'; +import { StandardProps, classBuilder } from '@not-govuk/component-helpers'; + +import '../assets/NotificationBanner.scss'; + +export type NotificationBannerProps = StandardProps & HTMLAttributes & { + /** If you set type to success, or role to alert, JavaScript moves the keyboard focus to the notification banner when the page loads. To disable this behaviour, set disableAutoFocus to true. */ + disableAutoFocus?: boolean + /** The content that displays in the notification banner. */ + children?: ReactNode + /** The title that displays in the notification banner. The available default values are 'Important' and 'Success' depending on how 'type' has been set. */ + title?: ReactNode + /** The id for the banner title, and the aria-labelledby attribute in the banner. Defaults to govuk-notification-banner-title. */ + titleId?: string + /** The type of notification to render. You can use only the success or null values with this option. If you set type to success, the notification banner sets role to alert. JavaScript then moves the keyboard focus to the notification banner when the page loads. If you do not set type, the notification banner sets role to region. */ + type?: 'success' +}; + +export const NotificationBanner: FC = ({ + children, + classBlock, + classModifiers: _classModifiers = [], + className, + disableAutoFocus = false, + role: _role, + title: _title, + titleId: _titleId, + type: _type, + ...attrs +}) => { + const isSuccess = _type === 'success'; + const classModifiers = [ + isSuccess && 'success', + ...(Array.isArray(_classModifiers) ? _classModifiers : [_classModifiers]) + ]; + const classes = classBuilder('govuk-notification-banner', classBlock, classModifiers, className); + const role = _role || ( + isSuccess + ? 'alert' + : 'region' + ); + const title = _title || ( + isSuccess + ? 'Success' + : 'Important' + ); + const titleId = _titleId || ( + (attrs.id || 'govuk-notification-banner') + '-title' + ); + const autoFocus = role === 'alert' && !disableAutoFocus; + const ref = useRef(null); + + useEffect(() => { + if (autoFocus) { + // Make the element focussable with JavaScript + // See: https://github.com/alphagov/govuk-frontend/blob/e6351f64dc5e214e473d53f17e0948eb38a32608/src/govuk/components/notification-banner/notification-banner.mjs#L71 + if (!ref.current.getAttribute('tabindex')) { + ref.current.setAttribute('tabindex', '-1') + + ref.current.addEventListener('blur', function () { + ref.current.removeAttribute('tabindex') + }) + } + + ref.current.focus(); + } + }); + + return ( +
+
+ {typeof title !== 'string' ? title : ( +

{title}

+ )} +
+
+ {typeof children !== 'string' ? children : ( +

{children}

+ )} +
+
+ ); +}; + +NotificationBanner.displayName = 'NotificationBanner'; + +export default NotificationBanner; diff --git a/components/notification-banner/tsconfig.json b/components/notification-banner/tsconfig.json new file mode 120000 index 000000000..f23066030 --- /dev/null +++ b/components/notification-banner/tsconfig.json @@ -0,0 +1 @@ +../../lib/plop-pack/skel/component/tsconfig.json \ No newline at end of file diff --git a/components/summary-card/src/SummaryCard.tsx b/components/summary-card/src/SummaryCard.tsx index d322f54bf..a3d1c423b 100644 --- a/components/summary-card/src/SummaryCard.tsx +++ b/components/summary-card/src/SummaryCard.tsx @@ -1,10 +1,10 @@ -import { FC, ReactNode, createElement as h } from 'react'; +import { FC, HTMLAttributes, ReactNode, createElement as h } from 'react'; import { StandardProps, classBuilder } from '@not-govuk/component-helpers'; import { Anchor, AnchorList } from "@not-govuk/anchor-list"; import '../assets/SummaryCard.scss'; -export type SummaryCardProps = StandardProps & { +export type SummaryCardProps = StandardProps & HTMLAttributes & { /** Links to perform status related actions */ actions?: Anchor[] /** Contents */ diff --git a/components/summary-list/src/SummaryListContainer.tsx b/components/summary-list/src/SummaryListContainer.tsx index dcc35679a..213ebac9f 100644 --- a/components/summary-list/src/SummaryListContainer.tsx +++ b/components/summary-list/src/SummaryListContainer.tsx @@ -1,7 +1,7 @@ -import { FC, createElement as h } from 'react'; +import { FC, HTMLAttributes, createElement as h } from 'react'; import { StandardProps, classBuilder } from '@not-govuk/component-helpers'; -export type SummaryListContainerProps = StandardProps & { +export type SummaryListContainerProps = StandardProps & HTMLAttributes & { }; export const SummaryListContainer: FC = ({ diff --git a/components/summary-list/src/SummaryListItem.tsx b/components/summary-list/src/SummaryListItem.tsx index 54e3ba753..91509f4dd 100644 --- a/components/summary-list/src/SummaryListItem.tsx +++ b/components/summary-list/src/SummaryListItem.tsx @@ -1,11 +1,11 @@ -import { FC, ReactNode, createElement as h } from 'react'; +import { FC, HTMLAttributes, ReactNode, createElement as h } from 'react'; import { Anchor, AnchorList } from '@not-govuk/anchor-list'; import { A } from '@not-govuk/link'; import { StandardProps, classBuilder } from '@not-govuk/component-helpers'; export type Action = Anchor; -export type SummaryListItemProps = StandardProps & { +export type SummaryListItemProps = StandardProps & HTMLAttributes & { /** Name or 'key' of the item */ name: ReactNode | string /** Value of the item */ diff --git a/packages/components/package.json b/packages/components/package.json index 6d36c3b12..3c15cff22 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -56,6 +56,7 @@ "@not-govuk/label": "workspace:^0.7.2", "@not-govuk/link": "workspace:^0.7.2", "@not-govuk/navigation-menu": "workspace:^0.7.2", + "@not-govuk/notification-banner": "workspace:^0.7.2", "@not-govuk/page": "workspace:^0.7.2", "@not-govuk/pagination": "workspace:^0.7.2", "@not-govuk/panel": "workspace:^0.7.2", diff --git a/packages/components/src/components/index.ts b/packages/components/src/components/index.ts index 267ef37e8..a0d489fd8 100644 --- a/packages/components/src/components/index.ts +++ b/packages/components/src/components/index.ts @@ -19,6 +19,7 @@ export { default as Input } from '@not-govuk/input'; export { default as InsetText } from '@not-govuk/inset-text'; export { default as Label } from '@not-govuk/label'; export { default as NavigationMenu } from '@not-govuk/navigation-menu'; +export { default as NotificationBanner } from '@not-govuk/notification-banner'; export { default as Pagination } from '@not-govuk/pagination'; export { default as Panel } from '@not-govuk/panel'; export { default as PhaseBanner } from '@not-govuk/phase-banner'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3798edc4e..23e4f3376 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1060,6 +1060,33 @@ importers: ts-jest: 29.1.0_79f08d1891adcc432593f59ab088dd16 typescript: 4.9.5 + components/notification-banner: + specifiers: + '@mdx-js/react': 1.6.22 + '@not-govuk/component-helpers': workspace:^0.7.2 + '@not-govuk/component-test-helpers': workspace:^0.7.2 + '@not-govuk/sass-base': workspace:^0.7.2 + '@not-govuk/tag': workspace:^0.7.2 + '@types/react': 16.14.32 + govuk-frontend: 4.6.0 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 + ts-jest: 29.0.3 + typescript: 4.8.4 + dependencies: + '@not-govuk/component-helpers': link:../../lib/component-helpers + '@not-govuk/sass-base': link:../../lib-govuk/sass-base + govuk-frontend: 4.6.0 + devDependencies: + '@mdx-js/react': 1.6.22_react@16.14.0 + '@not-govuk/component-test-helpers': link:../../lib/component-test-helpers + '@not-govuk/tag': link:../tag + '@types/react': 16.14.32 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 + ts-jest: 29.0.3_c4bd34c05ca076d4606ff12f2ff2df81 + typescript: 4.8.4 + components/page: specifiers: '@mdx-js/react': 1.6.22 @@ -2018,6 +2045,7 @@ importers: '@not-govuk/label': workspace:^0.7.2 '@not-govuk/link': workspace:^0.7.2 '@not-govuk/navigation-menu': workspace:^0.7.2 + '@not-govuk/notification-banner': workspace:^0.7.2 '@not-govuk/page': workspace:^0.7.2 '@not-govuk/pagination': workspace:^0.7.2 '@not-govuk/panel': workspace:^0.7.2 @@ -2067,6 +2095,7 @@ importers: '@not-govuk/label': link:../../components/label '@not-govuk/link': link:../../components/link '@not-govuk/navigation-menu': link:../../components/navigation-menu + '@not-govuk/notification-banner': link:../../components/notification-banner '@not-govuk/page': link:../../components/page '@not-govuk/pagination': link:../../components/pagination '@not-govuk/panel': link:../../components/panel @@ -2267,6 +2296,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /@babel/generator/7.21.1: resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==} @@ -2351,6 +2381,7 @@ packages: browserslist: 4.21.5 lru-cache: 5.1.1 semver: 6.3.0 + dev: true /@babel/helper-create-class-features-plugin/7.21.0_@babel+core@7.21.0: resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==} @@ -4195,6 +4226,7 @@ packages: dependencies: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} @@ -4709,6 +4741,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/types/7.21.2: resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==} @@ -4771,13 +4804,11 @@ packages: uuid: 8.3.2 dev: true - /@cypress/xvfb/1.2.4_supports-color@8.1.1: + /@cypress/xvfb/1.2.4: resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} dependencies: - debug: 3.2.7_supports-color@8.1.1 + debug: 3.2.7 lodash.once: 4.1.1 - transitivePeerDependencies: - - supports-color dev: true /@discoveryjs/json-ext/0.5.7: @@ -5992,7 +6023,7 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_typescript@4.9.5+webpack@4.46.0 + fork-ts-checker-webpack-plugin: 4.1.6 glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 @@ -6017,7 +6048,6 @@ packages: webpack-hot-middleware: 2.25.3 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - - bluebird - eslint - supports-color - vue-template-compiler @@ -6084,6 +6114,7 @@ packages: - vue-template-compiler - webpack-cli - webpack-command + dev: true /@storybook/channel-postmessage/6.5.16: resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} @@ -6271,6 +6302,7 @@ packages: unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /@storybook/core-common/6.5.16_64d3f0ebede4b6e0bcbdf7ccd1e9a212: resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} @@ -6415,7 +6447,6 @@ packages: x-default-browser: 0.4.0 transitivePeerDependencies: - '@storybook/mdx2-csf' - - bluebird - bufferutil - encoding - eslint @@ -6452,7 +6483,6 @@ packages: webpack: 5.75.0_webpack-cli@5.0.2 transitivePeerDependencies: - '@storybook/mdx2-csf' - - bluebird - bufferutil - encoding - eslint @@ -6556,7 +6586,6 @@ packages: webpack-dev-middleware: 3.7.3_webpack@4.46.0 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - - bluebird - encoding - eslint - supports-color @@ -6619,6 +6648,7 @@ packages: - vue-template-compiler - webpack-cli - webpack-command + dev: true /@storybook/mdx1-csf/0.0.1_@babel+core@7.21.0: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} @@ -6807,7 +6837,6 @@ packages: - '@storybook/mdx2-csf' - '@swc/core' - '@types/webpack' - - bluebird - bufferutil - encoding - esbuild @@ -7301,6 +7330,7 @@ packages: /@types/html-minifier-terser/6.1.0: resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + dev: true /@types/http-cache-semantics/4.0.1: resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==} @@ -7702,6 +7732,7 @@ packages: dependencies: '@webassemblyjs/helper-numbers': 1.11.5 '@webassemblyjs/helper-wasm-bytecode': 1.11.5 + dev: true /@webassemblyjs/ast/1.9.0: resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==} @@ -7715,6 +7746,7 @@ packages: /@webassemblyjs/floating-point-hex-parser/1.11.5: resolution: {integrity: sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==} + dev: true /@webassemblyjs/floating-point-hex-parser/1.9.0: resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==} @@ -7724,6 +7756,7 @@ packages: /@webassemblyjs/helper-api-error/1.11.5: resolution: {integrity: sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==} + dev: true /@webassemblyjs/helper-api-error/1.9.0: resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==} @@ -7733,6 +7766,7 @@ packages: /@webassemblyjs/helper-buffer/1.11.5: resolution: {integrity: sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==} + dev: true /@webassemblyjs/helper-buffer/1.9.0: resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==} @@ -7763,12 +7797,14 @@ packages: '@webassemblyjs/floating-point-hex-parser': 1.11.5 '@webassemblyjs/helper-api-error': 1.11.5 '@xtuc/long': 4.2.2 + dev: true /@webassemblyjs/helper-wasm-bytecode/1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} /@webassemblyjs/helper-wasm-bytecode/1.11.5: resolution: {integrity: sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==} + dev: true /@webassemblyjs/helper-wasm-bytecode/1.9.0: resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==} @@ -7788,6 +7824,7 @@ packages: '@webassemblyjs/helper-buffer': 1.11.5 '@webassemblyjs/helper-wasm-bytecode': 1.11.5 '@webassemblyjs/wasm-gen': 1.11.5 + dev: true /@webassemblyjs/helper-wasm-section/1.9.0: resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==} @@ -7806,6 +7843,7 @@ packages: resolution: {integrity: sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==} dependencies: '@xtuc/ieee754': 1.2.0 + dev: true /@webassemblyjs/ieee754/1.9.0: resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==} @@ -7821,6 +7859,7 @@ packages: resolution: {integrity: sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==} dependencies: '@xtuc/long': 4.2.2 + dev: true /@webassemblyjs/leb128/1.9.0: resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==} @@ -7832,6 +7871,7 @@ packages: /@webassemblyjs/utf8/1.11.5: resolution: {integrity: sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==} + dev: true /@webassemblyjs/utf8/1.9.0: resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==} @@ -7859,6 +7899,7 @@ packages: '@webassemblyjs/wasm-opt': 1.11.5 '@webassemblyjs/wasm-parser': 1.11.5 '@webassemblyjs/wast-printer': 1.11.5 + dev: true /@webassemblyjs/wasm-edit/1.9.0: resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==} @@ -7889,6 +7930,7 @@ packages: '@webassemblyjs/ieee754': 1.11.5 '@webassemblyjs/leb128': 1.11.5 '@webassemblyjs/utf8': 1.11.5 + dev: true /@webassemblyjs/wasm-gen/1.9.0: resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==} @@ -7914,6 +7956,7 @@ packages: '@webassemblyjs/helper-buffer': 1.11.5 '@webassemblyjs/wasm-gen': 1.11.5 '@webassemblyjs/wasm-parser': 1.11.5 + dev: true /@webassemblyjs/wasm-opt/1.9.0: resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==} @@ -7942,6 +7985,7 @@ packages: '@webassemblyjs/ieee754': 1.11.5 '@webassemblyjs/leb128': 1.11.5 '@webassemblyjs/utf8': 1.11.5 + dev: true /@webassemblyjs/wasm-parser/1.9.0: resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==} @@ -7974,6 +8018,7 @@ packages: dependencies: '@webassemblyjs/ast': 1.11.5 '@xtuc/long': 4.2.2 + dev: true /@webassemblyjs/wast-printer/1.9.0: resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==} @@ -7991,6 +8036,7 @@ packages: dependencies: webpack: 5.80.0_webpack-cli@5.0.2 webpack-cli: 5.0.2_webpack@5.80.0 + dev: true /@webpack-cli/info/2.0.1_webpack-cli@5.0.2+webpack@5.80.0: resolution: {integrity: sha512-fE1UEWTwsAxRhrJNikE7v4EotYflkEhBL7EbajfkPlf6E37/2QshOy/D48Mw8G5XMFlQtS6YV42vtbG9zBpIQA==} @@ -8001,6 +8047,7 @@ packages: dependencies: webpack: 5.80.0_webpack-cli@5.0.2 webpack-cli: 5.0.2_webpack@5.80.0 + dev: true /@webpack-cli/serve/2.0.2_webpack-cli@5.0.2+webpack@5.80.0: resolution: {integrity: sha512-S9h3GmOmzUseyeFW3tYNnWS7gNUuwxZ3mmMq0JyW78Vx1SGKPSkt5bT4pB0rUnVfHjP0EL9gW2bOzmtiTfQt0A==} @@ -8015,6 +8062,7 @@ packages: dependencies: webpack: 5.80.0_webpack-cli@5.0.2 webpack-cli: 5.0.2_webpack@5.80.0 + dev: true /@wry/context/0.6.1: resolution: {integrity: sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==} @@ -8395,8 +8443,6 @@ packages: dependencies: micromatch: 3.1.10 normalize-path: 2.1.1 - transitivePeerDependencies: - - supports-color /anymatch/3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} @@ -8771,8 +8817,6 @@ packages: babel-template: 6.26.0 babel-traverse: 6.26.0 babel-types: 6.26.0 - transitivePeerDependencies: - - supports-color dev: true /babel-helper-get-function-arity/6.24.1: @@ -8827,6 +8871,7 @@ packages: make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /babel-loader/9.1.2_1cb32fafa0fc308b5d8e550bffb5b329: resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} @@ -8897,6 +8942,7 @@ packages: /babel-plugin-named-exports-order/0.0.2: resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} + dev: true /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.0: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} @@ -8998,8 +9044,6 @@ packages: babel-plugin-syntax-class-properties: 6.13.0 babel-runtime: 6.26.0 babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color dev: true /babel-preset-current-node-syntax/1.0.1_@babel+core@7.21.4: @@ -9048,8 +9092,6 @@ packages: babel-types: 6.26.0 babylon: 6.18.0 lodash: 4.17.21 - transitivePeerDependencies: - - supports-color dev: true /babel-traverse/6.26.0: @@ -9064,8 +9106,6 @@ packages: globals: 9.18.0 invariant: 2.2.4 lodash: 4.17.21 - transitivePeerDependencies: - - supports-color dev: true /babel-types/6.26.0: @@ -9202,8 +9242,6 @@ packages: raw-body: 2.5.1 type-is: 1.6.18 unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color /boolbase/1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} @@ -9252,8 +9290,6 @@ packages: snapdragon-node: 2.1.1 split-string: 3.1.0 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /braces/3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} @@ -9266,6 +9302,7 @@ packages: /browser-assert/1.2.1: resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} + dev: true /browserify-aes/1.2.0: resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} @@ -9444,7 +9481,7 @@ packages: mississippi: 3.0.0 mkdirp: 0.5.6 move-concurrently: 1.0.1 - promise-inflight: 1.0.1_bluebird@3.7.2 + promise-inflight: 1.0.1 rimraf: 2.7.1 ssri: 6.0.2 unique-filename: 1.1.1 @@ -9472,8 +9509,6 @@ packages: ssri: 8.0.1 tar: 6.1.13 unique-filename: 1.1.1 - transitivePeerDependencies: - - bluebird /cache-base/1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} @@ -9686,8 +9721,6 @@ packages: upath: 1.2.0 optionalDependencies: fsevents: 1.2.13 - transitivePeerDependencies: - - supports-color optional: true /chokidar/3.5.3: @@ -9771,6 +9804,7 @@ packages: engines: {node: '>= 10.0'} dependencies: source-map: 0.6.1 + dev: true /clean-stack/2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} @@ -9940,9 +9974,11 @@ packages: /colorette/1.4.0: resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + dev: true /colorette/2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + dev: true /combined-stream/1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} @@ -9956,6 +9992,7 @@ packages: /commander/10.0.1: resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} engines: {node: '>=14'} + dev: true /commander/2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} @@ -9981,6 +10018,7 @@ packages: /commander/8.3.0: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} + dev: true /commander/9.5.0: resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} @@ -10028,8 +10066,6 @@ packages: on-headers: 1.0.2 safe-buffer: 5.1.2 vary: 1.1.2 - transitivePeerDependencies: - - supports-color /concat-map/0.0.1: resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} @@ -10174,8 +10210,6 @@ packages: p-all: 2.1.0 p-filter: 2.1.0 p-map: 3.0.0 - transitivePeerDependencies: - - supports-color /crc-32/1.2.2: resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} @@ -10292,6 +10326,7 @@ packages: schema-utils: 3.1.1 semver: 7.3.8 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /css-loader/6.7.3_webpack@5.80.0: resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==} @@ -10389,7 +10424,7 @@ packages: requiresBuild: true dependencies: '@cypress/request': 2.88.11 - '@cypress/xvfb': 1.2.4_supports-color@8.1.1 + '@cypress/xvfb': 1.2.4 '@types/node': 14.18.36 '@types/sinonjs__fake-timers': 8.1.1 '@types/sizzle': 2.3.3 @@ -10460,35 +10495,13 @@ packages: /debug/2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.0.0 /debug/3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.3 - - /debug/3.2.7_supports-color@8.1.1: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.1.3 - supports-color: 8.1.1 - dev: true /debug/4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} @@ -10995,6 +11008,7 @@ packages: dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 + dev: true /enquirer/2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} @@ -11014,6 +11028,7 @@ packages: resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} engines: {node: '>=4'} hasBin: true + dev: true /errno/0.1.8: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} @@ -11090,6 +11105,7 @@ packages: /es-module-lexer/1.2.1: resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==} + dev: true /es-set-tostringtag/2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} @@ -11418,8 +11434,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /expand-tilde/2.0.2: resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} @@ -11484,8 +11498,6 @@ packages: type-is: 1.6.18 utils-merge: 1.0.1 vary: 1.1.2 - transitivePeerDependencies: - - supports-color /ext-list/2.2.2: resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} @@ -11544,8 +11556,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /extract-zip/2.0.1_supports-color@8.1.1: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} @@ -11586,8 +11596,6 @@ packages: is-glob: 4.0.3 merge2: 1.4.1 micromatch: 3.1.10 - transitivePeerDependencies: - - supports-color /fast-glob/3.2.12: resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} @@ -11626,6 +11634,7 @@ packages: /fastest-levenshtein/1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} + dev: true /fastq/1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} @@ -11757,8 +11766,6 @@ packages: parseurl: 1.3.3 statuses: 2.0.1 unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color /find-cache-dir/2.1.0: resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} @@ -11912,19 +11919,9 @@ packages: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} dev: true - /fork-ts-checker-webpack-plugin/4.1.6_typescript@4.9.5+webpack@4.46.0: + /fork-ts-checker-webpack-plugin/4.1.6: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: '>= 4' - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true dependencies: '@babel/code-frame': 7.18.6 chalk: 2.4.2 @@ -11932,11 +11929,7 @@ packages: minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.9.5 - webpack: 4.46.0_webpack-cli@5.0.2 worker-rpc: 0.1.1 - transitivePeerDependencies: - - supports-color /fork-ts-checker-webpack-plugin/6.5.2_typescript@4.9.5+webpack@4.46.0: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} @@ -11997,6 +11990,7 @@ packages: tapable: 1.1.3 typescript: 4.9.5 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /fork-ts-checker-webpack-plugin/8.0.0_typescript@4.9.5+webpack@5.80.0: resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} @@ -12445,8 +12439,6 @@ packages: ignore: 4.0.6 pify: 4.0.1 slash: 2.0.0 - transitivePeerDependencies: - - supports-color /gopd/1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} @@ -12524,6 +12516,7 @@ packages: /graphql/15.8.0: resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} engines: {node: '>= 10.x'} + dev: true /gzip-size/6.0.0: resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} @@ -12805,6 +12798,7 @@ packages: param-case: 3.0.4 relateurl: 0.2.7 terser: 5.16.5 + dev: true /html-minifier-terser/7.1.0: resolution: {integrity: sha512-BvPO2S7Ip0Q5qt+Y8j/27Vclj6uHC6av0TMoDn7/bJPhMWHI2UtR2e/zEgJn3/qYAmxumrGp9q4UHurL6mtW9Q==} @@ -12856,6 +12850,7 @@ packages: pretty-error: 4.0.0 tapable: 2.2.1 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /htmlparser2/6.1.0: resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} @@ -13041,6 +13036,7 @@ packages: dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 + dev: true /imurmurhash/0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} @@ -13126,6 +13122,7 @@ packages: /interpret/3.1.1: resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==} engines: {node: '>=10.13.0'} + dev: true /invariant/2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} @@ -13568,6 +13565,7 @@ packages: /isarray/0.0.1: resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + dev: true /isarray/1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} @@ -13928,8 +13926,6 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 - transitivePeerDependencies: - - supports-color dev: true /jest-haste-map/29.5.0: @@ -14963,6 +14959,7 @@ packages: engines: {node: '>=6'} dependencies: p-defer: 1.0.0 + dev: true /map-cache/0.2.2: resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} @@ -15035,6 +15032,7 @@ packages: dependencies: map-age-cleaner: 0.1.3 mimic-fn: 3.1.0 + dev: true /memfs/3.4.13: resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==} @@ -15123,8 +15121,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /micromatch/4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} @@ -15173,6 +15169,7 @@ packages: /mimic-fn/3.1.0: resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} engines: {node: '>=8'} + dev: true /mimic-response/1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} @@ -15360,8 +15357,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /native-promise-only/0.8.1: resolution: {integrity: sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg==} @@ -15857,6 +15852,7 @@ packages: /p-defer/1.0.0: resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} engines: {node: '>=4'} + dev: true /p-event/4.2.0: resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} @@ -16051,6 +16047,7 @@ packages: /path-browserify/1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + dev: true /path-case/3.0.4: resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} @@ -16122,6 +16119,7 @@ packages: resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} dependencies: isarray: 0.0.1 + dev: true /path-type/1.1.0: resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} @@ -16447,6 +16445,7 @@ packages: dependencies: lodash: 4.17.21 renderkid: 3.0.0 + dev: true /pretty-format/27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} @@ -16522,21 +16521,6 @@ packages: /promise-inflight/1.0.1: resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - - /promise-inflight/1.0.1_bluebird@3.7.2: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - dependencies: - bluebird: 3.7.2 /promise-queue/2.2.5: resolution: {integrity: sha512-p/iXrPSVfnqPft24ZdNNLECw/UrtLTpT3jpAAMzl/o5/rDsGCPo3/CQS2611flL6LkoEJ3oQZw7C8Q80ZISXRQ==} @@ -16787,6 +16771,7 @@ packages: prop-types: 15.8.1 react: 16.14.0 scheduler: 0.19.1 + dev: true /react-element-to-jsx-string/14.3.4_react-dom@16.14.0+react@16.14.0: resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} @@ -16860,6 +16845,7 @@ packages: react-router: 5.3.4_react@16.14.0 tiny-invariant: 1.3.1 tiny-warning: 1.0.3 + dev: true /react-router-hash-link/2.4.3_4b858a23c9b508019e053f75d81978cc: resolution: {integrity: sha512-NU7GWc265m92xh/aYD79Vr1W+zAIXDWp3L2YZOYP4rCqPnJ6LI6vh3+rKgkidtYijozHclaEQTAHaAaMWPVI4A==} @@ -16887,6 +16873,7 @@ packages: react-is: 16.13.1 tiny-invariant: 1.3.1 tiny-warning: 1.0.3 + dev: true /react-sizeme/3.0.2: resolution: {integrity: sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==} @@ -16917,6 +16904,7 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 prop-types: 15.8.1 + dev: true /read-pkg-up/1.0.1: resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} @@ -17001,8 +16989,6 @@ packages: graceful-fs: 4.2.10 micromatch: 3.1.10 readable-stream: 2.3.8 - transitivePeerDependencies: - - supports-color optional: true /readdirp/3.6.0: @@ -17194,6 +17180,7 @@ packages: htmlparser2: 6.1.0 lodash: 4.17.21 strip-ansi: 6.0.1 + dev: true /repeat-element/1.1.4: resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} @@ -17236,6 +17223,7 @@ packages: engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 + dev: true /resolve-dir/1.0.1: resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} @@ -17480,8 +17468,6 @@ packages: micromatch: 3.1.10 minimist: 1.2.8 walker: 1.0.8 - transitivePeerDependencies: - - supports-color dev: true /sass-loader/13.2.0_sass@1.62.1+webpack@5.80.0: @@ -17535,6 +17521,7 @@ packages: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 + dev: true /schema-utils/1.0.0: resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} @@ -17575,6 +17562,7 @@ packages: '@types/json-schema': 7.0.11 ajv: 6.12.6 ajv-keywords: 3.5.2_ajv@6.12.6 + dev: true /schema-utils/4.0.0: resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} @@ -17628,8 +17616,6 @@ packages: on-finished: 2.4.1 range-parser: 1.2.1 statuses: 2.0.1 - transitivePeerDependencies: - - supports-color /sentence-case/3.0.4: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} @@ -17671,8 +17657,6 @@ packages: escape-html: 1.0.3 parseurl: 1.3.3 send: 0.18.0 - transitivePeerDependencies: - - supports-color /serverless-http/3.1.1: resolution: {integrity: sha512-apCJb/xsB/E2IVT23bG9lBGoPv7kTgwhi6b/Reshc181vJv7Df4hCOj0WNQQRpPoKMEZAuGBEzhdIHUaL3pCLQ==} @@ -17913,8 +17897,6 @@ packages: source-map: 0.5.7 source-map-resolve: 0.5.3 use: 3.1.1 - transitivePeerDependencies: - - supports-color /snyk-config/5.1.0: resolution: {integrity: sha512-wqVMxUGqjjHX+MJrz0WHa/pJTDWU17aRv6cnI/6i7cq93J3TkkJZ8sjgvwCgP8cWX5wTHIlRuMV+IAd59K4X/g==} @@ -18419,6 +18401,7 @@ packages: loader-utils: 2.0.4 schema-utils: 3.1.1 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /style-to-object/0.3.0: resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} @@ -18588,8 +18571,6 @@ packages: terser: 5.16.5 webpack: 4.46.0_webpack-cli@5.0.2 webpack-sources: 1.4.3 - transitivePeerDependencies: - - bluebird /terser-webpack-plugin/5.3.6_webpack@5.75.0: resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} @@ -18636,6 +18617,7 @@ packages: serialize-javascript: 6.0.1 terser: 5.16.5 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /terser-webpack-plugin/5.3.7_webpack@5.80.0: resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==} @@ -18659,6 +18641,7 @@ packages: serialize-javascript: 6.0.1 terser: 5.16.5 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /terser/4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} @@ -19060,6 +19043,7 @@ packages: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} engines: {node: '>=4.2.0'} hasBin: true + dev: true /uglify-js/3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} @@ -19465,8 +19449,6 @@ packages: requiresBuild: true dependencies: chokidar: 2.1.8 - transitivePeerDependencies: - - supports-color optional: true /watchpack/1.7.5: @@ -19477,8 +19459,6 @@ packages: optionalDependencies: chokidar: 3.5.3 watchpack-chokidar2: 2.0.1 - transitivePeerDependencies: - - supports-color /watchpack/2.4.0: resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} @@ -19560,6 +19540,7 @@ packages: rechoir: 0.8.0 webpack: 5.80.0_webpack-cli@5.0.2 webpack-merge: 5.8.0 + dev: true /webpack-dev-middleware/3.7.3_webpack@4.46.0: resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} @@ -19587,6 +19568,7 @@ packages: range-parser: 1.2.1 schema-utils: 3.1.1 webpack: 5.80.0_webpack-cli@5.0.2 + dev: true /webpack-dev-middleware/6.0.2_webpack@5.80.0: resolution: {integrity: sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==} @@ -19644,6 +19626,7 @@ packages: dependencies: clone-deep: 4.0.1 wildcard: 2.0.0 + dev: true /webpack-node-externals/3.0.0: resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} @@ -19672,11 +19655,10 @@ packages: resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} dependencies: debug: 3.2.7 - transitivePeerDependencies: - - supports-color /webpack-virtual-modules/0.4.6: resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} + dev: true /webpack/4.46.0_webpack-cli@5.0.2: resolution: {integrity: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==} @@ -19715,8 +19697,6 @@ packages: watchpack: 1.7.5 webpack-cli: 5.0.2_webpack@5.80.0 webpack-sources: 1.4.3 - transitivePeerDependencies: - - supports-color /webpack/5.75.0_webpack-cli@5.0.2: resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} @@ -19797,6 +19777,7 @@ packages: - '@swc/core' - esbuild - uglify-js + dev: true /whatwg-encoding/2.0.0: resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} @@ -19879,6 +19860,7 @@ packages: /wildcard/2.0.0: resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==} + dev: true /word-wrap/1.2.3: resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}